码迷,mamicode.com
首页 > 其他好文 > 详细

Django rest_framework----认证,权限,频率组件

时间:2018-11-04 16:13:21      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:ISE   通过   led   framework   get   ssi   frame   cep   ice   

认证

from rest_framework.authentication import BaseAuthentication
from rest_framework.exceptions import AuthenticationFailed
from api.models import *

class AuthToken(BaseAuthentication):
    def authenticate(self, request):
        token=request.GET.get(token)
        token_obj=Token.objects.filter(token=token)

        if token_obj:

            return token_obj.user,token_obj

        else:

            raise AuthenticationFailed(验证失败)

        

 

全局使用settings配置

REST_FRAMEWORK={ "DEFAULT_AUTHENTICATION_CLASSES":["app01.service.auth.Authentication",] }

 

局部使用,只需要在视图类里加入:

authentication_classes = [TokenAuth, ]


权限

class SVIPPermission(object):
  message="只有超级用户才能访问"
  def has_permission(self,request,view):
    username=request.user
    user_type=User.objects.filter(name=username).first().user_type

    if user_type==3:

      return True # 通过权限认证
    else:
      return False

 

Django rest_framework----认证,权限,频率组件

标签:ISE   通过   led   framework   get   ssi   frame   cep   ice   

原文地址:https://www.cnblogs.com/hanbowen/p/9904230.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!