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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
use httpdate::parse_http_date;
use std::time::{Duration, SystemTime};
use crate::protocol::EnvelopeItem;
use crate::Envelope;
#[derive(Debug, Default)]
pub struct RateLimiter {
global: Option<SystemTime>,
error: Option<SystemTime>,
session: Option<SystemTime>,
transaction: Option<SystemTime>,
attachment: Option<SystemTime>,
}
impl RateLimiter {
pub fn new() -> Self {
Self::default()
}
pub fn update_from_retry_after(&mut self, header: &str) {
let new_time = if let Ok(value) = header.parse::<f64>() {
SystemTime::now() + Duration::from_secs(value.ceil() as u64)
} else if let Ok(value) = parse_http_date(header) {
value
} else {
SystemTime::now() + Duration::from_secs(60)
};
self.global = Some(new_time);
}
pub fn update_from_sentry_header(&mut self, header: &str) {
let mut parse_group = |group: &str| {
let mut splits = group.split(':');
let seconds = splits.next()?.parse::<f64>().ok()?;
let categories = splits.next()?;
let _scope = splits.next()?;
let new_time = Some(SystemTime::now() + Duration::from_secs(seconds.ceil() as u64));
if categories.is_empty() {
self.global = new_time;
}
for category in categories.split(';') {
match category {
"error" => self.error = new_time,
"session" => self.session = new_time,
"transaction" => self.transaction = new_time,
"attachment" => self.attachment = new_time,
_ => {}
}
}
Some(())
};
for group in header.split(',') {
parse_group(group.trim());
}
}
pub fn update_from_429(&mut self) {
self.global = Some(SystemTime::now() + Duration::from_secs(60));
}
pub fn is_disabled(&self, category: RateLimitingCategory) -> Option<Duration> {
if let Some(ts) = self.global {
let time_left = ts.duration_since(SystemTime::now()).ok();
if time_left.is_some() {
return time_left;
}
}
let time_left = match category {
RateLimitingCategory::Any => self.global,
RateLimitingCategory::Error => self.error,
RateLimitingCategory::Session => self.session,
RateLimitingCategory::Transaction => self.transaction,
RateLimitingCategory::Attachment => self.attachment,
}?;
time_left.duration_since(SystemTime::now()).ok()
}
pub fn is_enabled(&self, category: RateLimitingCategory) -> bool {
self.is_disabled(category).is_none()
}
pub fn filter_envelope(&self, envelope: Envelope) -> Option<Envelope> {
envelope.filter(|item| {
self.is_enabled(match item {
EnvelopeItem::Event(_) => RateLimitingCategory::Error,
EnvelopeItem::SessionUpdate(_) | EnvelopeItem::SessionAggregates(_) => {
RateLimitingCategory::Session
}
EnvelopeItem::Transaction(_) => RateLimitingCategory::Transaction,
EnvelopeItem::Attachment(_) => RateLimitingCategory::Attachment,
_ => RateLimitingCategory::Any,
})
})
}
}
#[non_exhaustive]
pub enum RateLimitingCategory {
Any,
Error,
Session,
Transaction,
Attachment,
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_sentry_header() {
let mut rl = RateLimiter::new();
rl.update_from_sentry_header("120:error:project:reason, 60:session:foo");
assert!(rl.is_disabled(RateLimitingCategory::Error).unwrap() <= Duration::from_secs(120));
assert!(rl.is_disabled(RateLimitingCategory::Session).unwrap() <= Duration::from_secs(60));
assert!(rl.is_disabled(RateLimitingCategory::Transaction).is_none());
assert!(rl.is_disabled(RateLimitingCategory::Any).is_none());
rl.update_from_sentry_header(
r#"
30::bar,
120:invalid:invalid,
4711:foo;bar;baz;security:project
"#,
);
assert!(
rl.is_disabled(RateLimitingCategory::Transaction).unwrap() <= Duration::from_secs(30)
);
assert!(rl.is_disabled(RateLimitingCategory::Any).unwrap() <= Duration::from_secs(30));
}
#[test]
fn test_retry_after() {
let mut rl = RateLimiter::new();
rl.update_from_retry_after("60");
assert!(rl.is_disabled(RateLimitingCategory::Error).unwrap() <= Duration::from_secs(60));
assert!(rl.is_disabled(RateLimitingCategory::Session).unwrap() <= Duration::from_secs(60));
assert!(
rl.is_disabled(RateLimitingCategory::Transaction).unwrap() <= Duration::from_secs(60)
);
assert!(rl.is_disabled(RateLimitingCategory::Any).unwrap() <= Duration::from_secs(60));
}
}