gitlab-org--gitlab-foss/app/models/project_services/slack_slash_commands_servic...

35 lines
620 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SlackSlashCommandsService < SlashCommandsService
2016-11-30 09:51:48 -05:00
include TriggersHelper
def title
'Slack slash commands'
2016-11-30 09:51:48 -05:00
end
def description
"Perform common operations in Slack"
2016-11-30 09:51:48 -05:00
end
def self.to_param
2016-11-30 09:51:48 -05:00
'slack_slash_commands'
end
2016-12-15 18:00:54 -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)
end
2016-12-19 07:32:37 -05:00
end
def chat_responder
::Gitlab::Chat::Responder::Slack
end
2016-12-19 07:32:37 -05:00
private
2016-12-19 07:32:37 -05:00
def format(text)
Slack::Messenger::Util::LinkFormatter.format(text) if text
2016-12-15 18:00:54 -05:00
end
2016-11-30 09:51:48 -05:00
end