File: issue_message.rb

package info (click to toggle)
gitlab 17.6.5-19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 629,368 kB
  • sloc: ruby: 1,915,304; javascript: 557,307; sql: 60,639; xml: 6,509; sh: 4,567; makefile: 1,239; python: 406
file content (84 lines) | stat: -rw-r--r-- 2,027 bytes parent folder | download
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# frozen_string_literal: true

module Integrations
  module ChatMessage
    class IssueMessage < BaseMessage
      attr_reader :title
      attr_reader :issue_iid
      attr_reader :issue_url
      attr_reader :action
      attr_reader :state
      attr_reader :description
      attr_reader :object_kind

      def initialize(params)
        super

        obj_attr = params[:object_attributes]
        obj_attr = HashWithIndifferentAccess.new(obj_attr)
        @title = obj_attr[:title]
        @issue_iid = obj_attr[:iid]
        @issue_url = obj_attr[:url]
        @action = obj_attr[:action]
        @state = obj_attr[:state]
        @description = obj_attr[:description] || ''
        @object_kind = params[:object_kind]
      end

      def attachments
        return [] unless opened_issue?
        return SlackMarkdownSanitizer.sanitize_slack_link(description) if markdown

        description_message
      end

      def activity
        {
          title: "#{issue_type} #{state} by #{strip_markup(user_combined_name)}",
          subtitle: "in #{project_link}",
          text: issue_link,
          image: user_avatar
        }
      end

      def attachment_color
        '#C95823'
      end

      private

      def message
        "[#{project_link}] #{issue_type} #{issue_link} #{state} by #{strip_markup(user_combined_name)}"
      end

      def opened_issue?
        action == 'open'
      end

      def description_message
        [{
          title: issue_title,
          title_link: issue_url,
          text: format(SlackMarkdownSanitizer.sanitize_slack_link(description)),
          color: attachment_color
        }]
      end

      def project_link
        link(project_name, project_url)
      end

      def issue_link
        link(issue_title, issue_url)
      end

      def issue_title
        "#{Issue.reference_prefix}#{issue_iid} #{strip_markup(title)}"
      end

      def issue_type
        @issue_type ||= object_kind == 'incident' ? 'Incident' : 'Issue'
      end
    end
  end
end