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

module Mutations
  module Notes
    module Update
      # This is a Base class for the Note update mutations and is not
      # mounted as a GraphQL mutation itself.
      class Base < Mutations::Notes::Base
        authorize :admin_note

        argument :id,
                  ::Types::GlobalIDType[::Note],
                  required: true,
                  description: 'The global id of the note to update'

        def resolve(args)
          note = authorized_find!(id: args[:id])

          pre_update_checks!(note, args)

          updated_note = ::Notes::UpdateService.new(
            note.project,
            current_user,
            note_params(note, args)
          ).execute(note)

          # It's possible for updated_note to be `nil`, in the situation
          # where the note is deleted within `Notes::UpdateService` due to
          # the body of the note only containing Quick Actions.
          {
            note: updated_note&.reset,
            errors: updated_note ? errors_on_object(updated_note) : []
          }
        end

        private

        def pre_update_checks!(_note, _args)
          raise NotImplementedError
        end

        def note_params(_note, args)
          { note: args[:body], confidential: args[:confidential] }.compact
        end
      end
    end
  end
end