Class: Resolvers::WebHooks::EventsResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
Gitlab::Graphql::Authorize::AuthorizeResource, LooksAhead
Defined in:
app/graphql/resolvers/web_hooks/events_resolver.rb

Constant Summary

Constants included from Gitlab::Graphql::Authorize::AuthorizeResource

Gitlab::Graphql::Authorize::AuthorizeResource::ConfigurationError, Gitlab::Graphql::Authorize::AuthorizeResource::RESOURCE_ACCESS_ERROR

Instance Method Summary collapse

Methods included from Gitlab::Graphql::Authorize::AuthorizeResource

#authorize!, #authorized_find!, #authorized_resource?, #find_object, #raise_resource_not_available_error!

Methods included from LooksAhead

#apply_lookahead

Methods inherited from BaseResolver

as_single, authorization, authorized?, before_connection_authorization, before_connection_authorization_block, calculate_ext_conn_complexity, calls_gitaly!, calls_gitaly?, complexity, complexity_multiplier, #current_user, last, #object, #offset_pagination, requires_argument!, requires_argument?, resolver_complexity, #select_result, single, #single?, single_definition_blocks, singular_type, when_single

Methods included from Gitlab::Utils::Override

#extended, extensions, #included, #method_added, #override, #prepended, #queue_verification, verify!

Instance Method Details

#ready?(**args) ⇒ Boolean

Returns:

  • (Boolean)


27
28
29
30
31
32
33
34
35
36
# File 'app/graphql/resolvers/web_hooks/events_resolver.rb', line 27

def ready?(**args)
  timestamp_range = args[:timestamp_range]

  if timestamp_range && timestamp_range[:start] && WebHookLog.max_recent_days_ago > timestamp_range[:start]
    raise Gitlab::Graphql::Errors::ArgumentError,
      "`timestamp range` must be within the last #{WebHookLog::MAX_RECENT_DAYS} days"
  end

  super
end

#resolve(**args) ⇒ Object



38
39
40
# File 'app/graphql/resolvers/web_hooks/events_resolver.rb', line 38

def resolve(**args)
  ::WebHooks::WebHookLogsFinder.new(object, context[:current_user], web_hook_log_finder_params(args)).execute
end