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

53 lines
1.0 KiB
Ruby
Raw Normal View History

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
def supported_events
%w(push)
end
2015-02-20 13:49:26 +00:00
def execute(data)
return unless supported_events.include?(data[:object_kind])
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