BigW Consortium Gitlab

issue.rb 2.61 KB
Newer Older
1 2 3 4
# == Schema Information
#
# Table name: issues
#
Stan Hu committed
5 6 7 8 9 10 11 12 13 14 15 16 17 18
#  id            :integer          not null, primary key
#  title         :string(255)
#  assignee_id   :integer
#  author_id     :integer
#  project_id    :integer
#  created_at    :datetime
#  updated_at    :datetime
#  position      :integer          default(0)
#  branch_name   :string(255)
#  description   :text
#  milestone_id  :integer
#  state         :string(255)
#  iid           :integer
#  updated_by_id :integer
19 20
#

21 22 23
require 'carrierwave/orm/activerecord'
require 'file_size_validator'

gitlabhq committed
24
class Issue < ActiveRecord::Base
25
  include InternalId
26 27
  include Issuable
  include Referable
28
  include Sortable
29
  include Taskable
30

31 32
  ActsAsTaggableOn.strict_case_match = true

33 34 35 36
  belongs_to :project
  validates :project, presence: true

  scope :of_group, ->(group) { where(project_id: group.project_ids) }
Andrey Kumanyaev committed
37
  scope :cared, ->(user) { where(assignee_id: user) }
Dmitriy Zaporozhets committed
38
  scope :open_for, ->(user) { opened.assigned_to(user) }
39

Andrew8xx8 committed
40
  state_machine :state, initial: :opened do
Andrew8xx8 committed
41 42 43 44 45
    event :close do
      transition [:reopened, :opened] => :closed
    end

    event :reopen do
Andrew8xx8 committed
46
      transition closed: :reopened
Andrew8xx8 committed
47 48 49 50 51 52
    end

    state :opened
    state :reopened
    state :closed
  end
53

54 55 56 57
  def hook_attrs
    attributes
  end

58 59 60 61
  def self.reference_prefix
    '#'
  end

62 63 64 65 66
  # Pattern used to extract `#123` issue references from text
  #
  # This pattern supports cross-project references.
  def self.reference_pattern
    %r{
67
      (#{Project.reference_pattern})?
68 69
      #{Regexp.escape(reference_prefix)}(?<issue>\d+)
    }x
Kirill Zaitsev committed
70 71
  end

72 73 74 75 76 77 78 79 80 81
  def to_reference(from_project = nil)
    reference = "#{self.class.reference_prefix}#{iid}"

    if cross_project_reference?(from_project)
      reference = project.to_reference + reference
    end

    reference
  end

82 83 84 85 86 87 88 89 90
  # Reset issue events cache
  #
  # Since we do cache @event we need to reset cache in special cases:
  # * when an issue is updated
  # Events cache stored like  events/23-20130109142513.
  # The cache key includes updated_at timestamp.
  # Thus it will automatically generate a new fragment
  # when the event is updated because the key changes.
  def reset_events_cache
91
    Event.reset_event_cache_for(self)
92
  end
93 94 95 96 97

  # To allow polymorphism with MergeRequest.
  def source_project
    project
  end
98 99 100

  # From all notes on this issue, we'll select the system notes about linked
  # merge requests. Of those, the MRs closing `self` are returned.
101 102 103
  def closed_by_merge_requests(current_user = nil)
    return [] unless open?

104
    notes.system.flat_map do |note|
105 106
      note.all_references(current_user).merge_requests
    end.uniq.select { |mr| mr.open? && mr.closes_issue?(self) }
107
  end
gitlabhq committed
108
end