Class: Resolvers::Ci::Catalog::ResourceResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
Gitlab::Graphql::Authorize::AuthorizeResource
Defined in:
app/graphql/resolvers/ci/catalog/resource_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 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)


19
20
21
22
23
24
25
26
# File 'app/graphql/resolvers/ci/catalog/resource_resolver.rb', line 19

def ready?(**args)
  unless args[:id].present? ^ args[:full_path].present?
    raise Gitlab::Graphql::Errors::ArgumentError,
      "Exactly one of 'id' or 'full_path' arguments is required."
  end

  super
end

#resolve(id: nil, full_path: nil) ⇒ Object



28
29
30
31
32
33
34
35
36
37
38
# File 'app/graphql/resolvers/ci/catalog/resource_resolver.rb', line 28

def resolve(id: nil, full_path: nil)
  catalog_resource = if full_path.present?
                       ::Ci::Catalog::Listing.new(current_user).find_resource(full_path: full_path)
                     else
                       ::Ci::Catalog::Listing.new(current_user).find_resource(id: id.model_id)
                     end

  raise_resource_not_available_error! unless catalog_resource

  catalog_resource
end