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

69 lines
1.6 KiB
Ruby
Raw Normal View History

# == Schema Information
#
# Table name: services
#
2014-10-09 15:22:20 +00:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# project_id :integer
2014-10-09 15:22:20 +00:00
# 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)
#
class PivotaltrackerService < Service
include HTTParty
2014-09-08 00:54:18 +00:00
prop_accessor :token
validates :token, presence: true, if: :activated?
def title
'PivotalTracker'
end
def description
'Project Management Software (Source Commits Endpoint)'
end
def to_param
'pivotaltracker'
end
def fields
[
{ type: 'text', name: 'token', placeholder: '' }
]
end
2015-02-20 13:49:26 +00:00
def execute(data)
object_kind = data[:object_kind]
return unless object_kind == "push"
url = 'https://www.pivotaltracker.com/services/v5/source_commits'
2015-02-20 13:49:26 +00:00
data[:commits].each do |commit|
2013-09-25 14:54:34 +00:00
message = {
'source_commit' => {
'commit_id' => commit[:id],
'author' => commit[:author][:name],
'url' => commit[:url],
'message' => commit[:message]
}
}
PivotaltrackerService.post(
url,
body: message.to_json,
headers: {
'Content-Type' => 'application/json',
'X-TrackerToken' => token
}
)
end
end
end