@giraphql/plugin-scope-auth
v2.15.0
Published
A GiraphQL plugin for adding scope based authorization checks to your GraphQL Schema
Downloads
500
Maintainers
Readme
Scope Auth Plugin for GiraphQL
The scope auth plugin aims to be a general purpose authorization plugin that can handle a wide variety of authorization use cases, while incurring a minimal performance overhead.
Usage
Install
yarn add @giraphql/plugin-scope-auth
IMPORTANT
When using scope-auth
with other plugins, make sure that the scope-auth
plugin is listed first
to ensure that other plugins that wrap resolvers do not execute first.
Setup
import SchemaBuilder from '@giraphql/core';
import ScopeAuthPlugin from '@giraphql/plugin-scope-auth';
type MyPerms = 'readStuff' | 'updateStuff' | 'readArticle';
const builder = new SchemaBuilder<{
// Types used for scope parameters
AuthScopes: {
public: boolean;
employee: boolean;
deferredScope: boolean;
customPerm: MyPerms;
};
}>({
plugins: [ScopeAuthPlugin],
// scope initializer, create the scopes and scope loaders for each request
authScopes: async (context) => ({
public: !!context.User,
// eagerly evaluated scope
employee: await context.User.isEmployee(),
// evaluated when used
deferredScope: () => context.User.isEmployee(),
// scope loader with argument
customPerm: (perm) => context.permissionService.hasPermission(context.User, perm),
}),
});
In the above setup, We import the scope-auth
plugin, and include it in the builders plugin list.
We also define 2 important things:
The
AuthScopes
type in the builderSchemaTypes
. This is a map of types that define the typesused by each of your scopes. We'll see how this is used in more detail below.
The
scope initializer
function, which is the implementation of each of the scopes defined inthe type above. This function returns a map of either booleans (indicating if the request has the
scope) or functions that load the scope (with an optional parameter).
The names of the scopes (public
, employee
, deferredScope
, and customPerm
) are all
arbitrary, and are not part of the plugin. You can use whatever scope names you prefer, and can add
as many you need.
Using a scope on a field
builder.queryType({
fields: (t) => ({
message: t.string({
authScopes: {
public: true,
},
resolve: () => 'hi',
}),
}),
});
Terminology
A lot of terms around authorization are overloaded, and can mean different things to different people. Here is a short list of a few terms used in this document, and how they should be interpreted:
scope
: A scope is unit of authorization that can be used to authorize a request to resolve afield.
scope map
: A map of scope names and scope parameters. This defines the set of scopes that willbe checked for a field or type to authorize the request the resolve a resource.
scope loader
: A function for dynamically loading scope given a scope parameter. Scope loadersare ideal for integrating with a permission service, or creating scopes that can be customized
based in the field or values that they are authorizing.
scope parameter
: A parameter that will be passed to a scope loader. These are the values in theauthScopes objects.
scope initializer
: The function that creates the scopes or scope loaders for the currentrequest.
While this plugin uses scopes
as the term for it's authorization mechanism, this plugin can easily
be used for role or permission based schemes, and is not intended to dictate a specific philosophy
around how to authorize requests/access to resources.
Use cases
Examples below assume the following builder setup:
const builder = new SchemaBuilder<{
// Types used for scope parameters
AuthScopes: {
public: boolean;
employee: boolean;
deferredScope: boolean;
customPerm: MyPerms;
};
}>({
plugins: [ScopeAuthPlugin],
authScopes: async (context) => ({
public: !!context.User,
employee: await context.User.isEmployee(),
deferredScope: () => context.User.isEmployee(),
customPerm: (perm) => context.permissionService.hasPermission(context.User, perm),
}),
});
Top level auth on queries and mutations
To add an auth check to root level queries or mutations, add authScopes to the field options:
builder.queryType({
fields: (t) => ({
internalMessage: t.string({
authScopes: {
employee: true,
},
resolve: () => 'hi',
}),
}),
});
This will require the requests to have the employee
scope. Adding multiple scopes to the
authScopes
object will check all the scopes, and if the user has any of the scopes, the request
will be considered authorized for the current field. Subscription and Mutation root fields work the
same way.
Auth on nested fields
Fields on nested objects can be authorized the same way scopes are authorized on the root types.
builder.objectType(Article, {
fields: (t) => ({
title: t.exposeString('title', {
authScopes: {
employee: true,
},
}),
}),
});
Default auth for all fields on types
To apply the same scope requirements to all fields on a type, you can define an authScope
map in
the type options rather than on the individual fields.
builder.objectType(Article, {
authScopes: {
public: true,
},
fields: (t) => ({
title: t.exposeString('title', {}),
content: t.exposeString('content', {}),
}),
});
Overwriting default auth on field
In some cases you may want to use default auth scopes for a type, but need to change the behavior for one specific field.
To add additional requirements for a specific field you can simply add additional scopes on the field itself.
builder.objectType(Article, {
authScopes: {
public: true,
},
fields: (t) => ({
title: t.exposeString('title', {}),
viewCount: t.exposeInt('viewCount', {
authScopes: {
employee: true,
},
}),
}),
});
To remove the type level scopes for a field, you can use the skipTypeScopes
option:
builder.objectType(Article, {
authScopes: {
public: true,
},
fields: (t) => ({
title: t.exposeString('title', {
skipTypeScopes: true,
}),
content: t.exposeString('title', {}),
}),
});
This will allow non-logged in users to resolve the title, but not the content of an Article.
ignoreScopesFromType
can be used in conjunction with authScopes
on a field to completely
overwrite the default scopes.
Generalized auth functions with field specific arguments
The scopes we have covered so far have all been related to information that applies to a full request. In more complex applications you may not make sense to enumerate all the scopes a request is authorized for ahead of time. To handle these cases you can define a scope loader which takes a parameter and dynamically determines if a request is authorized for a scope using that parameter.
One common example of this would be a permission service that can check if a user or request has a certain permission, and you want to specify the specific permission each field requires.
builder.queryType({
fields: (t) => ({
articles: t.field({
type: [Article],
authScopes: {
customPerm: 'readArticle',
},
resolve: () => Article.getSome(),
}),
}),
});
In the example above, the authScope map uses the customPerm scope loader with a parameter of
readArticle
. The first time a field requests this scope, the customPerm loader will be called with
readArticle
as its argument. This scope will be cached, so that if multiple fields request the
same scope, the scope loader will still only be called once.
The types for the parameters you provide for each scope are based on the types provided to the
builder in the AuthScopes
type.
Returning a custom value when unauthorized
In some cases you may want to return null, and empty array, throw a custom error, or return a custom
result when a user is not authorized. To do this you can add a unauthorizedResolver
option to your
field.
builder.queryType({
fields: (t) => ({
articles: t.field({
type: [Article],
authScopes: {
customPerm: 'readArticle',
},
resolve: () => Article.getSome(),
unauthorizedResolver: () => [],
}),
}),
});
In the example above, if a user is not authorized they will simply receive an empty array in the
response. The unauthorizedResolver
option takes the same arguments as a resolver, but also
receives a 5th argument that is an instance of ForbiddenError
.
Setting scopes that apply for a full request
We have already seen several examples of this. For scopes that apply to a full request like public
or employee
, rather than using a scope loader, the scope initializer can simply use a boolean to
indicate if the request has the given scope. If you know ahead of time that a scope loader will
always return false for a specific request, you can do something like the following to avoid the
additional overhead of running the loader:
const builder = new SchemaBuilder<{
AuthScopes: {
humanPermission: string;
};
}>({
plugins: [ScopeAuthPlugin],
authScopes: async (context) => ({
humanPermission: context.user.isHuman() ? (perm) => context.user.hasPermission(perm) : false,
}),
});
This will ensure that if a request access a field that requests a humanPermission
scope, and the
request is made by another service or bot, we don't have to run the hasPermission
check at all for
those requests, since we know it would return false anyways.
Logical operations on auth scopes (any/all)
By default the the scopes in a scope map are evaluated in parallel, and if the request has any of the requested scopes, the field will be resolved. In some cases, you may want to require multiple scopes:
builder.objectType(Article, {
fields: (t) => ({
title: t.exposeString('title', {}),
viewCount: t.exposeInt('viewCount', {
authScopes: {
$all: {
$any: {
employee: true,
deferredScope: true,
},
public: true,
},
},
}),
}),
});
You can use the built in $any
and $all
scope loaders to combine requirements for scopes. The
above example requires a request to have either the employee
or deferredScope
scopes, and the
public
scope. $any
and $all
each take a scope map as their parameters, and can be nested
inside each other.
Auth that depends on parent value
For cases where the required scopes depend on the value of the requested resource you can use a
function in the authScopes
option that returns the scope map for the field.
builder.objectType(Article, {
fields: (t) => ({
viewCount: t.exposeInt('viewCount', {
authScopes: (article, args, context, info) => {
if (context.User.id === article.author.id) {
// If user is author, let them see it
// returning a boolean lets you set auth without specifying other scopes to check
return true;
}
// If the user is not the author, require the employee scope
return {
employee: true,
};
},
}),
}),
});
authScope functions on fields will receive the same arguments as the field resolver, and will be called each time the resolve for the field would be called. This means the same authScope function could be called multiple time for the same resource if the field is requested multiple times using an alias.
returning a boolean from an auth scope function is an easy way to allow or disallow a request from resolving a field without needing to evaluate additional scopes.
Setting type level scopes based on the parent value
You can also use a function in the authScope option for types. This function will be invoked with the parent and the context as its arguments, and should return a scope map.
builder.objectType(Article, {
authScope: (parent, context) => {
if (parent.isPublished()) {
return {
public: true,
};
}
return {
employee: true,
};
},
fields: (t) => ({
title: t.exposeString('title', {}),
}),
});
The above example uses an authScope function to prevent the fields of an article from being loaded by non employees unless they have been published.
Setting scopes based on the return value of a field
This is a use that is not currently supported. The current work around is to move those checks down to the returned type. The downside of this is that any resulting permission errors will appear on the fields of the returned type rather than the parent field.
Granting access to a resource based on how it is accessed
In some cases, you may want to grant a request scopes to access certain fields on a child type. To
do this you can use $granted
scopes.
builder.queryType({
fields: (t) => ({
freeArticle: t.field({
grantScopes: ['readArticle'],
// or
grantScopes: (parent, args, context, info) => ['readArticle'],
}),
}),
});
builder.objectType(Article, {
authScopes: {
public: true,
$granted: 'readArticle',
}
fields: (t) => ({
title: t.exposeString('title', {}),
}),
});
In the above example, the fields of the Article
type normally require the public
scope granted
to logged in users, but can also be accessed with the $granted
scope readArticle
. This means
that if the field that returned the Article "granted" the scope, the article ran be read. The
freeArticle
field on the Query
type grants this scope, allowing anyone querying that field to
access fields of the free article. $granted
scopes are separate from other scopes, and do not give
a request access to normal scopes of the same name. $granted
scopes are also not inherited by
nested children, and would need to be explicitly passed down for each field if you wanted to grant
access to nested children.
Reusing checks for multiple, but not all fields
You may have cases where groups of fields on a type are accessible using some shared condition. This
is another case where $granted
scopes can be helpful.
builder.objectType(Article, {
grantScopes: (article, context) => {
if (context.User.id === article.author.id) {
return ['author', 'readArticle'];
}
if (article.isDraft()) {
return [];
}
return ['readArticle'];
},
fields: (t) => ({
title: t.exposeString('title', {
authScopes: {
$granted: 'readArticle',
},
}),
content: t.exposeString('content', {
authScopes: {
$granted: 'readArticle',
},
}),
viewCount: t.exposeInt('viewCount', {
authScopes: {
$granted: 'author',
},
}),
}),
});
In the above example, title
, content
, and viewCount
each use $granted
scopes. In this case,
rather than scopes being granted by the parent field, they are granted by the the Article type
itself. This allows the access to each field to change based on some dynamic conditions (if the
request is from the author, and if the article is a draft) without having to duplicate that logic
in each individual field.
Interfaces
Interfaces can define auth scopes on their fields the same way objects do. Fields for a type will run checks for each interface it implements separately, meaning that a request would need to satisfy the scope requirements for each interface separately before the field is resolved.
When checks are run, and how things are cached
Scope Initializer
The scope initializer would be run once the first time a field protected by auth scopes is resolved, its result will be cached for the current request.
authScopes functions on fields
when using a function for authScopes
on a field, the function will be run each time the field is
resolved, since it has access to all the arguments passed to the resolver
authScopes functions on types
when using a function for authScopes
on a type, the function will be run the once for each
instance of that type in the response. It will be run lazily when the first field for that object is
resolved, and its result will be cached and reused by all fields for that instance of the type.
scope loaders
Scope loaders will be run run whenever a field requires the corresponding scope with a unique parameter. The scope loader results are cached per request based on a combination of the name of the scope, and its parameter.
grantScope on field
grantScopes
on a field will run after the field is resolved, and is not cached
grantScope on type
grantScopes
on a type (object or interface) will run when the first field on the type is
resolved. It's result will be cached and reused for each field of the same instance of the type.
API
Types
AuthScopes
:extends {}
. Each property is the name of its scope, each value is the type for thescopes parameter.
ScopeLoaderMap
: Object who's keys are scope names (fromAuthScopes
) and whos values are eitherbooleans (indicating whether or not the request has the scope) or function that take a parameter
(type from
AuthScope
) and returnMaybePromise<boolean>
ScopeMap
: A map of scope names to parameters. Based onAuthScopes
, may also contain$all
,$any
or$granted
.
Builder
authScopes
: (context: Types['Context']) =>MaybePromise<ScopeLoaderMap<Types>>
Object and Interface options
authScopes
:ScopeMap
orfunction
, acceptsparent
andcontext
returnsMaybePromise<ScopeMap>
grantScopes
:function
, acceptsparent
andcontext
returnsMaybePromise<string[]>
Field Options
authScopes
:ScopeMap
orfunction
, accepts same arguments as resolver, returnsMaybePromise<ScopeMap>
grantScopes
:string[]
orfunction
, accepts same arguments as resolver, returnsMaybePromise<string[]>
skipTypeScopes
:boolean
skipInterfaceScopes
:boolean
toSchema options
disableScopeAuth
: disable the scope auth plugin. Useful for testing.