debian-mirror-gitlab/app/models/project_services/slack_service.rb

177 lines
4.4 KiB
Ruby
Raw Normal View History

2014-09-02 18:07:02 +05:30
class SlackService < Service
2015-04-26 12:48:37 +05:30
prop_accessor :webhook, :username, :channel
2016-09-29 09:46:39 +05:30
boolean_accessor :notify_only_broken_builds, :notify_only_broken_pipelines
2016-06-02 11:05:42 +05:30
validates :webhook, presence: true, url: true, if: :activated?
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
def initialize_properties
2016-08-24 12:49:21 +05:30
# Custom serialized properties initialization
self.supported_events.each { |event| self.class.prop_accessor(event_channel_name(event)) }
2015-12-23 02:04:40 +05:30
if properties.nil?
self.properties = {}
self.notify_only_broken_builds = true
2016-09-29 09:46:39 +05:30
self.notify_only_broken_pipelines = true
2015-12-23 02:04:40 +05:30
end
end
2014-09-02 18:07:02 +05:30
def title
'Slack'
end
def description
'A team communication tool for the 21st century'
end
def to_param
'slack'
end
2015-09-25 12:07:36 +05:30
def help
'This service sends notifications to your Slack channel.<br/>
To setup this Service you need to create a new <b>"Incoming webhook"</b> in your Slack integration panel,
and enter the Webhook URL below.'
end
2014-09-02 18:07:02 +05:30
def fields
2016-08-24 12:49:21 +05:30
default_fields =
[
{ type: 'text', name: 'webhook', placeholder: 'https://hooks.slack.com/services/...' },
{ type: 'text', name: 'username', placeholder: 'username' },
{ type: 'text', name: 'channel', placeholder: "#general" },
{ type: 'checkbox', name: 'notify_only_broken_builds' },
2016-09-29 09:46:39 +05:30
{ type: 'checkbox', name: 'notify_only_broken_pipelines' },
2016-08-24 12:49:21 +05:30
]
default_fields + build_event_channels
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
def supported_events
2016-09-29 09:46:39 +05:30
%w[push issue confidential_issue merge_request note tag_push
build pipeline wiki_page]
2015-04-26 12:48:37 +05:30
end
def execute(data)
return unless supported_events.include?(data[:object_kind])
return unless webhook.present?
object_kind = data[:object_kind]
data = data.merge(
2014-09-02 18:07:02 +05:30
project_url: project_url,
project_name: project_name
2015-04-26 12:48:37 +05:30
)
# WebHook events often have an 'update' event that follows a 'open' or
# 'close' action. Ignore update events for now to prevent duplicate
# messages from arriving.
2014-09-02 18:07:02 +05:30
2016-09-29 09:46:39 +05:30
message = get_message(object_kind, data)
2015-04-26 12:48:37 +05:30
if message
2016-09-29 09:46:39 +05:30
opt = {}
event_channel = get_channel_field(object_kind) || channel
opt[:channel] = event_channel if event_channel
opt[:username] = username if username
2015-04-26 12:48:37 +05:30
notifier = Slack::Notifier.new(webhook, opt)
2015-12-23 02:04:40 +05:30
notifier.ping(message.pretext, attachments: message.attachments, fallback: message.fallback)
2016-09-29 09:46:39 +05:30
true
else
false
2015-04-26 12:48:37 +05:30
end
2014-09-02 18:07:02 +05:30
end
2016-08-24 12:49:21 +05:30
def event_channel_names
supported_events.map { |event| event_channel_name(event) }
end
def event_field(event)
fields.find { |field| field[:name] == event_channel_name(event) }
end
def global_fields
fields.reject { |field| field[:name].end_with?('channel') }
end
2014-09-02 18:07:02 +05:30
private
2016-09-29 09:46:39 +05:30
def get_message(object_kind, data)
case object_kind
when "push", "tag_push"
PushMessage.new(data)
when "issue"
IssueMessage.new(data) unless is_update?(data)
when "merge_request"
MergeMessage.new(data) unless is_update?(data)
when "note"
NoteMessage.new(data)
when "build"
BuildMessage.new(data) if should_build_be_notified?(data)
when "pipeline"
PipelineMessage.new(data) if should_pipeline_be_notified?(data)
when "wiki_page"
WikiPageMessage.new(data)
end
end
2016-08-24 12:49:21 +05:30
def get_channel_field(event)
field_name = event_channel_name(event)
self.public_send(field_name)
end
def build_event_channels
supported_events.reduce([]) do |channels, event|
channels << { type: 'text', name: event_channel_name(event), placeholder: "#general" }
end
end
def event_channel_name(event)
"#{event}_channel"
end
2014-09-02 18:07:02 +05:30
def project_name
project.name_with_namespace.gsub(/\s/, '')
end
def project_url
project.web_url
end
2015-04-26 12:48:37 +05:30
def is_update?(data)
data[:object_attributes][:action] == 'update'
end
2015-12-23 02:04:40 +05:30
def should_build_be_notified?(data)
case data[:commit][:status]
when 'success'
!notify_only_broken_builds?
when 'failed'
true
else
false
end
end
2016-09-29 09:46:39 +05:30
def should_pipeline_be_notified?(data)
case data[:object_attributes][:status]
when 'success'
!notify_only_broken_pipelines?
when 'failed'
true
else
false
end
end
2014-09-02 18:07:02 +05:30
end
2015-04-26 12:48:37 +05:30
require "slack_service/issue_message"
require "slack_service/push_message"
require "slack_service/merge_message"
require "slack_service/note_message"
2015-12-23 02:04:40 +05:30
require "slack_service/build_message"
2016-09-29 09:46:39 +05:30
require "slack_service/pipeline_message"
2016-06-02 11:05:42 +05:30
require "slack_service/wiki_page_message"