mirror of
https://github.com/NapNeko/NapCatQQ.git
synced 2025-07-19 12:03:37 +00:00
feat: webui login limit
This commit is contained in:
17
src/webui/src/helper/Data.ts
Normal file
17
src/webui/src/helper/Data.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
let LoginRuntime = {
|
||||
LoginCurrentTime: Date.now(),
|
||||
LoginCurrentRate: 0
|
||||
}
|
||||
export const Data = {
|
||||
checkLoginRate: async function (RateLimit: number): Promise<boolean> {
|
||||
if (Date.now() - LoginRuntime.LoginCurrentTime > 1000 * 60) {
|
||||
LoginRuntime.LoginCurrentRate = 0;//超出时间重置限速
|
||||
return true;
|
||||
}
|
||||
if (LoginRuntime.LoginCurrentRate <= RateLimit) {
|
||||
LoginRuntime.LoginCurrentRate++;
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user