Created
August 4, 2017 19:03
-
-
Save crucialfelix/cb106a008a7a62bdab4a68e1b4ab7a3c to your computer and use it in GitHub Desktop.
django-graphene auth decorator
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
from decorator import decorator | |
def _check_auth(args, pred): | |
_, _, context, _ = args | |
if not pred(context): | |
raise Exception("Unauthorized") | |
@decorator | |
def is_user(fn, *args, **kwargs): | |
_check_auth(args, lambda context: not context.user.is_anonymous()) | |
return fn(*args, **kwargs) | |
@decorator | |
def is_staff(fn, *args, **kwargs): | |
_check_auth(args, lambda context: context.user.is_staff) | |
return fn(*args, **kwargs) | |
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
from graphql_auth import is_staff | |
# etc | |
class CreateClientNote(graphene.relay.ClientIDMutation): | |
class Input: | |
client_id = graphene.ID(required=True) | |
body = graphene.String(required=True) | |
client_note = graphene.Field(ClientNote) | |
@classmethod | |
@is_staff | |
def mutate_and_get_payload(cls, input, context, info): | |
client = get_model(input.get('client_id'), context, info) | |
model = models.ClientNote.objects.create( | |
created_by_agent=context.agent, body=input.get('body'), client=client) | |
return cls(client_note=model) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment