ratelimit: switch to token-based rate limiting

allows for N actions per minute

Changelog-Changed: Switched to token-based ratelimiting
Closes: https://github.com/damus-io/noteguard/issues/2
This commit is contained in:
William Casarin 2024-07-08 14:12:38 -07:00
parent c951f0abb2
commit ddff59a20a
4 changed files with 57 additions and 27 deletions

View file

@ -3,20 +3,25 @@ use serde::Deserialize;
use std::collections::HashMap;
use std::time::{Duration, Instant};
pub struct RateInfo {
pub last_note: Instant,
pub struct Tokens {
pub tokens: i32,
pub last_post: Instant,
}
#[derive(Deserialize, Default)]
pub struct RateLimit {
pub delay_seconds: u64,
pub posts_per_minute: i32,
pub whitelist: Option<Vec<String>>,
#[serde(skip)]
pub sources: HashMap<String, RateInfo>,
pub sources: HashMap<String, Tokens>,
}
impl NoteFilter for RateLimit {
fn name(&self) -> &'static str {
"ratelimit"
}
fn filter_note(&mut self, msg: &InputMessage) -> OutputMessage {
if let Some(whitelist) = &self.whitelist {
if whitelist.contains(&msg.source_info) {
@ -24,31 +29,47 @@ impl NoteFilter for RateLimit {
}
}
if self.sources.contains_key(&msg.source_info) {
let now = Instant::now();
let entry = self.sources.get_mut(&msg.source_info).expect("impossiburu");
if now - entry.last_note < Duration::from_secs(self.delay_seconds) {
return OutputMessage::new(
msg.event.id.clone(),
Action::Reject,
Some("rate-limited: you are noting too fast".to_string()),
);
} else {
entry.last_note = Instant::now();
return OutputMessage::new(msg.event.id.clone(), Action::Accept, None);
}
} else {
if !self.sources.contains_key(&msg.source_info) {
self.sources.insert(
msg.source_info.to_owned(),
RateInfo {
last_note: Instant::now(),
Tokens {
last_post: Instant::now(),
tokens: self.posts_per_minute,
},
);
return OutputMessage::new(msg.event.id.clone(), Action::Accept, None);
}
}
fn name(&self) -> &'static str {
"ratelimit"
let entry = self.sources.get_mut(&msg.source_info).expect("impossiburu");
let now = Instant::now();
let mut diff = now - entry.last_post;
let min = Duration::from_secs(60);
if diff > min {
diff = min;
}
let percent = (diff.as_secs() as f32) / 60.0;
let new_tokens = (percent * self.posts_per_minute as f32).floor() as i32;
entry.tokens += new_tokens - 1;
if entry.tokens <= 0 {
entry.tokens = 0;
}
if entry.tokens >= self.posts_per_minute {
entry.tokens = self.posts_per_minute - 1;
}
if entry.tokens == 0 {
return OutputMessage::new(
msg.event.id.clone(),
Action::Reject,
Some("rate-limited: you are noting too much".to_string()),
);
}
entry.last_post = now;
OutputMessage::new(msg.event.id.clone(), Action::Accept, None)
}
}