2018-08-10 02:45:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-31 01:50:53 -04:00
|
|
|
class SlackSlashCommandsService < SlashCommandsService
|
2016-11-30 09:51:48 -05:00
|
|
|
include TriggersHelper
|
|
|
|
|
|
|
|
def title
|
2017-01-08 09:19:19 -05:00
|
|
|
'Slack slash commands'
|
2016-11-30 09:51:48 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def description
|
2017-01-08 09:19:19 -05:00
|
|
|
"Perform common operations in Slack"
|
2016-11-30 09:51:48 -05:00
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.to_param
|
2016-11-30 09:51:48 -05:00
|
|
|
'slack_slash_commands'
|
|
|
|
end
|
2016-12-15 18:00:54 -05:00
|
|
|
|
2016-12-16 09:08:10 -05:00
|
|
|
def trigger(params)
|
|
|
|
# Format messages to be Slack-compatible
|
2016-12-19 07:32:37 -05:00
|
|
|
super.tap do |result|
|
2016-12-22 04:54:35 -05:00
|
|
|
result[:text] = format(result[:text]) if result.is_a?(Hash)
|
2016-12-16 09:08:10 -05:00
|
|
|
end
|
2016-12-19 07:32:37 -05:00
|
|
|
end
|
|
|
|
|
2019-02-20 16:29:48 -05:00
|
|
|
def chat_responder
|
|
|
|
::Gitlab::Chat::Responder::Slack
|
|
|
|
end
|
|
|
|
|
2016-12-19 07:32:37 -05:00
|
|
|
private
|
2016-12-16 09:08:10 -05:00
|
|
|
|
2016-12-19 07:32:37 -05:00
|
|
|
def format(text)
|
|
|
|
Slack::Notifier::LinkFormatter.format(text) if text
|
2016-12-15 18:00:54 -05:00
|
|
|
end
|
2016-11-30 09:51:48 -05:00
|
|
|
end
|