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

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

module Mutations
  module Ci
    module PipelineSchedule
      class Update < Base
        graphql_name 'PipelineScheduleUpdate'

        authorize :update_pipeline_schedule

        argument :description, GraphQL::Types::String,
                 required: false,
                 description: 'Description of the pipeline schedule.'

        argument :cron, GraphQL::Types::String,
                 required: false,
                 description: 'Cron expression of the pipeline schedule.'

        argument :cron_timezone, GraphQL::Types::String,
                 required: false,
                 description:
                 <<-STR
                    Cron time zone supported by ActiveSupport::TimeZone.
                    For example: "Pacific Time (US & Canada)" (default: "UTC").
                 STR

        argument :ref, GraphQL::Types::String,
                 required: false,
                 description: 'Ref of the pipeline schedule.'

        argument :active, GraphQL::Types::Boolean,
                 required: false,
                 description: 'Indicates if the pipeline schedule should be active or not.'

        argument :variables, [Mutations::Ci::PipelineSchedule::VariableInputType],
                 required: false,
                 description: 'Variables for the pipeline schedule.'

        field :pipeline_schedule,
              Types::Ci::PipelineScheduleType,
              description: 'Updated pipeline schedule.'

        def resolve(id:, variables: [], **pipeline_schedule_attrs)
          schedule = authorized_find!(id: id)

          params = pipeline_schedule_attrs.merge(variables_attributes: variables.map(&:to_h))

          service_response = ::Ci::PipelineSchedules::UpdateService
            .new(schedule, current_user, params)
            .execute

          {
            pipeline_schedule: schedule,
            errors: service_response.errors
          }
        end
      end
    end
  end
end