Django之頻率組件

来源:https://www.cnblogs.com/xuecaichang/archive/2018/12/14/10121403.html
-Advertisement-
Play Games

一、頻率簡介 為了控制用戶對某個url的請求 的頻率,比如 ,一分鐘以內,只能訪問三次 二、自定義頻率類,自定義頻率規則 自定義的邏輯 代碼實現: import time 自定義頻率控制 class MyThrottle(): visitor_dic = {} def __init__(self): ...


一、頻率簡介

為了控制用戶對某個url的請求 的頻率,比如 ,一分鐘以內,只能訪問三次

二、自定義頻率類,自定義頻率規則

自定義的邏輯

(1)取出訪問者的ip

(2)判斷當前ip不在訪問字典里,添加進去,並且直接返回True,表示第一次訪問,在字典里,繼續往下走

(3)循壞判斷當前ip的列表,有值,並且當前時間減去列表的最後一時間大於60秒,把這種數據pop掉 ,這樣列表中只有 60s以內的訪問時間;

(4)判斷,當列表小於3,說明一分鐘 以內訪問次數不足3次,把當前時間插入到列表第一個位置,返回True,順利通過;

(5)當大於等於3,說明一分鐘內訪問超過3次,返回 False驗證失敗

代碼實現:

import time
自定義頻率控制
class MyThrottle():
    visitor_dic = {}

    def __init__(self):
        self.history = None

    def allow_request(self, request, view):
        '''

        #(1)取出訪問者ip
        # (2)判斷當前ip不在訪問字典里,添加進去,並且直接返回True,表示第一次訪問,在字典里,繼續往下走
        # (3)迴圈判斷當前ip的列表,有值,並且當前時間減去列表的最後一個時間大於60s,把這種數據pop掉,這樣列表中只有60s以內的訪問時間,
        # (4)判斷,當列表小於3,說明一分鐘以內訪問不足三次,把當前時間插入到列表第一個位置,返回True,順利通過
        # (5)當大於等於3,說明一分鐘內訪問超過三次,返回False驗證失敗
}        '''

        # META:請求所有的東西的字典
        # 拿出ip地址
        ip = request.META.get('REMOTE_ADDR')
        # 當前時間
        ctime = time.time()
        # self先從自身找,再到類中找
        if ip not in self.visitor_dic:
            self.visitor_dic[ip] = [ctime, ]
            return True
        # 根據當前時間者ip,取出訪問的時間列表
        history = self.visitor_dic[ip]
        # 記錄一下當前訪問的人
        self.history = history
        while history and ctime - history[-1] > 60:
            history.pop()
        if len(history) < 3:
            # 將當前時間放到第0個位置上
            history.insert(0, ctime)
            return True
        else:
            return False

    def wait(self):
        # 剩餘時間
        ctime = time.time()
        return 60 - (ctime - self.history[-1])
View Code

view層

from django.shortcuts import render, HttpResponse


from rest_framework import exceptions
from rest_framework.views import APIView
from app01.myauth import MyThrottle

class Test(APIView):
    throttle_classes = [MyThrottle, ]

    def get(self, request):
        return HttpResponse('ok')
    
    # 將前端提示信息轉化成 中文
    def throttled(self, request, wait):
        class MyThottled(exceptions.Throttled):
            default_detail = '傻逼'
            extra_detail_singular = '還剩{wait}秒'
            extra_detail_plural = '還剩{wait}秒'

        raise MyThottled(wait)
View Code

三、內置 頻率類 及局部使用 

寫一個類,繼承自SimpleRateThrottle,(根據ip限制)問:要根據用戶現在怎麼寫:

from rest_framework.throttling import SimpleRateThrottle
class MyThrottle(SimpleRateThrottle):
    scope = 'luffy'
    def get_cache_key(self, request, view):
        return self.get_ident(request)

在settings里配置:(一分鐘訪問三次)

REST_FRAMEWORK = {
    'DEFAULT_THROTTLE_RATES':{
        'luffy':'3/m'
    }
}

內置頻率限制類:

BaseThrottle是 所有類的基類:方法:def  get_ident(self,request)獲取標識,其實就是獲取ip,自定義的需要繼承它;

AnonRateThrottle:未登錄用戶ip限制,需要配合 auth模塊用

SimpleRateThrottle:重寫此方法 ,可以實現頻率現在,不需要咱們手寫上面自定義的邏輯

UserRateThrottle:登錄用戶頻率限制,這個得配合auth模塊來用

ScopedRateThrottle:應用在局部視圖上的(忽略)

四、原碼分析

def check_throttles(self, request):
        for throttle in self.get_throttles():
            if not throttle.allow_request(request, self):
                self.throttled(request, throttle.wait())
    def throttled(self, request, wait):
        #拋異常,可以自定義異常,實現錯誤信息的中文顯示
        raise exceptions.Throttled(wait)
View Code
class SimpleRateThrottle(BaseThrottle):
    # 咱自己寫的放在了全局變數,他的在django的緩存中
    cache = default_cache
    # 獲取當前時間,跟咱寫的一樣
    timer = time.time
    # 做了一個字元串格式化,
    cache_format = 'throttle_%(scope)s_%(ident)s'
    scope = None
    # 從配置文件中取DEFAULT_THROTTLE_RATES,所以咱配置文件中應該配置,否則報錯
    THROTTLE_RATES = api_settings.DEFAULT_THROTTLE_RATES

    def __init__(self):
        if not getattr(self, 'rate', None):
            # 從配置文件中找出scope配置的名字對應的值,比如咱寫的‘3/m’,他取出來
            self.rate = self.get_rate()
        #     解析'3/m',解析成 3      m
        self.num_requests, self.duration = self.parse_rate(self.rate)
    # 這個方法需要重寫
    def get_cache_key(self, request, view):
        """
        Should return a unique cache-key which can be used for throttling.
        Must be overridden.

        May return `None` if the request should not be throttled.
        """
        raise NotImplementedError('.get_cache_key() must be overridden')
    
    def get_rate(self):
        if not getattr(self, 'scope', None):
            msg = ("You must set either `.scope` or `.rate` for '%s' throttle" %
                   self.__class__.__name__)
            raise ImproperlyConfigured(msg)

        try:
            # 獲取在setting里配置的字典中的之,self.scope是 咱寫的luffy
            return self.THROTTLE_RATES[self.scope]
        except KeyError:
            msg = "No default throttle rate set for '%s' scope" % self.scope
            raise ImproperlyConfigured(msg)
    # 解析 3/m這種傳參
    def parse_rate(self, rate):
        """
        Given the request rate string, return a two tuple of:
        <allowed number of requests>, <period of time in seconds>
        """
        if rate is None:
            return (None, None)
        num, period = rate.split('/')
        num_requests = int(num)
        # 只取了第一位,也就是 3/mimmmmmmm也是代表一分鐘
        duration = {'s': 1, 'm': 60, 'h': 3600, 'd': 86400}[period[0]]
        return (num_requests, duration)
    # 邏輯跟咱自定義的相同
    def allow_request(self, request, view):
        """
        Implement the check to see if the request should be throttled.

        On success calls `throttle_success`.
        On failure calls `throttle_failure`.
        """
        if self.rate is None:
            return True

        self.key = self.get_cache_key(request, view)
        if self.key is None:
            return True

        self.history = self.cache.get(self.key, [])
        self.now = self.timer()

        # Drop any requests from the history which have now passed the
        # throttle duration
        while self.history and self.history[-1] <= self.now - self.duration:
            self.history.pop()
        if len(self.history) >= self.num_requests:
            return self.throttle_failure()
        return self.throttle_success()
    # 成功返回true,並且插入到緩存中
    def throttle_success(self):
        """
        Inserts the current request's timestamp along with the key
        into the cache.
        """
        self.history.insert(0, self.now)
        self.cache.set(self.key, self.history, self.duration)
        return True
    # 失敗返回false
    def throttle_failure(self):
        """
        Called when a request to the API has failed due to throttling.
        """
        return False

    def wait(self):
        """
        Returns the recommended next request time in seconds.
        """
        if self.history:
            remaining_duration = self.duration - (self.now - self.history[-1])
        else:
            remaining_duration = self.duration

        available_requests = self.num_requests - len(self.history) + 1
        if available_requests <= 0:
            return None

        return remaining_duration / float(available_requests)
View Code

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 1. 在競賽中,題目:給定兩個整型數a,b,將其交換後輸出。 最優解法:(直接反序輸出) 2. 帶有與、或等操作的表達式,若判定結果已經確定,則不再進行運算,這種策略成為短路(short-circuit)。或許讀者認為,用短路的方法計算邏輯表達式唯一的優點是速度更快,但其實不是。 3. if 和 e ...
  • 準備做一個禁言自動解除的功能,立馬想到了訂單的超時自動解除,剛好最近在看RabbitMQ的實現,於是想用它實現,查詢了相關文檔發現確實可以實現,動手編寫了這篇短文。 準備工作 1、Erlang安裝請參考 "windows下安裝Erlang" 2、mq安裝晴參考 "RabbitMQ安裝" 3、延遲消息 ...
  • 1.多態:是同一個行為具有多個不同表現形式或形態的能力。 多態就是同一個介面,使用不同的實例而執行不同操作,如圖所示: 多態性是對象多種表現形式的體現。 2.多態作用: 1. 消除類型之間的耦合關係 2. 可替換性 3. 可擴充性 4. 介面性 5. 靈活性 6. 簡化性 3.多態的三個必要條件: ...
  • 配置網路代理,解決spring cloud config讀取不到git配置文件的問題。 ...
  • 這次使用分散式事務框架過程中了學習了一些分散式事務知識,所以本文我們就來聊聊分散式事務那些事。首先我們先回顧下什麼是事務。 事務 什麼是事務?這個作為後端開發,日常開發中只要與資料庫有交互,肯定就會使用過事務。現在摘抄一段wiki的解釋,解釋下什麼是事務。 是資料庫管理系統執行過程中的一個邏輯單位, ...
  • 好久以前就聽說了dart和flutter,只是一直沒有時間去研究一下,最近有了些時間就簡單的研究了一下,也算是快速的入門了。dart是Google開發的語言,目前最新的版本為2.1,官網地址https://www.dartlang.org/ 官網截圖 下載dart的sdk 下載flutter的sdk ...
  • 當執行一個搜索時,它將這個搜索請求廣播給所有的索引分片。可以通過提供路由參數來控制要搜索哪些分片。例如,當檢索tweets這個索引時,路由參數可以設置為用戶名: 1. Search 查詢可以提供一個簡單的查詢字元串作為參數,也可以用一個請求體。 1.1. URI Search 這種方式用的很少,就不 ...
  • 裝飾器(重點,難點) 開閉原則: 對功能的擴展開放 對代碼的修改是封閉的 在目標函數前和後插入一段新的代碼.不改變原來的代碼 通用裝飾器寫法: # 存在的意義: 在不破壞原有函數調用的基礎上,給韓式添加新的功能 def wrapper(fn): # fn是目標函數 def inner(*args, ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...