summaryrefslogtreecommitdiff
path: root/lib/gitlab/slash_commands/presenters/base.rb
blob: b8affb423726b56fb3097d8c8ee1a8ea0c3fed3a (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
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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
# frozen_string_literal: true

module Gitlab
  module SlashCommands
    module Presenters
      class Base
        include Gitlab::Routing

        def initialize(resource = nil)
          @resource = resource
        end

        def display_errors
          message = header_with_list("The action was not successful, because:", @resource.errors.full_messages)

          ephemeral_response(text: message)
        end

        private

        attr_reader :resource

        def header_with_list(header, items)
          message = [header]

          items.each do |item|
            message << "- #{item}"
          end

          message.join("\n")
        end

        def ephemeral_response(message)
          response = {
            response_type: :ephemeral,
            status: 200
          }.merge(message)

          format_response(response)
        end

        def in_channel_response(message)
          response = {
            response_type: :in_channel,
            status: 200
          }.merge(message)

          format_response(response)
        end

        def format_response(response)
          response[:text] = format(response[:text]) if response.key?(:text)

          if response.key?(:attachments)
            response[:attachments].each do |attachment|
              attachment[:pretext] = format(attachment[:pretext]) if attachment[:pretext]
              attachment[:text] = format(attachment[:text]) if attachment[:text]
            end
          end

          response
        end

        # Convert Markdown to slacks format
        def format(string)
          Slack::Messenger::Util::LinkFormatter.format(string)
        end

        def resource_url
          url_for(
            [
              resource.project,
              resource
            ]
          )
        end

        def project_link
          "[#{project.full_name}](#{project.web_url})"
        end

        def author_profile_link
          "[#{author.to_reference}](#{url_for(author)})"
        end

        def response_message(custom_pretext: pretext)
          {
            attachments: [
              {
                title:        "#{issue.title} ยท #{issue.to_reference}",
                title_link:   resource_url,
                author_name:  author.name,
                author_icon:  author.avatar_url(only_path: false),
                fallback:     fallback_message,
                pretext:      custom_pretext,
                text:         text,
                color:        color(resource),
                fields:       fields,
                mrkdwn_in:    fields_with_markdown
              }
            ]
          }
        end

        def pretext
          ''
        end

        def text
          ''
        end

        def fields_with_markdown
          %i(title pretext fields)
        end
      end
    end
  end
end