Last active
March 23, 2018 22:46
-
-
Save ruohki/0c23c0f261f98a6037481c82ec198dc0 to your computer and use it in GitHub Desktop.
schema.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
enum UserRoleEnum { | |
ROOT | |
ADMIN | |
USER | |
} | |
directive @isAuthenticated(role: UserRoleEnum = USER) on FIELD_DEFINITION | OBJECT | |
.... | |
Query { | |
myVar: String @isAuthenticated(role: ROOT) | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { defaultFieldResolver } from "graphql"; | |
import { SchemaDirectiveVisitor } from "graphql-tools"; | |
class isAuthenticated extends SchemaDirectiveVisitor { | |
visitObject(type) { | |
this.ensureFieldsWrapped(type); | |
type._role = this.args.role; | |
} | |
visitFieldDefinition(field, details) { | |
this.ensureFieldsWrapped(details.objectType); | |
field._role = this.args.role; | |
} | |
ensureFieldsWrapped(objectType) { | |
if (objectType._authFieldsWrapped) return; | |
objectType._authFieldsWrapped = true; | |
const fields = objectType.getFields(); | |
Object.keys(fields).forEach(fieldName => { | |
const field = fields[fieldName]; | |
const { resolve = defaultFieldResolver } = field; | |
field.resolve = async function (root, args, ctx, info) { | |
const role = field._role || objectType._role; | |
const { userId = false } = ctx; | |
if (!userId) { | |
throw new Error("Not Authenticated"); | |
} | |
// Throw in some random checks | |
// like checks against the user and his roles etc | |
// throw error if no access | |
return await resolve.call(this, root, args, ctx, info); | |
}; | |
}) | |
} | |
} | |
export default isAuthenticated; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import isAuthenticated from './isAuthenticatedDirective'; | |
... | |
const schema = makeExecutableSchema({ | |
typeDefs, | |
resolvers, | |
schemaDirectives: { | |
isAuthenticated | |
} | |
}); | |
... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment