当前位置:   article > 正文

django认证和权限_django permission_classes = [isauthenticated]

django permission_classes = [isauthenticated]
  1. REST_FRAMEWORK = {
  2. 'DEFAULT_AUTHENTICATION_CLASSES': (
  3. 'rest_framework.authentication.BasicAuthentication', # 基本认证
  4. 'rest_framework.authentication.SessionAuthentication', # session认证
  5. )
  6. }

一、基本认证:所有请求都需要用户名密码

session认证:只有第一次请求需要用户名密码

配置文件中配置全局的认证方案;

视图中可以单独设置authentication_classess属性来设置

  1. from rest_framework.authentication import SessionAuthentication, BasicAuthentication
  2. from rest_framework.views import APIView
  3. class ExampleView(APIView):
  4. authentication_classes = (SessionAuthentication, BasicAuthentication)
  5. ...

二、认证失败返回值

  • 401 Unauthorized 未认证
  • 403 Permission Denied 权限被禁止

三、配置只是有认证功能,但是需要在权限中具体指明如何使用

----------------------------------------------------------------------------------------------------------

权限:

  • AllowAny 允许所有用户
  • IsAuthenticated 仅通过认证的用户
  • IsAdminUser 仅管理员用户
  • IsAuthenticatedOrReadOnly 认证的用户可以完全操作,否则只能get读取

可以在配置文件中全局设置权限管理类:

  1. REST_FRAMEWORK = {
  2. 'DEFAULT_PERMISSION_CLASSES': (
  3. 'rest_framework.permissions.IsAuthenticated',
  4. )
  5. }

也可以在视图中设置:

  1. from rest_framework.permissions import IsAuthenticated
  2. from rest_framework.views import APIView
  3. class ExampleView(APIView):
  4. permission_classes = (IsAuthenticated,)
  5. ...
  1. class BookDetailView(RetrieveAPIView):
  2. queryset = BookInfo.objects.all()
  3. serializer_class = BookInfoSerializer
  4. authentication_classes = [SessionAuthentication]
  5. permission_classes = [IsAuthenticated]

自定义权限

继承rest_framework.permissions.BasePermission,实现

  • .has_permission(self, request, view)

    是否可以访问视图, view表示当前视图对象

  • .has_object_permission(self, request, view, obj)

    是否可以访问数据对象, view表示当前视图, obj为数据对象

  1. class MyPermission(BasePermission):
  2. def has_object_permission(self, request, view, obj):
  3. """控制对obj对象的访问权限,此案例决绝所有对对象的访问"""
  4. return False
  5. class BookInfoViewSet(ModelViewSet):
  6. queryset = BookInfo.objects.all()
  7. serializer_class = BookInfoSerializer
  8. permission_classes = [IsAuthenticated, MyPermission]

 

 

 

 

 

 

 

 

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家自动化/article/detail/71645
推荐阅读
相关标签
  

闽ICP备14008679号