2018-09-14 01:42:05 -04:00
# frozen_string_literal: true
2016-08-02 17:21:57 -04:00
module SpammableActions
extend ActiveSupport :: Concern
2021-03-09 10:08:59 -05:00
include Spam :: Concerns :: HasSpamActionResponseFields
2016-08-02 17:21:57 -04:00
included do
before_action :authorize_submit_spammable! , only : :mark_as_spam
end
def mark_as_spam
2020-02-27 07:09:12 -05:00
if Spam :: MarkAsSpamService . new ( target : spammable ) . execute
2019-03-27 12:52:52 -04:00
redirect_to spammable_path , notice : _ ( " %{spammable_titlecase} was submitted to Akismet successfully. " ) % { spammable_titlecase : spammable . spammable_entity_type . titlecase }
2016-08-02 17:21:57 -04:00
else
2019-03-27 12:52:52 -04:00
redirect_to spammable_path , alert : _ ( 'Error with Akismet. Please check the logs for more info.' )
2016-08-02 17:21:57 -04:00
end
end
private
2017-12-08 07:26:39 -05:00
def recaptcha_check_with_fallback ( should_redirect = true , & fallback )
if should_redirect && spammable . valid?
2017-06-29 13:06:35 -04:00
redirect_to spammable_path
2021-01-28 19:09:17 -05:00
elsif spammable . render_recaptcha?
Gitlab :: Recaptcha . load_configurations!
2017-06-10 06:28:30 -04:00
2017-12-08 07:26:39 -05:00
respond_to do | format |
format . html do
2021-03-09 10:08:59 -05:00
# NOTE: format.html is still used by issue create, and uses the legacy HAML
# `_recaptcha_form.html.haml` rendered via the `projects/issues/verify` template.
2017-12-08 07:26:39 -05:00
render :verify
end
format . json do
2021-03-09 10:08:59 -05:00
# format.json is used by all new Vue-based CAPTCHA implementations, which
# handle all of the CAPTCHA form rendering on the client via the Pajamas-based
# app/assets/javascripts/captcha/captcha_modal.vue
2017-12-08 07:26:39 -05:00
2021-03-09 10:08:59 -05:00
# NOTE: "409 - Conflict" seems to be the most appropriate HTTP status code for a response
# which requires a CAPTCHA to be solved in order for the request to be resubmitted.
# See https://stackoverflow.com/q/26547466/25192
render json : spam_action_response_fields ( spammable ) , status : :conflict
2017-12-08 07:26:39 -05:00
end
end
2017-02-14 14:07:11 -05:00
else
2017-02-22 13:03:32 -05:00
yield
2017-02-14 14:07:11 -05:00
end
end
def spammable_params
2021-01-27 04:09:01 -05:00
# NOTE: For the legacy reCAPTCHA implementation based on the HTML/HAML form, the
# 'g-recaptcha-response' field name comes from `Recaptcha::ClientHelper#recaptcha_tags` in the
# recaptcha gem, which is called from the HAML `_recaptcha_form.html.haml` form.
2021-01-18 04:11:05 -05:00
#
2021-01-27 04:09:01 -05:00
# It is used in the `Recaptcha::Verify#verify_recaptcha` to extract the value from `params`,
# if the `response` option is not passed explicitly.
2021-01-18 04:11:05 -05:00
#
# Instead of relying on this behavior, we are extracting and passing it explicitly. This will
# make it consistent with the newer, modern reCAPTCHA verification process as it will be
# implemented via the GraphQL API and in Vue components via the native reCAPTCHA Javascript API,
# which requires that the recaptcha response param be obtained and passed explicitly.
#
2021-01-27 04:09:01 -05:00
# It can also be expanded to multiple fields when we move to future alternative captcha
# implementations such as FriendlyCaptcha. See https://gitlab.com/gitlab-org/gitlab/-/issues/273480
# After this newer GraphQL/JS API process is fully supported by the backend, we can remove the
# check for the 'g-recaptcha-response' field and other HTML/HAML form-specific support.
2021-03-09 10:08:59 -05:00
captcha_response = params [ 'g-recaptcha-response' ] || params [ :captcha_response ]
2021-01-27 04:09:01 -05:00
{
request : request ,
spam_log_id : params [ :spam_log_id ] ,
captcha_response : captcha_response
}
2021-01-18 04:11:05 -05:00
end
2016-08-02 17:21:57 -04:00
def spammable
2016-08-09 13:43:47 -04:00
raise NotImplementedError , " #{ self . class } does not implement #{ __method__ } "
2016-08-02 17:21:57 -04:00
end
2017-06-29 13:06:35 -04:00
def spammable_path
raise NotImplementedError , " #{ self . class } does not implement #{ __method__ } "
end
2016-08-02 17:21:57 -04:00
def authorize_submit_spammable!
access_denied! unless current_user . admin?
end
end