Class: Resolvers::ProjectJobsResolver

Inherits:
BaseResolver
  • Object
show all
Includes:
Gitlab::Graphql::Authorize::AuthorizeResource, LooksAhead
Defined in:
app/graphql/resolvers/project_jobs_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 LooksAhead

#apply_lookahead, #resolve

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

#resolve_with_lookahead(**args) ⇒ Object



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
# File 'app/graphql/resolvers/project_jobs_resolver.rb', line 37

def resolve_with_lookahead(**args)
  @kind = args[:kind]
  @with_artifacts = args[:with_artifacts]

  filter_by_name = args[:name].to_s.present?
  filter_by_sources = args[:sources].present?

  jobs = ::Ci::JobsFinder.new(
    current_user: current_user, project: project, params: {
      scope: args[:statuses], with_artifacts: args[:with_artifacts],
      skip_ordering: filter_by_sources
    }, type: args[:kind] || ::Ci::Build
  ).execute

  # These job filters are currently exclusive with each other
  if filter_by_name
    jobs = ::Ci::BuildNameFinder.new(
      relation: jobs,
      name: args[:name],
      project: project
    ).execute
  elsif filter_by_sources
    jobs = ::Ci::BuildSourceFinder.new(
      relation: jobs,
      sources: args[:sources],
      project: project
    ).execute

    return offset_pagination(apply_lookahead(jobs))
  end

  apply_lookahead(jobs)
end