debian-mirror-gitlab/app/graphql/mutations/base_mutation.rb

39 lines
976 B
Ruby
Raw Normal View History

2018-11-18 11:00:15 +05:30
# frozen_string_literal: true
module Mutations
class BaseMutation < GraphQL::Schema::RelayClassicMutation
2019-09-30 21:07:59 +05:30
prepend Gitlab::Graphql::Authorize::AuthorizeResource
prepend Gitlab::Graphql::CopyFieldDescription
2021-01-03 14:25:43 +05:30
prepend ::Gitlab::Graphql::GlobalIDCompatibility
2019-09-30 21:07:59 +05:30
2019-12-21 20:55:43 +05:30
ERROR_MESSAGE = 'You cannot perform write operations on a read-only instance'
2020-07-28 23:09:34 +05:30
field_class ::Types::BaseField
2018-11-18 11:00:15 +05:30
field :errors, [GraphQL::STRING_TYPE],
null: false,
2020-06-23 00:09:42 +05:30
description: 'Errors encountered during execution of the mutation.'
2018-11-18 11:00:15 +05:30
def current_user
context[:current_user]
end
2019-09-30 21:07:59 +05:30
2020-11-24 15:15:51 +05:30
def api_user?
context[:is_sessionless_user]
end
2019-09-30 21:07:59 +05:30
# Returns Array of errors on an ActiveRecord object
def errors_on_object(record)
record.errors.full_messages
end
2019-12-21 20:55:43 +05:30
def ready?(**args)
if Gitlab::Database.read_only?
raise Gitlab::Graphql::Errors::ResourceNotAvailable, ERROR_MESSAGE
else
true
end
end
2018-11-18 11:00:15 +05:30
end
end