debian-mirror-gitlab/app/models/integrations/assembla.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
1,016 B
Ruby
Raw Normal View History

2021-06-08 01:23:25 +05:30
# frozen_string_literal: true
module Integrations
class Assembla < Integration
validates :token, presence: true, if: :activated?
2022-08-13 15:12:31 +05:30
field :token,
type: 'password',
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,
2023-01-13 00:05:48 +05:30
exposes_secrets: true,
2022-08-13 15:12:31 +05:30
placeholder: ''
2021-06-08 01:23:25 +05:30
def title
'Assembla'
end
def 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}"
2023-01-13 00:05:48 +05:30
body = { payload: data }
Gitlab::HTTP.post(url, body: Gitlab::Json.dump(body), headers: { 'Content-Type' => 'application/json' })
2021-06-08 01:23:25 +05:30
end
end
end