mirror of
https://github.com/BradNut/example-sveltekit-email-password-webauthn
synced 2025-09-08 17:40:27 +00:00
update rate limit
This commit is contained in:
parent
1435147dcf
commit
eadc5b2e6b
1 changed files with 2 additions and 6 deletions
|
|
@ -34,12 +34,9 @@ export class RefillingTokenBucket<_Key> {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const refill = Math.floor((now - bucket.refilledAt) / (this.refillIntervalSeconds * 1000));
|
const refill = Math.floor((now - bucket.refilledAt) / (this.refillIntervalSeconds * 1000));
|
||||||
if (refill > 0) {
|
|
||||||
bucket.count = Math.min(bucket.count + refill, this.max);
|
bucket.count = Math.min(bucket.count + refill, this.max);
|
||||||
bucket.refilledAt = now;
|
bucket.refilledAt = now;
|
||||||
}
|
|
||||||
if (bucket.count < cost) {
|
if (bucket.count < cost) {
|
||||||
this.storage.set(key, bucket);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bucket.count -= cost;
|
bucket.count -= cost;
|
||||||
|
|
@ -121,7 +118,6 @@ export class ExpiringTokenBucket<_Key> {
|
||||||
bucket.count = this.max;
|
bucket.count = this.max;
|
||||||
}
|
}
|
||||||
if (bucket.count < cost) {
|
if (bucket.count < cost) {
|
||||||
this.storage.set(key, bucket);
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
bucket.count -= cost;
|
bucket.count -= cost;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue