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

60 lines
1.1 KiB
Ruby
Raw Normal View History

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)
# 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
# template :boolean default(FALSE)
2014-03-18 13:27:03 -04:00
#
class SlackService < Service
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
[
{ type: 'text', name: 'webhook', placeholder: 'https://hooks.slack.com/services/...' }
2014-03-18 13:27:03 -04:00
]
end
def execute(push_data)
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
))
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