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

notifier.rb « microsoft_teams « lib - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 299e3eeb953906fcfa3285f0d2afc9fab50cff30 (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
# frozen_string_literal: true

module MicrosoftTeams
  class Notifier
    def initialize(webhook)
      @webhook = webhook
      @header = { 'Content-type' => 'application/json' }
    end

    def ping(options = {})
      result = false

      begin
        response = Gitlab::HTTP.post(
          @webhook.to_str,
          headers: @header,
          body: body(**options)
        )

        result = true if response
      rescue Gitlab::HTTP::Error, StandardError => error
        Gitlab::AppLogger.info("#{self.class.name}: Error while connecting to #{@webhook}: #{error.message}")
      end

      result
    end

    private

    def body(title: nil, summary: nil, attachments: nil, activity:)
      result = { 'sections' => [] }

      result['title'] = title
      result['summary'] = summary
      result['sections'] << ::MicrosoftTeams::Activity.new(**activity).prepare

      unless attachments.blank?
        result['sections'] << { text: attachments }
      end

      result.to_json
    end
  end
end