BigW Consortium Gitlab

external_issue.rb 807 Bytes
Newer Older
1
class ExternalIssue
2 3
  include Referable

4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
  def initialize(issue_identifier, project)
    @issue_identifier, @project = issue_identifier, project
  end

  def to_s
    @issue_identifier.to_s
  end

  def id
    @issue_identifier.to_s
  end

  def iid
    @issue_identifier.to_s
  end

20 21 22 23
  def title
    "External Issue #{self}"
  end

24 25 26 27 28 29 30
  def ==(other)
    other.is_a?(self.class) && (to_s == other.to_s)
  end

  def project
    @project
  end
31

32 33 34 35 36 37 38 39 40
  def project_id
    @project.id
  end

  # Pattern used to extract `JIRA-123` issue references from text
  def self.reference_pattern
    @reference_pattern ||= %r{(?<issue>\b([A-Z][A-Z0-9_]+-)\d+)}
  end

41 42 43
  def to_reference(_from_project = nil)
    id
  end
44 45

  def reference_link_text(from_project = nil)
46 47 48
    return "##{id}" if /^\d+$/.match(id)

    id
49
  end
50
end