1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
use crate::middleware::{Middleware, MiddlewareFuture, MiddlewareResult};
use ratelimit_meter::{DirectRateLimiter, KeyedRateLimiter, GCRA};
use std::{
    num::NonZeroU32,
    sync::{Arc, Mutex},
    time::Duration,
};
use tgbot::types::{Integer, Update};

pub use nonzero_ext::nonzero;

/// Limits number of updates per time
pub struct RateLimitMiddleware {
    rate_limiter: RateLimiter,
}

impl RateLimitMiddleware {
    /// Limit all updates
    ///
    /// # Arguments
    ///
    /// - capacity - Number of updates
    /// - seconds - Duration in seconds
    pub fn direct(capacity: NonZeroU32, seconds: u64) -> Self {
        RateLimitMiddleware {
            rate_limiter: RateLimiter::Direct(DirectRateLimiter::new(capacity, Duration::from_secs(seconds))),
        }
    }

    /// Limit updates for each user or chat
    ///
    /// # Arguments
    ///
    /// - key - User or Chat
    /// - capacity - Number of updates
    /// - seconds - Duration in seconds
    /// - on_missing - Allow or deny update when user or chat not found
    ///                (got an update from channel or inline query, etc...)
    pub fn keyed(key: RateLimitKey, capacity: NonZeroU32, seconds: u64, on_missing: bool) -> Self {
        RateLimitMiddleware {
            rate_limiter: RateLimiter::Keyed {
                limiter: Arc::new(Mutex::new(KeyedRateLimiter::new(
                    capacity,
                    Duration::from_secs(seconds),
                ))),
                on_missing,
                key,
            },
        }
    }
}

impl<C> Middleware<C> for RateLimitMiddleware {
    fn before(&mut self, _context: &mut C, update: &Update) -> MiddlewareFuture {
        let should_pass = match self.rate_limiter {
            RateLimiter::Direct(ref mut limiter) => limiter.check().is_ok(),
            RateLimiter::Keyed {
                ref limiter,
                key,
                on_missing,
            } => {
                let mut limiter = limiter.lock().unwrap();
                let val = match key {
                    RateLimitKey::Chat => update.get_chat_id(),
                    RateLimitKey::User => update.get_user().map(|u| u.id),
                };
                if let Some(val) = val {
                    limiter.check(val).is_ok()
                } else {
                    on_missing
                }
            }
        };
        if should_pass {
            MiddlewareResult::Continue
        } else {
            MiddlewareResult::Stop
        }
        .into()
    }
}

enum RateLimiter {
    Direct(DirectRateLimiter<GCRA>),
    Keyed {
        limiter: Arc<Mutex<KeyedRateLimiter<Integer, GCRA>>>,
        key: RateLimitKey,
        on_missing: bool,
    },
}

/// Rate limit key
#[derive(Copy, Clone, Debug)]
pub enum RateLimitKey {
    /// Limit per chat
    Chat,
    /// Limit per user
    User,
}