2014-03-18 13:27:03 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: services
|
|
|
|
#
|
2014-10-09 11:22:20 -04:00
|
|
|
# id :integer not null, primary key
|
|
|
|
# type :string(255)
|
|
|
|
# title :string(255)
|
2015-02-11 21:08:53 -05:00
|
|
|
# project_id :integer
|
2014-10-09 11:22:20 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# active :boolean default(FALSE), not null
|
|
|
|
# properties :text
|
2015-02-11 21:08:53 -05:00
|
|
|
# template :boolean default(FALSE)
|
2014-03-18 13:27:03 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
class SlackService < Service
|
2014-10-03 10:24:11 -04:00
|
|
|
prop_accessor :webhook
|
|
|
|
validates :webhook, presence: true, if: :activated?
|
2014-03-18 13:27:03 -04:00
|
|
|
|
|
|
|
def title
|
|
|
|
'Slack'
|
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
|
|
|
'A team communication tool for the 21st century'
|
|
|
|
end
|
|
|
|
|
|
|
|
def to_param
|
|
|
|
'slack'
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
2014-10-23 14:47:28 -04:00
|
|
|
{ type: 'text', name: 'webhook', placeholder: 'https://hooks.slack.com/services/...' }
|
2014-03-18 13:27:03 -04:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def execute(push_data)
|
2014-10-23 14:47:28 -04:00
|
|
|
return unless webhook.present?
|
|
|
|
|
2014-03-18 13:27:03 -04:00
|
|
|
message = SlackMessage.new(push_data.merge(
|
|
|
|
project_url: project_url,
|
|
|
|
project_name: project_name
|
|
|
|
))
|
|
|
|
|
2014-10-23 14:47:28 -04:00
|
|
|
notifier = Slack::Notifier.new(webhook)
|
|
|
|
notifier.ping(message.pretext, attachments: message.attachments)
|
2014-03-18 13:27:03 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def project_name
|
|
|
|
project.name_with_namespace.gsub(/\s/, '')
|
|
|
|
end
|
|
|
|
|
|
|
|
def project_url
|
|
|
|
project.web_url
|
|
|
|
end
|
|
|
|
end
|