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

57 lines
1.5 KiB
Ruby
Raw Normal View History

2013-11-21 12:18:02 +00:00
# == Schema Information
#
# Table name: services
#
2015-03-04 22:14:00 +00:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# project_id :integer
# created_at :datetime
# updated_at :datetime
# active :boolean default(FALSE), not null
# properties :text
# template :boolean default(FALSE)
# push_events :boolean default(TRUE)
# issues_events :boolean default(TRUE)
# merge_requests_events :boolean default(TRUE)
# tag_push_events :boolean default(TRUE)
# note_events :boolean default(TRUE), not null
2013-11-21 12:18:02 +00:00
#
class AssemblaService < Service
include HTTParty
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 to_param
'assembla'
end
def fields
[
2014-01-24 07:42:24 +00:00
{ type: 'text', name: 'token', placeholder: '' },
{ type: 'text', name: 'subdomain', placeholder: '' }
2013-11-21 12:18:02 +00:00
]
end
def 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}"
AssemblaService.post(url, body: { payload: data }.to_json, headers: { 'Content-Type' => 'application/json' })
2013-11-21 12:18:02 +00:00
end
end