44 lines
1.3 KiB
Ruby
44 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module Mutations
|
|
module Notes
|
|
module Create
|
|
class Note < Base
|
|
graphql_name 'CreateNote'
|
|
|
|
argument :discussion_id,
|
|
::Types::GlobalIDType[::Discussion],
|
|
required: false,
|
|
description: 'The global ID of the discussion this note is in reply to.'
|
|
|
|
private
|
|
|
|
def create_note_params(noteable, args)
|
|
discussion_id = nil
|
|
|
|
if args[:discussion_id]
|
|
# TODO: remove this line when the compatibility layer is removed
|
|
# See: https://gitlab.com/gitlab-org/gitlab/-/issues/257883
|
|
discussion_gid = ::Types::GlobalIDType[::Discussion].coerce_isolated_input(args[:discussion_id])
|
|
discussion = GitlabSchema.find_by_gid(discussion_gid)
|
|
|
|
authorize_discussion!(discussion)
|
|
|
|
discussion_id = discussion.id
|
|
end
|
|
|
|
super(noteable, args).merge({
|
|
in_reply_to_discussion_id: discussion_id
|
|
})
|
|
end
|
|
|
|
def authorize_discussion!(discussion)
|
|
unless Ability.allowed?(current_user, :read_note, discussion, scope: :user)
|
|
raise Gitlab::Graphql::Errors::ResourceNotAvailable,
|
|
"The discussion does not exist or you don't have permission to perform this action"
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|