debian-mirror-gitlab/app/services/concerns/spam_check_methods.rb

40 lines
1.2 KiB
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
2020-03-13 15:44:24 +05:30
# SpamCheckMethods
2017-08-17 22:00:37 +05:30
#
# Provide helper methods for checking if a given spammable object has
# potential spam data.
#
# Dependencies:
# - params with :request
2020-03-13 15:44:24 +05:30
module SpamCheckMethods
2018-03-17 18:26:18 +05:30
# rubocop:disable Gitlab/ModuleWithInstanceVariables
2017-08-17 22:00:37 +05:30
def filter_spam_check_params
@request = params.delete(:request)
@api = params.delete(:api)
@recaptcha_verified = params.delete(:recaptcha_verified)
@spam_log_id = params.delete(:spam_log_id)
end
2018-03-17 18:26:18 +05:30
# rubocop:enable Gitlab/ModuleWithInstanceVariables
2017-08-17 22:00:37 +05:30
# In order to be proceed to the spam check process, @spammable has to be
# a dirty instance, which means it should be already assigned with the new
# attribute values.
2018-03-17 18:26:18 +05:30
# rubocop:disable Gitlab/ModuleWithInstanceVariables
2020-06-23 00:09:42 +05:30
def spam_check(spammable, user, action:)
raise ArgumentError.new('Please provide an action, such as :create') unless action
2020-05-24 23:13:21 +05:30
Spam::SpamActionService.new(
2020-03-13 15:44:24 +05:30
spammable: spammable,
2020-06-23 00:09:42 +05:30
request: @request,
user: user,
context: { action: action }
2020-03-13 15:44:24 +05:30
).execute(
api: @api,
recaptcha_verified: @recaptcha_verified,
2020-06-23 00:09:42 +05:30
spam_log_id: @spam_log_id)
2017-08-17 22:00:37 +05:30
end
2018-03-17 18:26:18 +05:30
# rubocop:enable Gitlab/ModuleWithInstanceVariables
2017-08-17 22:00:37 +05:30
end