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

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

时间:2018-08-08 22:01:06      阅读:370      评论:0      收藏:0      [点我收藏+]

标签:not   []   request   throttle   history   close   open   允许   技术分享   

代码

技术分享图片
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分钟内只允许三次访问

标签:not   []   request   throttle   history   close   open   允许   技术分享   

原文地址:https://www.cnblogs.com/benson321/p/9445854.html

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