drf频率、过滤、排序

一、自定义频率类

1、限制ip访问的次数
2、自定义频率类及使用

#自定义一个类继承BaseThrottle
from rest_framework.throttling import BaseThrottle
import time
class MyThrottle(BaseThrottle):
    VISIT_RECORD = {}   # 存用户访问信息的大字典
    def __init__(self):
        self.history = None
    def allow_request(self, request, view):
        ip = request.META.get('REMOTE_ADDR')   # (1)取出访问者ip
        ctime = time.time()
        if ip not in self.VISIT_RECORD:   # # (2)判断当前ip不在访问字典里,添加进去,并且直接返回True,表示第一次访问
            self.VISIT_RECORD[ip] = [ctime,]
            return True
        self.history = self.VISIT_RECORD.get(ip)
        while self.history and ctime-self.history[-1]>60:   # # (3)循环判断当前ip的列表,有值,并且当前时间减去列表的最后一个时间大于60s,把这种数据pop掉,这样列表中只有60s以内的访问时间,
            self.history.pop()
        if len(self.history) < 3:
            self.history.insert(0,ctime)
            return True
        else:
            return False   ## (4)判断,当列表小于3,说明一分钟以内访问不足三次,把当前时间插入到列表第一个位置,返回True,顺利通过。当大于等于3,说明一分钟内访问超过三次,返回False验证失败
    def wait(self):  # 还剩多长时间能访问
        ctime = time.time()
        return 60-(ctime - self.history[-1])

3、局部使用以及全局使用

#局部使用,在视图类中
throttle_classes = [MyAuthen.MyThrottle,]
#全局使用,在配置文件中
REST_FRAMEWORK = {
        'DEFAULT_THROTTLE_CLASSES':['app01.auth.MyThrottle',],
        }

二、内置频率类使用

#写一个类继承SimpleRateThrottle
from rest_framework.throttling import SimpleRateThrottle
class MySimpleThrottle(SimpleRateThrottle):
    scope = 'xxx'
    def get_cache_key(self,request,view):  
        return self.get_ident(request)  # 以ip限制(返回什么,就以什么为限制)
#在settings.py中配置
REST_FRAMEWORK = {
            'DEFAULT_THROTTLE_RATES' : {
                'xxx':'3/m'   # key跟scope对应,value是一个时间。3/m指一分钟限制3次
            }
        }

#全局使用,在配置文件中
REST_FRAMEWORK = {
    'DEFAULT_THROTTLE_RATES': {
        'xxx': '3/m'  # key跟scope对应,value是一个时间
    },
    'DEFAULT_THROTTLE_CLASSES': ['app01.MyAuthen.MySimpleThrottle', ],
}
#局部使用,在视图类中
throttle_classes = [MyAuthen.MySimpleThrottle,]

三、其他内置频率类

1、限制未登录用户的频率(AnonRateThrottle)

#根据ip限制,局部使用,全局使用
from rest_framework.throttling import SimpleRateThrottle,AnonRateThrottle
#在setting.py中配置
               'DEFAULT_THROTTLE_RATES' : {
                    'anon':'1/m'
                }
2、限制登陆用户访问次数UserRateThrottle
#根据用户id限制
#setting.py中配置
        'DEFAULT_THROTTLE_RATES' : {
            'user':'1/m'   # 一分钟访问一次
        }

四、内置,第三方过滤功能

1、内置筛选的使用,只能筛选出某个具体值对应的数据,不推荐使用

from rest_framework.filters import SearchFilter
#视图类中配置
filter_backends =[SearchFilter,]
search_fields=('name',) # 表模型中的字段
#查询的时候
http://127.0.0.1:8000/students/?search=lqz

2、第三方扩展的过滤功能
注意:pip3 install django-filter :最新版本(2.4.0)要跟django2.2以上搭配

from django_filters.rest_framework import DjangoFilterBackend
#视图类中配置
filter_backends = [DjangoFilterBackend,]
filter_fields = ['name','age']
#查询的时候
http://127.0.0.1:8000/students/?name=lqz&age=18

五、排序功能

1、排序

from rest_framework.filters import OrderingFilter
#视图类中配置
filter_backends =[OrderingFilter,]
ordering_fields=['id','age']
#查询的时候
http://127.0.0.1:8000/students/?ordering=-age

2、过滤后再排序

#视图中配置
filter_backends = [OrderingFilter,DjangoFilterBackend]
ordering_fields = ('id', 'age')
filter_fields=['name','age']
#查询的时候
http://127.0.0.1:8000/students/?name=lqz&age=19&ordering=-age,-id

你可能感兴趣的:(drf频率、过滤、排序)