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

flowdock.rb « integrations « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 52efb29f2c13e3076345bb37630a00c39a93f58b (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
# frozen_string_literal: true

module Integrations
  class Flowdock < Integration
    validates :token, presence: true, if: :activated?

    field :token,
      type: 'password',
      help: -> { s_('FlowdockService|Enter your Flowdock token.') },
      non_empty_password_title: -> { s_('ProjectService|Enter new token') },
      non_empty_password_help: -> { s_('ProjectService|Leave blank to use your current token.') },
      placeholder: '1b609b52537...',
      required: true

    def title
      'Flowdock'
    end

    def description
      s_('FlowdockService|Send event notifications from GitLab to Flowdock flows.')
    end

    def help
      docs_link = ActionController::Base.helpers.link_to _('Learn more.'), Rails.application.routes.url_helpers.help_page_url('api/services', anchor: 'flowdock'), target: '_blank', rel: 'noopener noreferrer'
      s_('FlowdockService|Send event notifications from GitLab to Flowdock flows. %{docs_link}').html_safe % { docs_link: docs_link.html_safe }
    end

    def self.to_param
      'flowdock'
    end

    def self.supported_events
      %w(push)
    end

    def execute(data)
      return unless supported_events.include?(data[:object_kind])

      ::Flowdock::Git.post(
        data[:ref],
        data[:before],
        data[:after],
        token: token,
        repo: project.repository,
        repo_url: "#{Gitlab.config.gitlab.url}/#{project.full_path}",
        commit_url: "#{Gitlab.config.gitlab.url}/#{project.full_path}/-/commit/%s",
        diff_url: "#{Gitlab.config.gitlab.url}/#{project.full_path}/compare/%s...%s"
      )
    end
  end
end