Code Monkey home page Code Monkey logo

Comments (6)

vitalik avatar vitalik commented on May 14, 2024 2

@bugiebhavya

yes it is possible...

Schema is using pydantic models under the hood

from pydantic import validator


class UserLogin(Schema):
    email: str
    password: str

    @validator('password')
    def check_auth(cls, v, values, **kwargs):
        user = User.objects.get(email=values['email'])  # <-- try/except here
        
        if not user.check_password(values['password']):
            raise ValueError('User or password does not match')
        return v

from django-ninja.

vitalik avatar vitalik commented on May 14, 2024

hey @bugiebhavya

I guess I would need more details about your case to answer correctly..

but in general you are free to pick any token storage or procdure

in this example https://django-ninja.rest-framework.com/tutorial/authentication/#in-query - indeed token is stored in table clients (field key) and just shared with user

you can use also jwt to avoid any storage:

from ninja.security import APIKeyHeader

@api.post('/token')
def get_token(request):
      # ... authenticate somehow
      return jwt token



class TokenAuth(APIKeyHeader):
    param_name = "X-API-Token"

    def authenticate(self, request, key):
       try:
            data = jwt.decode(key, secret)
       except JWTErrror:
             return None
        return data

@api.post('/somemethod', auth=TokenAuth())
def somemethod(request):
       auth_data = request.auth

from django-ninja.

bugiebhavya avatar bugiebhavya commented on May 14, 2024

Thanks,
One more thing, i want to apply custom validation in schema, can i write a validate method just like we do in serializers for this purpose?
like i want to check if email and password exist in database! can i achieve this in schema?
class UserLogin(Schema):
email: str
password: str

def validate(self, attrs):
		# if mail exist
	return attrs

@authapi.get("auth/login")
def login(request, user_login: UserLogin):

and how to get if our Schema is Invalid, just like in DRF if serializer is not valid

from django-ninja.

bugiebhavya avatar bugiebhavya commented on May 14, 2024

thanks it helped

from django-ninja.

asaff1 avatar asaff1 commented on May 14, 2024

how this works in testing? I'm testing with pytest-django and it doesn't seem to work

from django-ninja.

vitalik avatar vitalik commented on May 14, 2024

how this works in testing? I'm testing with pytest-django and it doesn't seem to work

do you have example code ?

from django-ninja.

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.