blob: ee5988b4b5122e15f10960d4906387e6a0d445f1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
import { PluginManager, PluginType } from "./plugins";
export interface RateLimitConfig {
name: string;
windowMs: number;
maxRequests: number;
}
export type RateLimitResult =
| { allowed: true }
| { allowed: false; resetInSeconds: number };
export interface RateLimitClient {
/**
* Check if a request should be allowed based on rate limiting rules
* @param config Rate limit configuration
* @param key Unique rate limiting key (e.g., "ip:127.0.0.1:path:/api/v1")
* @returns Result indicating if the request is allowed and reset time if not
*/
checkRateLimit(config: RateLimitConfig, key: string): RateLimitResult;
/**
* Reset rate limit for a specific key
* @param config Rate limit configuration
* @param key Unique rate limiting key
*/
reset(config: RateLimitConfig, key: string): void;
/**
* Clear all rate limit entries
*/
clear(): void;
}
export async function getRateLimitClient(): Promise<RateLimitClient | null> {
return PluginManager.getClient(PluginType.RateLimit);
}
|