summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/releases/delete.rb
blob: 020c9133b588a5c999565a12abcebe70453649df (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
# frozen_string_literal: true

module Mutations
  module Releases
    class Delete < Base
      graphql_name 'ReleaseDelete'

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

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

      authorize :destroy_release

      def resolve(project_path:, tag:)
        project = authorized_find!(project_path)

        params = { tag: tag }.with_indifferent_access

        result = ::Releases::DestroyService.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