Sha256: 4cfd05693677a7620f7e01adb248b9b381edc757fdf7b2872540511b2abd33d7

Contents?: true

Size: 1.07 KB

Versions: 24

Compression:

Stored size: 1.07 KB

Contents

# frozen_string_literal: true
module GraphQL
  # When an `authorized?` hook returns false, this error is used to communicate the failure.
  # It's passed to {Schema.unauthorized_object}.
  #
  # Alternatively, custom code in `authorized?` may raise this error. It will be routed the same way.
  class UnauthorizedError < GraphQL::Error
    # @return [Object] the application object that failed the authorization check
    attr_reader :object

    # @return [Class] the GraphQL object type whose `.authorized?` method was called (and returned false)
    attr_reader :type

    # @return [GraphQL::Query::Context] the context for the current query
    attr_reader :context

    def initialize(message = nil, object: nil, type: nil, context: nil)
      if message.nil? && object.nil? && type.nil?
        raise ArgumentError, "#{self.class.name} requires either a message or keywords"
      end

      @object = object
      @type = type
      @context = context
      message ||= "An instance of #{object.class} failed #{type.graphql_name}'s authorization check"
      super(message)
    end
  end
end

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
graphql-1.11.10 lib/graphql/unauthorized_error.rb
graphql-1.12.18 lib/graphql/unauthorized_error.rb
graphql-1.11.9 lib/graphql/unauthorized_error.rb
graphql-1.12.17 lib/graphql/unauthorized_error.rb
graphql-1.12.16 lib/graphql/unauthorized_error.rb
graphql-1.12.15 lib/graphql/unauthorized_error.rb
graphql-1.12.14 lib/graphql/unauthorized_error.rb
graphql-1.12.13 lib/graphql/unauthorized_error.rb
graphql-1.12.12 lib/graphql/unauthorized_error.rb
graphql-1.12.11 lib/graphql/unauthorized_error.rb
graphql-1.12.10 lib/graphql/unauthorized_error.rb
graphql-1.12.9 lib/graphql/unauthorized_error.rb
graphql-1.12.8 lib/graphql/unauthorized_error.rb
graphql-1.12.7 lib/graphql/unauthorized_error.rb
graphql-1.12.6 lib/graphql/unauthorized_error.rb
graphql-1.12.5 lib/graphql/unauthorized_error.rb
graphql-1.11.8 lib/graphql/unauthorized_error.rb
graphql-1.12.4 lib/graphql/unauthorized_error.rb
graphql-1.12.3 lib/graphql/unauthorized_error.rb
graphql-1.12.2 lib/graphql/unauthorized_error.rb