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

update.rb « environments « mutations « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 07ab22685cc7a7195d07eae2825bb5279bb0145f (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
32
33
34
35
36
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
# frozen_string_literal: true

module Mutations
  module Environments
    class Update < ::Mutations::BaseMutation
      graphql_name 'EnvironmentUpdate'
      description 'Update an environment.'

      authorize :update_environment

      argument :id,
        ::Types::GlobalIDType[::Environment],
        required: true,
        description: 'Global ID of the environment to update.'

      argument :external_url,
        GraphQL::Types::String,
        required: false,
        description: 'External URL of the environment.'

      argument :tier,
        Types::DeploymentTierEnum,
        required: false,
        description: 'Tier of the environment.'

      argument :cluster_agent_id,
        ::Types::GlobalIDType[::Clusters::Agent],
        required: false,
        description: 'Cluster agent of the environment.'

      argument :kubernetes_namespace,
        GraphQL::Types::String,
        required: false,
        description: 'Kubernetes namespace of the environment.'

      field :environment,
        Types::EnvironmentType,
        null: true,
        description: 'Environment after attempt to update.'

      def resolve(id:, **kwargs)
        environment = authorized_find!(id: id)

        convert_cluster_agent_id(kwargs)

        response = ::Environments::UpdateService.new(environment.project, current_user, kwargs).execute(environment)

        if response.success?
          { environment: response.payload[:environment], errors: [] }
        else
          { environment: response.payload[:environment], errors: response.errors }
        end
      end

      private

      def convert_cluster_agent_id(kwargs)
        return unless kwargs.key?(:cluster_agent_id)

        kwargs[:cluster_agent] = if kwargs[:cluster_agent_id]
                                   ::Clusters::Agent.find_by_id(kwargs[:cluster_agent_id].model_id)
                                 end
      end
    end
  end
end