summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/release_asset_links/create.rb
blob: bda998764b997e80e4b5fd407eaa84830aefd953 (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
# frozen_string_literal: true

module Mutations
  module ReleaseAssetLinks
    class Create < BaseMutation
      graphql_name 'ReleaseAssetLinkCreate'

      include FindsProject
      include Types::ReleaseAssetLinkSharedInputArguments

      authorize :create_release

      argument :project_path, GraphQL::Types::ID,
               required: true,
               description: 'Full path of the project the asset link is associated with.'

      argument :tag_name, GraphQL::Types::String,
               required: true, as: :tag,
               description: "Name of the associated release's tag."

      field :link,
            Types::ReleaseAssetLinkType,
            null: true,
            description: 'Asset link after mutation.'

      def resolve(project_path:, tag:, **link_attrs)
        project = authorized_find!(project_path)
        release = project.releases.find_by_tag(tag)

        if release.nil?
          message = _('Release with tag "%{tag}" was not found') % { tag: tag }
          return { link: nil, errors: [message] }
        end

        unless Ability.allowed?(current_user, :update_release, release)
          raise_resource_not_available_error!
        end

        result = ::Releases::Links::CreateService
          .new(release, current_user, link_attrs)
          .execute

        if result.success?
          { link: result.payload[:link], errors: [] }
        else
          { link: nil, errors: result.message }
        end
      end
    end
  end
end