gitlab-org--gitlab-foss/app/models/project_services/assembla_service.rb

37 lines
820 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2013-11-21 12:18:02 +00:00
class AssemblaService < Service
2014-09-08 00:54:18 +00:00
prop_accessor :token, :subdomain
2013-11-21 12:18:02 +00:00
validates :token, presence: true, if: :activated?
def title
'Assembla'
end
def description
'Project Management Software (Source Commits Endpoint)'
end
def self.to_param
2013-11-21 12:18:02 +00:00
'assembla'
end
def fields
[
{ type: 'text', name: 'token', placeholder: '', required: true },
2014-01-24 07:42:24 +00:00
{ type: 'text', name: 'subdomain', placeholder: '' }
2013-11-21 12:18:02 +00:00
]
end
def self.supported_events
%w(push)
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
2014-01-24 07:42:24 +00:00
url = "https://atlas.assembla.com/spaces/#{subdomain}/github_tool?secret_key=#{token}"
Gitlab::HTTP.post(url, body: { payload: data }.to_json, headers: { 'Content-Type' => 'application/json' })
2013-11-21 12:18:02 +00:00
end
end