2018-07-10 10:19:45 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Mutations
|
|
|
|
class BaseMutation < GraphQL::Schema::RelayClassicMutation
|
2021-03-18 02:11:52 -04:00
|
|
|
include Gitlab::Graphql::Authorize::AuthorizeResource
|
2019-06-21 00:45:27 -04:00
|
|
|
prepend Gitlab::Graphql::CopyFieldDescription
|
2020-10-01 05:09:54 -04:00
|
|
|
prepend ::Gitlab::Graphql::GlobalIDCompatibility
|
2019-06-21 00:45:27 -04:00
|
|
|
|
2019-09-20 14:06:35 -04:00
|
|
|
ERROR_MESSAGE = 'You cannot perform write operations on a read-only instance'
|
|
|
|
|
2020-07-07 08:09:16 -04:00
|
|
|
field_class ::Types::BaseField
|
2021-03-18 14:09:09 -04:00
|
|
|
argument_class ::Types::BaseArgument
|
2020-07-07 08:09:16 -04:00
|
|
|
|
2018-07-10 10:19:45 -04:00
|
|
|
field :errors, [GraphQL::STRING_TYPE],
|
|
|
|
null: false,
|
2020-05-20 08:07:52 -04:00
|
|
|
description: 'Errors encountered during execution of the mutation.'
|
2018-07-10 10:19:45 -04:00
|
|
|
|
|
|
|
def current_user
|
|
|
|
context[:current_user]
|
|
|
|
end
|
2019-06-21 00:45:27 -04:00
|
|
|
|
2020-08-20 08:10:27 -04:00
|
|
|
def api_user?
|
|
|
|
context[:is_sessionless_user]
|
|
|
|
end
|
|
|
|
|
2019-06-21 00:45:27 -04:00
|
|
|
# Returns Array of errors on an ActiveRecord object
|
|
|
|
def errors_on_object(record)
|
|
|
|
record.errors.full_messages
|
|
|
|
end
|
2019-09-20 14:06:35 -04:00
|
|
|
|
|
|
|
def ready?(**args)
|
|
|
|
if Gitlab::Database.read_only?
|
2021-03-18 02:11:52 -04:00
|
|
|
raise_resource_not_available_error! ERROR_MESSAGE
|
2019-09-20 14:06:35 -04:00
|
|
|
else
|
|
|
|
true
|
|
|
|
end
|
|
|
|
end
|
2021-03-18 02:11:52 -04:00
|
|
|
|
|
|
|
def load_application_object(argument, lookup_as_type, id, context)
|
|
|
|
::Gitlab::Graphql::Lazy.new { super }.catch(::GraphQL::UnauthorizedError) do |e|
|
|
|
|
Gitlab::ErrorTracking.track_exception(e)
|
|
|
|
# The default behaviour is to abort processing and return nil for the
|
|
|
|
# entire mutation field, but not set any top-level errors. We prefer to
|
|
|
|
# at least say that something went wrong.
|
|
|
|
raise_resource_not_available_error!
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.authorized?(object, context)
|
|
|
|
# we never provide an object to mutations, but we do need to have a user.
|
|
|
|
context[:current_user].present? && !context[:current_user].blocked?
|
|
|
|
end
|
|
|
|
|
|
|
|
# See: AuthorizeResource#authorized_resource?
|
|
|
|
def self.authorization
|
|
|
|
@authorization ||= ::Gitlab::Graphql::Authorize::ObjectAuthorization.new(authorize)
|
|
|
|
end
|
2018-07-10 10:19:45 -04:00
|
|
|
end
|
|
|
|
end
|