2018-08-10 02:45:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-12-15 17:45:10 -05:00
|
|
|
# Base class for Chat services
|
|
|
|
# This class is not meant to be used directly, but only to inherrit from.
|
2017-05-31 01:50:53 -04:00
|
|
|
class SlashCommandsService < Service
|
2016-12-15 17:45:10 -05:00
|
|
|
default_value_for :category, 'chat'
|
|
|
|
|
|
|
|
prop_accessor :token
|
|
|
|
|
2017-06-08 11:16:27 -04:00
|
|
|
has_many :chat_names, foreign_key: :service_id, dependent: :destroy # rubocop:disable Cop/ActiveRecordDependent
|
2016-12-15 17:45:10 -05:00
|
|
|
|
|
|
|
def valid_token?(token)
|
|
|
|
self.respond_to?(:token) &&
|
|
|
|
self.token.present? &&
|
|
|
|
ActiveSupport::SecurityUtils.variable_size_secure_compare(token, self.token)
|
|
|
|
end
|
|
|
|
|
2016-12-27 07:44:24 -05:00
|
|
|
def self.supported_events
|
|
|
|
%w()
|
2016-12-15 17:45:10 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def can_test?
|
|
|
|
false
|
|
|
|
end
|
|
|
|
|
|
|
|
def fields
|
|
|
|
[
|
2017-01-08 09:19:19 -05:00
|
|
|
{ type: 'text', name: 'token', placeholder: 'XXxxXXxxXXxxXXxxXXxxXXxx' }
|
2016-12-15 17:45:10 -05:00
|
|
|
]
|
|
|
|
end
|
|
|
|
|
|
|
|
def trigger(params)
|
2017-01-12 09:04:21 -05:00
|
|
|
return unless valid_token?(params[:token])
|
2016-12-15 17:45:10 -05:00
|
|
|
|
2018-02-22 12:34:04 -05:00
|
|
|
chat_user = find_chat_user(params)
|
2017-01-10 13:43:58 -05:00
|
|
|
|
2018-02-22 12:34:04 -05:00
|
|
|
if chat_user&.user
|
|
|
|
Gitlab::SlashCommands::Command.new(project, chat_user, params).execute
|
2017-01-10 13:43:58 -05:00
|
|
|
else
|
2016-12-15 17:45:10 -05:00
|
|
|
url = authorize_chat_name_url(params)
|
2017-05-31 01:50:53 -04:00
|
|
|
Gitlab::SlashCommands::Presenters::Access.new(url).authorize
|
2016-12-15 17:45:10 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def find_chat_user(params)
|
|
|
|
ChatNames::FindUserService.new(self, params).execute
|
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_chat_name_url(params)
|
|
|
|
ChatNames::AuthorizeUserService.new(self, params).execute
|
|
|
|
end
|
|
|
|
end
|