Welcome to mirror list, hosted at ThFree Co, Russian Federation.

work_item_resource_event.rb « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ddf39787f63b88c4e66be0cc38faf43a51ed143f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# frozen_string_literal: true

module WorkItemResourceEvent
  extend ActiveSupport::Concern

  included do
    belongs_to :work_item, foreign_key: 'issue_id'

    scope :with_work_item, -> { preload(:work_item) }

    # These events are created also on non work items, e.g. MRs, Epic however system notes subscription
    # is only implemented on work items, so we do check if this event is linked to an work item. This can be
    # expanded to other issuables later on.
    after_commit :trigger_note_subscription_create, on: :create, if: -> { work_item.present? }
  end

  # System notes are not updated or deleted, so firing just the noteCreated event.
  def trigger_note_subscription_create(events: self)
    GraphqlTriggers.work_item_note_created(work_item.to_gid, events)
  end

  def work_item_synthetic_system_note(events: nil)
    # System notes for label resource events are handled in batches, so that we have single system note for multiple
    # label changes.
    if is_a?(ResourceLabelEvent) && events.present?
      return synthetic_note_class.from_events(events, resource: work_item, resource_parent: work_item.project)
    end

    synthetic_note_class.from_event(self, resource: work_item, resource_parent: work_item.project)
  end

  def synthetic_note_class
    raise NoMethodError, 'must implement `synthetic_note_class` method'
  end
end