7e204cf389
Supports four different event types all bundled under the "note" event type: - comments on a commit - comments on an issue - comments on a merge request - comments on a code snippet
72 lines
1.8 KiB
Ruby
72 lines
1.8 KiB
Ruby
# == Schema Information
|
|
#
|
|
# Table name: services
|
|
#
|
|
# 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
|
|
#
|
|
|
|
class PivotaltrackerService < Service
|
|
include HTTParty
|
|
|
|
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
|
|
|
|
def execute(data)
|
|
return unless supported_events.include?(data[:object_kind])
|
|
|
|
url = 'https://www.pivotaltracker.com/services/v5/source_commits'
|
|
data[:commits].each do |commit|
|
|
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
|