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

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

module Mutations
  module Releases
    class Update < Base
      graphql_name 'ReleaseUpdate'

      field :release,
            Types::ReleaseType,
            null: true,
            description: 'The release after mutation.'

      argument :tag_name, GraphQL::STRING_TYPE,
               required: true, as: :tag,
               description: 'Name of the tag associated with the release.'

      argument :name, GraphQL::STRING_TYPE,
               required: false,
               description: 'Name of the release.'

      argument :description, GraphQL::STRING_TYPE,
               required: false,
               description: 'Description (release notes) of the release.'

      argument :released_at, Types::TimeType,
               required: false,
               description: 'The release date.'

      argument :milestones, [GraphQL::STRING_TYPE],
               required: false,
               description: 'The title of each milestone the release is associated with. GitLab Premium customers can specify group milestones.'

      authorize :update_release

      def ready?(**args)
        if args.key?(:released_at) && args[:released_at].nil?
          raise Gitlab::Graphql::Errors::ArgumentError,
                'if the releasedAt argument is provided, it cannot be null'
        end

        if args.key?(:milestones) && args[:milestones].nil?
          raise Gitlab::Graphql::Errors::ArgumentError,
                'if the milestones argument is provided, it cannot be null'
        end

        super
      end

      def resolve(project_path:, **scalars)
        project = authorized_find!(full_path: project_path)

        params = scalars.with_indifferent_access

        result = ::Releases::UpdateService.new(project, current_user, params).execute

        if result[:status] == :success
          {
            release: result[:release],
            errors: []
          }
        else
          {
            release: nil,
            errors: [result[:message]]
          }
        end
      end
    end
  end
end