Last active
March 1, 2022 21:55
-
-
Save brandon-lockaby/7339587 to your computer and use it in GitHub Desktop.
RateLimit.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var RateLimit = function(interval_ms) { | |
this._interval_ms = interval_ms || 0; // (0 means no limit) | |
this._after = 0; | |
}; | |
RateLimit.prototype.attempt = function(time) { | |
var time = time || Date.now(); | |
if(time < this._after) return false; | |
this._after = time + this._interval_ms; | |
return true; | |
}; | |
RateLimit.prototype.setInterval = function(interval_ms) { | |
this._after += interval_ms - this._interval_ms; | |
this._interval_ms = interval_ms; | |
}; | |
var RateLimitChain = function(num, interval_ms) { | |
this.setNumAndInterval(num, interval_ms); | |
}; | |
RateLimitChain.prototype.attempt = function(time) { | |
var time = time || Date.now(); | |
for(var i = 0; i < this._chain.length; i++) { | |
if(this._chain[i].attempt(time)) return true; | |
} | |
return false; | |
}; | |
RateLimitChain.prototype.setNumAndInterval = function(num, interval_ms) { | |
this._chain = []; | |
for(var i = 0; i < num; i++) { | |
this._chain.push(new RateLimit(interval_ms)); | |
} | |
}; | |
var DataRateLimit = function(limit, interval_ms) { | |
this._limit = limit; | |
this._interval_ms = interval_ms || 0; // 0: per-attempt | |
this._after = 0; | |
this._size = 0; | |
}; | |
DataRateLimit.prototype.attempt = function(size, time) { | |
var time = time || Date.now(); | |
if(time >= this._after) { | |
this._size = 0; | |
this._after = time + this._interval_ms; | |
} | |
if(this._size + size <= this._limit) { | |
this._size += size; | |
return true; | |
} else { | |
return false; | |
} | |
}; | |
var exports = typeof module !== "undefined" ? module.exports : this; | |
exports.RateLimit = RateLimit; | |
exports.RateLimitChain = RateLimitChain; | |
exports.DataRateLimit = DataRateLimit; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment