Git Product home page Git Product logo

Comments (6)

philfreo avatar philfreo commented on August 16, 2024

Did you see https://github.com/elasticsales/flask-mongorest#authentication ?

from flask-mongorest.

ddorian avatar ddorian commented on August 16, 2024

Yep it is authentication (who is this user?). But authorization (can this user get/post/delete/put this object)? maybe something like http://django-tastypie.readthedocs.org/en/latest/authentication_authorization.html ? I think by passing the object to a function as an argument (for get/put/post) and some kind of filtering for list.

from flask-mongorest.

anemitz avatar anemitz commented on August 16, 2024

Permission checks at the object/resource level is something we usually do inside Resource.validate_request(). However, I definitely see an advantage to implementing a scheme similar to the link above. It's not a feature currently on the roadmap, would you be up to submit a pull request?

from flask-mongorest.

ddorian avatar ddorian commented on August 16, 2024

So this i my idea on how to implement it and please comment, later ill code.

  1. Filtering in listing (only show me this users objects)
    This could be done by overriding the Resource.get_queryset . But this is used also on the get single object. My idea is to create a new function called Resource.gets_queryset and the Resource.get_objects calls this function (line 177).
  2. Checking on get. Creating a new class.
class AuthorizationBase(object):
    def authorized(self,object=None):
        return False
    def authorized_get(self,object=None):
        return False
    def authorized_post(self,object=None):
        return False
    def authorized_put(self,object=None):
        return False
    def authorized_delete(self,object=None):
        return False

Adding some attributes to ResourceView :authorization_methods, authorization_get_methods etc.
Just like the authentication code in line 28 in views.py adding a check inside get,post,put,delete.

Also how do you check in Resource.validate_request()? Do you override all the code?(post code maybe cause i don't see it)

Thanks

from flask-mongorest.

ddorian avatar ddorian commented on August 16, 2024

Looks like you override validate_request and call super ?But only for put and post.

What about adding something like validate_request for get(optional argument pk to tell the difference between get and list) after obj is created and before objs is created?

Something for delete also, after obj is created?

from flask-mongorest.

ddorian avatar ddorian commented on August 16, 2024

I did the 'get' authorization by overriding Resource.get_object and 'list' by overriding Resource.get_queryset.

Thanks

from flask-mongorest.

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.