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

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

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

    field :token,
      type: :password,
      description: -> { s_('The authentication token.') },
      non_empty_password_title: -> { s_('ProjectService|Enter new token') },
      non_empty_password_help: -> { s_('ProjectService|Leave blank to use your current token.') },
      placeholder: '',
      required: true

    field :subdomain,
      description: -> { s_('The subdomain setting.') },
      exposes_secrets: true,
      placeholder: ''

    def self.title
      'Assembla'
    end

    def self.description
      _('Manage projects.')
    end

    def self.to_param
      'assembla'
    end

    def self.supported_events
      %w[push]
    end

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

      url = "https://atlas.assembla.com/spaces/#{subdomain}/github_tool?secret_key=#{token}"
      body = { payload: data }

      Gitlab::HTTP.post(url, body: Gitlab::Json.dump(body), headers: { 'Content-Type' => 'application/json' })
    end
  end
end