summaryrefslogtreecommitdiff
path: root/app/models/incident_management/timeline_event_tag.rb
blob: 97b896d369d59bad2156535370daf567b5509127 (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 IncidentManagement
  class TimelineEventTag < ApplicationRecord
    self.table_name = 'incident_management_timeline_event_tags'

    PREDEFINED_TAGS = [
      'Start time',
      'End time',
      'Impact detected',
      'Response initiated',
      'Impact mitigated',
      'Cause identified'
    ].freeze

    belongs_to :project, inverse_of: :incident_management_timeline_event_tags

    has_many :timeline_event_tag_links,
      class_name: 'IncidentManagement::TimelineEventTagLink'

    has_many :timeline_events,
      class_name: 'IncidentManagement::TimelineEvent',
      through: :timeline_event_tag_links

    validates :name, presence: true, format: { with: /\A[^,]+\z/ }
    validates :name, uniqueness: { scope: :project_id, case_sensitive: false }
    validates :name, length: { maximum: 255 }

    scope :by_names, -> (tag_names) { where('lower(name) in (?)', tag_names.map(&:downcase)) }

    def self.pluck_names
      pluck(:name)
    end
  end
end