Code Monkey home page Code Monkey logo

Comments (2)

Zerotask avatar Zerotask commented on May 30, 2024 2

Yes, we choose the DIY way and it's very easy. I wrote this issue during our evaluation phase.

from django.http import HttpRequest
from ninja.security import HttpBearer
from oauth2_provider.contrib.rest_framework import OAuth2Authentication

class AuthBearer(HttpBearer):
    def authenticate(self, request: HttpRequest, token: str):
        auth = OAuth2Authentication()
        if auth.authenticate(request) is None:
            return None
        return token

(and then we registered it globally auth=AuthBearer())

The rest is solely handled by django-oauth-toolkit. So there was no change needed from our previous DRF API.

from django-ninja.

eznix86 avatar eznix86 commented on May 30, 2024

Due to the nature of the project. This is an django app within itself.

And I think it will be hard to integrate such feature to Django Ninja. Maybe look for some alternatives or DIY then opensource it.

Maybe later when Class Based Views, a rich middleware ecosystem and/or decorators is official, then maybe we can see something like this happen. But still it requires an entire app to be built. It may be a great opportunity to build django-ninja-oauth2 for yourself and other people to benefit from it.

You can create an app and extend https://django-oauth-toolkit.readthedocs.io/en/latest/ and replace DRF views to Django Ninja views:

https://django-oauth-toolkit.readthedocs.io/en/latest/views/views.html

How it may look like.

from ninja import NinjaAPI
from ninja_oauth2 import oauth2_router
api = NinjaAPI()

api.add_router("/auth", oauth2_router)

... And the magic happens.

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.