debian-mirror-gitlab/app/graphql/mutations/release_asset_links/create.rb

51 lines
1.4 KiB
Ruby
Raw Normal View History

2021-04-17 20:07:23 +05:30
# frozen_string_literal: true
module Mutations
module ReleaseAssetLinks
class Create < BaseMutation
include FindsProject
graphql_name 'ReleaseAssetLinkCreate'
authorize :create_release
include Types::ReleaseAssetLinkSharedInputArguments
2021-10-27 15:23:28 +05:30
argument :project_path, GraphQL::Types::ID,
2021-04-17 20:07:23 +05:30
required: true,
description: 'Full path of the project the asset link is associated with.'
2021-10-27 15:23:28 +05:30
argument :tag_name, GraphQL::Types::String,
2021-04-17 20:07:23 +05:30
required: true, as: :tag,
description: "Name of the associated release's tag."
field :link,
Types::ReleaseAssetLinkType,
null: true,
2021-10-27 15:23:28 +05:30
description: 'Asset link after mutation.'
2021-04-17 20:07:23 +05:30
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
2021-09-30 23:02:18 +05:30
unless Ability.allowed?(current_user, :update_release, release)
raise_resource_not_available_error!
end
2021-04-17 20:07:23 +05:30
new_link = release.links.create(link_attrs)
unless new_link.persisted?
return { link: nil, errors: new_link.errors.full_messages }
end
{ link: new_link, errors: [] }
end
end
end
end