summaryrefslogtreecommitdiff
path: root/app/graphql/mutations/award_emojis/base.rb
blob: d868db84f9dfb48994bca5b10c821e0928c52ac9 (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
# frozen_string_literal: true

module Mutations
  module AwardEmojis
    class Base < BaseMutation
      include Gitlab::Graphql::Authorize::AuthorizeResource

      authorize :award_emoji

      argument :awardable_id,
               GraphQL::ID_TYPE,
               required: true,
               description: 'The global id of the awardable resource'

      argument :name,
               GraphQL::STRING_TYPE,
               required: true,
               description: copy_field_description(Types::AwardEmojis::AwardEmojiType, :name)

      field :award_emoji,
            Types::AwardEmojis::AwardEmojiType,
            null: true,
            description: 'The award emoji after mutation'

      private

      def find_object(id:)
        GitlabSchema.object_from_id(id)
      end

      # Called by mutations methods after performing an authorization check
      # of an awardable object.
      def check_object_is_awardable!(object)
        unless object.is_a?(Awardable) && object.emoji_awardable?
          raise Gitlab::Graphql::Errors::ResourceNotAvailable,
                'Cannot award emoji to this resource'
        end
      end
    end
  end
end