Welcome to mirror list, hosted at ThFree Co, Russian Federation.

runner_web_url_edge.rb « ci « types « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b9fdfd157193f2768d9c6091d489b9695ab1970 (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
# frozen_string_literal: true

module Types
  module Ci
    # rubocop: disable Graphql/AuthorizeTypes
    class RunnerWebUrlEdge < GraphQL::Types::Relay::BaseEdge
      include FindClosest

      field :web_url, GraphQL::Types::String, null: true,
            description: 'Web URL of the runner. The value depends on where you put this field in the query. You can use it for projects or groups.',
            extras: [:parent]

      def initialize(node, connection)
        super

        @runner = node.node
      end

      def web_url(parent:)
        owner = closest_parent([::Types::ProjectType, ::Types::GroupType], parent)

        case owner
        when ::Group
          Gitlab::Routing.url_helpers.group_runner_url(owner, @runner)
        when ::Project
          Gitlab::Routing.url_helpers.project_runner_url(owner, @runner)
        end
      end
    end
  end
end