GithubHelp home page GithubHelp logo

Comments (6)

mongkok avatar mongkok commented on May 23, 2024 2

Hey @evanheckert!

welcome to GraphQL.

you can use a resolver method for the token and others non-model fields:
http://docs.graphene-python.org/en/latest/types/objecttypes/#resolvers

import graphene

from django.contrib.auth import get_user_model
from graphene_django import DjangoObjectType

from graphql_jwt.utils import jwt_encode, jwt_payload

class UserNode(DjangoObjectType):
    token = graphene.String()

    class Meta:
        model = get_user_model()
        filter_fields = [
            'username',
        ]
        interfaces = (relay.Node,)

        def resolve_token(self, info, **kwargs):
            if info.context.user != self:
                return None

            payload = jwt_payload(self)
            return jwt_encode(payload)

Add Django login function to your mutation to attach authenticated user to the current session:
https://docs.djangoproject.com/en/1.11/topics/auth/default/#how-to-log-a-user-in

import graphene

from django.contrib.auth import authenticate, login

class LogIn(graphene.Mutation):
    user = graphene.Field(UserNode)

    class Arguments:
        username = graphene.String()
        password = graphene.String()

    @classmethod
    def mutate(cls, root, info, username, password):
        user = authenticate(username=username, password=password)

        if user is None:
            raise Exception('Please enter a correct username and password')

        if not user.is_active:
            raise Exception('It seems your account has been disabled')

        login(info.context, user)
        return cls(user=user)

from django-graphql-jwt.

evanheckert avatar evanheckert commented on May 23, 2024 1

@mongkok Thank you! I only had to change one thing in the example you provided - your code raises an exception if it does find a user, so I just changed if user is not None: to if user is None: and it works!

Thank you so much for your help!

from django-graphql-jwt.

mongkok avatar mongkok commented on May 23, 2024 1

Hi @evanheckert, I think is not good idea to include the token as a UserNode field (using cookie-based sessions..),
the user must authenticate each time he wants to retrieve the token.

from django.contrib.auth import authenticate, login

import graphene
from graphql_jwt.shortcuts import get_token


class LogIn(graphene.Mutation):
    token = graphene.String()
    user = graphene.Field(UserNode)

    class Arguments:
        username = graphene.String()
        password = graphene.String()

    @classmethod
    def mutate(cls, root, info, username, password):
        user = authenticate(username=username, password=password)

        if user is None:
            raise Exception('Please enter a correct username and password')

        if not user.is_active:
            raise Exception('It seems your account has been disabled')

        login(info.context, user)
        return cls(user=user, token=get_token(user))

from django-graphql-jwt.

mongkok avatar mongkok commented on May 23, 2024 1

@TitanFighter https://github.com/howtographql/graphql-python

from django-graphql-jwt.

mongkok avatar mongkok commented on May 23, 2024

Thanks!, README is updated.

from django-graphql-jwt.

TitanFighter avatar TitanFighter commented on May 23, 2024

@mongkok are you able to make a repository in order to show the structure of project (skeleton)? I mean are you able to show what code in what files should be placed?

Thank you.

from django-graphql-jwt.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.