chorus/src/limit.rs

162 lines
6.0 KiB
Rust
Raw Normal View History

use crate::api::limits::Config;
2023-04-11 21:27:06 +02:00
use reqwest::{Client, Request, RequestBuilder};
use serde_json::from_str;
2023-04-07 21:51:50 +02:00
use std::collections::VecDeque;
2023-04-08 14:51:36 +02:00
// Note: There seem to be some overlapping request limiters. We need to make sure that sending a
// request checks for all the request limiters that apply, and blocks if any of the limiters are 0
pub struct Limit {
limit: u64,
remaining: u64,
reset: u64,
bucket: String,
}
impl std::fmt::Display for Limit {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(
f,
"Bucket: {}, Limit: {}, Remaining: {}, Reset: {}",
self.bucket, self.limit, self.remaining, self.reset
)
}
}
2023-04-07 21:51:50 +02:00
pub struct LimitedRequester {
http: Client,
2023-04-11 21:27:37 +02:00
limits: Vec<Limit>, // TODO: Replace with all Limits
requests: VecDeque<Request>,
last_reset_epoch: i64,
}
2023-04-07 21:51:50 +02:00
impl LimitedRequester {
/// Create a new `LimitedRequester`. `LimitedRequester`s use a `VecDeque` to store requests and
/// send them to the server using a `Client`. It keeps track of the remaining requests that can
/// be send within the `Limit` of an external API Ratelimiter, and looks at the returned request
/// headers to see if it can find Ratelimit info to update itself.
2023-04-08 14:51:36 +02:00
pub async fn new(api_url: String) -> Self {
2023-04-07 21:51:50 +02:00
LimitedRequester {
limits: LimitedRequester::check_limits(api_url).await,
http: Client::new(),
2023-04-07 21:51:50 +02:00
requests: VecDeque::new(),
last_reset_epoch: chrono::Utc::now().timestamp(),
}
}
2023-04-10 17:35:04 +02:00
/// check_limits uses the API to get the current request limits of the instance.
/// It returns a `Vec` of `Limit`s, which can be used to check if a request can be sent.
pub async fn check_limits(api_url: String) -> Vec<Limit> {
let client = Client::new();
2023-04-10 17:35:04 +02:00
let url_parsed = crate::URLBundle::parse_url(api_url) + "/policies/instance/limits";
let result = client
.get(url_parsed)
.send()
.await
.unwrap_or_else(|e| panic!("An error occured while performing the request: {}", e))
.text()
.await
.unwrap_or_else(|e| {
panic!(
"An error occured while parsing the request body string: {}",
e
)
});
let config: Config = from_str(&result).unwrap();
2023-04-10 14:18:48 +02:00
let mut limit_vector = Vec::new();
if !config.rate.enabled {
2023-04-11 21:27:06 +02:00
// The different rate limit buckets, except for the absoluteRate ones. These will be
// handled seperately.
let types = [
2023-04-11 21:27:06 +02:00
"ip",
"auth.login",
"auth.register",
"global",
"error",
"guild",
"webhook",
"channel",
];
for type_ in types.iter() {
limit_vector.push(Limit {
limit: u64::MAX,
remaining: u64::MAX,
reset: 1,
2023-04-11 21:27:06 +02:00
bucket: type_.to_string(),
});
}
} else {
limit_vector.push(Limit {
limit: config.rate.ip.count,
remaining: config.rate.ip.count,
reset: config.rate.ip.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("ip"),
});
limit_vector.push(Limit {
limit: config.rate.global.count,
remaining: config.rate.global.count,
reset: config.rate.global.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("global"),
});
limit_vector.push(Limit {
limit: config.rate.error.count,
remaining: config.rate.error.count,
reset: config.rate.error.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("error"),
});
limit_vector.push(Limit {
limit: config.rate.routes.guild.count,
remaining: config.rate.routes.guild.count,
reset: config.rate.routes.guild.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("guild"),
});
limit_vector.push(Limit {
limit: config.rate.routes.webhook.count,
remaining: config.rate.routes.webhook.count,
reset: config.rate.routes.webhook.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("webhook"),
});
limit_vector.push(Limit {
limit: config.rate.routes.channel.count,
remaining: config.rate.routes.channel.count,
reset: config.rate.routes.channel.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("channel"),
});
limit_vector.push(Limit {
limit: config.rate.routes.auth.login.count,
remaining: config.rate.routes.auth.login.count,
reset: config.rate.routes.auth.login.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("auth.login"),
});
limit_vector.push(Limit {
limit: config.rate.routes.auth.register.count,
remaining: config.rate.routes.auth.register.count,
reset: config.rate.routes.auth.register.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("auth.register"),
});
}
if config.absoluteRate.register.enabled {
limit_vector.push(Limit {
limit: config.absoluteRate.register.limit,
remaining: config.absoluteRate.register.limit,
reset: config.absoluteRate.register.window,
bucket: String::from("absoluteRate.register"),
});
}
if config.absoluteRate.sendMessage.enabled {
limit_vector.push(Limit {
limit: config.absoluteRate.sendMessage.limit,
remaining: config.absoluteRate.sendMessage.limit,
reset: config.absoluteRate.sendMessage.window,
2023-04-11 21:27:06 +02:00
bucket: String::from("absoluteRate.messages"),
});
}
limit_vector
}
}