summaryrefslogtreecommitdiff
path: root/app/graphql/resolvers/concerns/search_arguments.rb
blob: cc1a13fdf29b4b188f7727578e8cc84b7b8fbc8c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
# frozen_string_literal: true

module SearchArguments
  extend ActiveSupport::Concern

  included do
    argument :search, GraphQL::Types::String,
             required: false,
             description: 'Search query for title or description.'
    argument :in, [Types::IssuableSearchableFieldEnum],
             required: false,
             description: <<~DESC
               Specify the fields to perform the search in.
               Defaults to `[TITLE, DESCRIPTION]`. Requires the `search` argument.'
             DESC
  end

  def ready?(**args)
    validate_search_in_params!(args)
    validate_anonymous_search_access!(args)
    validate_search_rate_limit!(args)

    super
  end

  private

  def validate_anonymous_search_access!(args)
    return unless args[:search].present?
    return if current_user.present? || Feature.disabled?(:disable_anonymous_search, type: :ops)

    raise ::Gitlab::Graphql::Errors::ArgumentError,
      "User must be authenticated to include the `search` argument."
  end

  def validate_search_in_params!(args)
    return unless args[:in].present? && args[:search].blank?

    raise Gitlab::Graphql::Errors::ArgumentError,
          '`search` should be present when including the `in` argument'
  end

  def validate_search_rate_limit!(args)
    return if args[:search].blank? || context[:request].nil? || Feature.disabled?(:rate_limit_issuable_searches)

    if current_user.present?
      rate_limiter_key = :search_rate_limit
      rate_limiter_scope = [current_user]
    else
      rate_limiter_key = :search_rate_limit_unauthenticated
      rate_limiter_scope = [context[:request].ip]
    end

    if ::Gitlab::ApplicationRateLimiter.throttled_request?(
      context[:request],
      current_user,
      rate_limiter_key,
      scope: rate_limiter_scope
    )
      raise Gitlab::Graphql::Errors::ResourceNotAvailable,
        'This endpoint has been requested with the search argument too many times. Try again later.'
    end
  end

  def prepare_finder_params(args)
    prepare_search_params(args)
  end

  def prepare_search_params(args)
    return args unless args[:search].present?

    args[:in] = args[:in].join(',') if args[:in].present?
    set_search_optimization_param(args)

    args
  end

  def set_search_optimization_param(args)
    return args unless respond_to?(:resource_parent, true) && resource_parent.present?

    parent_type = resource_parent.is_a?(Project) ? :project : :group
    args[:"attempt_#{parent_type}_search_optimizations"] = true

    args
  end
end