debian-mirror-gitlab/app/models/project_services/assembla_service.rb

37 lines
820 B
Ruby
Raw Normal View History

2018-11-20 20:47:30 +05:30
# frozen_string_literal: true
2014-09-02 18:07:02 +05:30
class AssemblaService < Service
2015-04-26 12:48:37 +05:30
prop_accessor :token, :subdomain
2014-09-02 18:07:02 +05:30
validates :token, presence: true, if: :activated?
def title
'Assembla'
end
def description
'Project Management Software (Source Commits Endpoint)'
end
2017-08-17 22:00:37 +05:30
def self.to_param
2014-09-02 18:07:02 +05:30
'assembla'
end
def fields
[
2017-09-10 17:25:29 +05:30
{ type: 'text', name: 'token', placeholder: '', required: true },
2014-09-02 18:07:02 +05:30
{ type: 'text', name: 'subdomain', placeholder: '' }
]
end
2017-08-17 22:00:37 +05:30
def self.supported_events
2015-04-26 12:48:37 +05:30
%w(push)
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
2014-09-02 18:07:02 +05:30
url = "https://atlas.assembla.com/spaces/#{subdomain}/github_tool?secret_key=#{token}"
2018-03-26 14:24:53 +05:30
Gitlab::HTTP.post(url, body: { payload: data }.to_json, headers: { 'Content-Type' => 'application/json' })
2014-09-02 18:07:02 +05:30
end
end