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

35 lines
613 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class SlackSlashCommandsService < SlashCommandsService
2016-11-30 14:51:48 +00:00
include TriggersHelper
def title
'Slack slash commands'
2016-11-30 14:51:48 +00:00
end
def description
"Perform common operations in Slack"
2016-11-30 14:51:48 +00:00
end
def self.to_param
2016-11-30 14:51:48 +00:00
'slack_slash_commands'
end
2016-12-15 23:00:54 +00:00
def trigger(params)
# Format messages to be Slack-compatible
2016-12-19 12:32:37 +00:00
super.tap do |result|
2016-12-22 09:54:35 +00:00
result[:text] = format(result[:text]) if result.is_a?(Hash)
end
2016-12-19 12:32:37 +00:00
end
def chat_responder
::Gitlab::Chat::Responder::Slack
end
2016-12-19 12:32:37 +00:00
private
2016-12-19 12:32:37 +00:00
def format(text)
Slack::Notifier::LinkFormatter.format(text) if text
2016-12-15 23:00:54 +00:00
end
2016-11-30 14:51:48 +00:00
end