debian-mirror-gitlab/lib/gitlab/graphql/limit/field_call_count.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

42 lines
1.1 KiB
Ruby
Raw Normal View History

2022-10-11 01:57:18 +05:30
# frozen_string_literal: true
module Gitlab
module Graphql
module Limit
class FieldCallCount < ::GraphQL::Schema::FieldExtension
def resolve(object:, arguments:, context:)
raise Gitlab::Graphql::Errors::ArgumentError, 'Limit must be specified.' unless limit
raise Gitlab::Graphql::Errors::LimitError, error_message if increment_call_count(context) > limit
yield(object, arguments)
end
private
def increment_call_count(context)
2023-03-04 22:38:38 +05:30
query_id = fetch_query_id(context)
2022-10-11 01:57:18 +05:30
context[:call_count] ||= {}
2023-03-04 22:38:38 +05:30
context[:call_count][query_id] ||= {}
context[:call_count][query_id][field] ||= 0
context[:call_count][query_id][field] += 1
end
def fetch_query_id(context)
context.query.operation_fingerprint
rescue TypeError
''
2022-10-11 01:57:18 +05:30
end
def limit
options[:limit]
end
def error_message
"\"#{field.graphql_name}\" field can be requested only for #{limit} #{field.owner.graphql_name}(s) at a time."
end
end
end
end
end