Django-中间件实现1分钟内只允许三次访问

Posted benson321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Django-中间件实现1分钟内只允许三次访问相关的知识,希望对你有一定的参考价值。

代码

技术分享图片
class Throttle(MiddlewareMixin):

    def process_request(self, request):
        # 1. 拿到用户请求的IP
        # print(request.META)
        ip = request.META.get("REMOTE_ADDR")
        # 2. 当前请求的时间
        now = time.time()
        # 3. 记录访问的历史
        if ip not in VISIT_RECORD:
            VISIT_RECORD[ip] = []

        history = VISIT_RECORD[ip]
        # [11:07:20, 10:07:11, 10:07:06, 10:07:01]
        while history and now - history[-1] > 10:
            history.pop()
        # 判断用户在一分钟的时间间隔内是否访问超过3次
        if len(history) >= 3:
            return HttpResponse("滚...")
        history.insert(0, now)
View Code

 

以上是关于Django-中间件实现1分钟内只允许三次访问的主要内容,如果未能解决你的问题,请参考以下文章

django系列8.4--django中间件的可应用案例, 限制请求次数与时间

SpringBoot限制接口访问频率

基于中间件访问频率限制 每分钟时间间隔最多访问3次

django 2. 配置信息

django 2. 配置信息

django 1.5中的django.utils.thread_support