fix: long term / short term limitがないときでもそれぞれ用のnew Limiterとlimiter.getが呼ばれる問題

This commit is contained in:
anatawa12 2024-06-14 17:18:33 +09:00
parent 03c2919b69
commit 28c8d318e1
No known key found for this signature in database
GPG Key ID: 9CA909848B8E4EA6
1 changed files with 22 additions and 20 deletions

View File

@ -32,13 +32,13 @@ export class RateLimiterService {
@bindThis
public limit(limitation: IEndpointMeta['limit'] & { key: NonNullable<string> }, actor: string, factor = 1) {
{
if (this.disabled) {
return Promise.resolve();
}
if (this.disabled) {
return Promise.resolve();
}
// Short-term limit
const min = new Promise<void>((ok, reject) => {
// Short-term limit
const min = () => {
return new Promise<void>((ok, reject) => {
const minIntervalLimiter = new Limiter({
id: `${actor}:${limitation.key}:min`,
duration: limitation.minInterval! * factor,
@ -57,16 +57,18 @@ export class RateLimiterService {
return reject({ code: 'BRIEF_REQUEST_INTERVAL', info });
} else {
if (hasLongTermLimit) {
return max.then(ok, reject);
return max().then(ok, reject);
} else {
return ok();
}
}
});
});
};
// Long term limit
const max = new Promise<void>((ok, reject) => {
// Long term limit
const max = () => {
return new Promise<void>((ok, reject) => {
const limiter = new Limiter({
id: `${actor}:${limitation.key}`,
duration: limitation.duration! * factor,
@ -88,20 +90,20 @@ export class RateLimiterService {
}
});
});
};
const hasShortTermLimit = typeof limitation.minInterval === 'number';
const hasShortTermLimit = typeof limitation.minInterval === 'number';
const hasLongTermLimit =
typeof limitation.duration === 'number' &&
typeof limitation.max === 'number';
const hasLongTermLimit =
typeof limitation.duration === 'number' &&
typeof limitation.max === 'number';
if (hasShortTermLimit) {
return min;
} else if (hasLongTermLimit) {
return max;
} else {
return Promise.resolve();
}
if (hasShortTermLimit) {
return min();
} else if (hasLongTermLimit) {
return max();
} else {
return Promise.resolve();
}
}
}