Skip to content

Commit

Permalink
Merge pull request #40 from RafaelOFreitas/master
Browse files Browse the repository at this point in the history
Ignore introspection query to Object Authorization
  • Loading branch information
gabrielpra1 committed Jul 11, 2022
2 parents aa9d4e5 + 2c8e154 commit ac0487e
Show file tree
Hide file tree
Showing 5 changed files with 105 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ The package can be installed by adding `rajska` to your list of dependencies in
```elixir
def deps do
[
{:rajska, "~> 1.3.1"},
{:rajska, "~> 1.3.2"},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion lib/middlewares/object_scope_authorization.ex
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ defmodule Rajska.ObjectScopeAuthorization do

# Introspection
defp result(%{emitter: %{schema_node: %{identifier: identifier}}} = result, _context)
when identifier in [:query_type, nil] do
when identifier in [:query_type, :__schema, nil] do
result
end

Expand Down
2 changes: 1 addition & 1 deletion lib/rajska.ex
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ defmodule Rajska do
```elixir
def deps do
[
{:rajska, "~> 1.3.1"},
{:rajska, "~> 1.3.2"},
]
end
```
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ defmodule Rajska.MixProject do
def project do
[
app: :rajska,
version: "1.3.1",
version: "1.3.2",
elixir: "~> 1.8",
start_permanent: Mix.env() == :prod,
deps: deps(),
Expand Down
101 changes: 101 additions & 0 deletions test/middlewares/object_scope_authorization_test.exs
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,12 @@ defmodule Rajska.ObjectScopeAuthorizationTest do
end
end

test "Skips introspection query" do
{:ok, result} = run_pipeline(introspection_query(), context(:admin, 2))
assert %{data: %{}} = result
refute Map.has_key?(result, :errors)
end

defp all_query(id) do
"""
{
Expand Down Expand Up @@ -473,6 +479,101 @@ defmodule Rajska.ObjectScopeAuthorizationTest do
"""
end

defp introspection_query do
"""
query IntrospectionQuery {
__schema {
queryType { name }
mutationType { name }
subscriptionType { name }
types {
...FullType
}
directives {
name
description
locations
args {
...InputValue
}
}
}
}
fragment FullType on __Type {
kind
name
description
fields(includeDeprecated: true) {
name
description
args {
...InputValue
}
type {
...TypeRef
}
isDeprecated
deprecationReason
}
inputFields {
...InputValue
}
interfaces {
...TypeRef
}
enumValues(includeDeprecated: true) {
name
description
isDeprecated
deprecationReason
}
possibleTypes {
...TypeRef
}
}
fragment InputValue on __InputValue {
name
description
type { ...TypeRef }
defaultValue
}
fragment TypeRef on __Type {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
ofType {
kind
name
}
}
}
}
}
}
}
}
"""
end

defp context(role, id), do: [context: %{current_user: %{role: role, id: id}}]

defp run_pipeline(document, opts) do
Expand Down

0 comments on commit ac0487e

Please sign in to comment.