1pub mod civil;
44pub mod signing;
45pub mod ticket;
46
47use std::collections::BTreeMap;
48use std::sync::Arc;
49
50use arc_swap::ArcSwap;
51pub use ed25519_dalek::VerifyingKey;
55pub use monetize_product::{EntitlementFact, State, TenantId};
56pub use signing::{SignatureError, Snapshot};
57pub use ticket::{verify_ticket, ActorTicket, SeenNonces, PURPOSE_ORDER, PURPOSE_RENEW};
60
61#[derive(Clone, Copy, PartialEq, Eq, Debug)]
63pub enum Action {
64 Write,
66 Read,
68 AnonymousRead,
70 Admin,
72}
73
74#[derive(Clone, PartialEq, Eq, Debug)]
75pub enum Verdict {
76 Allow,
77 Refuse {
78 state: State,
79 reason_line: String,
81 url: String,
83 },
84}
85
86impl Verdict {
87 pub fn is_allowed(&self) -> bool {
88 matches!(self, Verdict::Allow)
89 }
90}
91
92#[derive(Debug, thiserror::Error)]
93pub enum RefreshError {
94 #[error("snapshot is not valid JSON: {0}")]
95 Parse(#[from] serde_json::Error),
96 #[error(transparent)]
97 Signature(#[from] SignatureError),
98 #[error("snapshot issued at {offered} is older than the {held} the cache holds")]
99 Stale { offered: u64, held: u64 },
100}
101
102#[derive(Debug, thiserror::Error)]
103#[error("public key is not a valid Ed25519 point")]
104pub struct KeyError;
105
106struct Facts {
107 issued_unix_ms: u64,
108 by_tenant: BTreeMap<TenantId, EntitlementFact>,
109}
110
111pub struct EntitlementCache {
112 key: VerifyingKey,
113 billing_url: String,
115 facts: ArcSwap<Facts>,
116}
117
118impl EntitlementCache {
119 pub fn new(public_key: &[u8; 32], billing_url: &str) -> Result<Self, KeyError> {
122 let key = VerifyingKey::from_bytes(public_key).map_err(|_| KeyError)?;
123 Ok(Self {
124 key,
125 billing_url: billing_url.to_string(),
126 facts: ArcSwap::from_pointee(Facts { issued_unix_ms: 0, by_tenant: BTreeMap::new() }),
127 })
128 }
129
130 pub fn public_key(&self) -> &VerifyingKey {
131 &self.key
132 }
133
134 pub fn allows(&self, tenant: &TenantId, action: Action) -> Verdict {
136 let facts = self.facts.load();
137 let Some(fact) = facts.by_tenant.get(tenant) else {
138 return Verdict::Allow; };
140 match (fact.state, action) {
141 (State::Free | State::Paid | State::Grace, _) => Verdict::Allow,
142 (State::Suspended | State::Retention, Action::Read) => Verdict::Allow,
143 (state, action) => Verdict::Refuse {
144 state,
145 reason_line: self.reason_line(fact, action),
146 url: self.url_for(tenant),
147 },
148 }
149 }
150
151 pub fn notice(&self, tenant: &TenantId) -> Option<String> {
153 let facts = self.facts.load();
154 let fact = facts.by_tenant.get(tenant)?;
155 if fact.state != State::Grace {
156 return None;
157 }
158 Some(format!("{}; renew at {}", self.expiry_phrase(fact), self.url_for(tenant)))
159 }
160
161 pub fn state(&self, tenant: &TenantId) -> State {
163 self.facts.load().by_tenant.get(tenant).map_or(State::Free, |f| f.state)
164 }
165
166 pub fn fact(&self, tenant: &TenantId) -> Option<EntitlementFact> {
168 self.facts.load().by_tenant.get(tenant).cloned()
169 }
170
171 pub fn issued_unix_ms(&self) -> u64 {
173 self.facts.load().issued_unix_ms
174 }
175
176 pub fn len(&self) -> usize {
177 self.facts.load().by_tenant.len()
178 }
179
180 pub fn is_empty(&self) -> bool {
181 self.len() == 0
182 }
183
184 pub fn refresh(&self, snapshot_bytes: &[u8]) -> Result<usize, RefreshError> {
188 let snap: Snapshot = serde_json::from_slice(snapshot_bytes)?;
189 signing::verify_snapshot(&snap, &self.key)?;
190 let held = self.facts.load().issued_unix_ms;
191 if snap.issued_unix_ms < held {
192 return Err(RefreshError::Stale { offered: snap.issued_unix_ms, held });
193 }
194 let by_tenant: BTreeMap<TenantId, EntitlementFact> =
195 snap.facts.into_iter().map(|f| (f.tenant.clone(), f)).collect();
196 let n = by_tenant.len();
197 self.facts.store(Arc::new(Facts { issued_unix_ms: snap.issued_unix_ms, by_tenant }));
198 Ok(n)
199 }
200
201 pub fn push(&self, fact: EntitlementFact) -> Result<(), SignatureError> {
203 signing::verify_fact(&fact, &self.key)?;
204 let current = self.facts.load_full();
205 let mut by_tenant = current.by_tenant.clone();
206 by_tenant.insert(fact.tenant.clone(), fact);
207 self.facts.store(Arc::new(Facts { issued_unix_ms: current.issued_unix_ms, by_tenant }));
208 Ok(())
209 }
210
211 fn url_for(&self, tenant: &TenantId) -> String {
212 self.billing_url.replace("{tenant}", &tenant.0)
213 }
214
215 fn expiry_phrase(&self, fact: &EntitlementFact) -> String {
219 let what = if fact.plan.is_empty() { "entitlement".to_owned() } else { format!("order {}", fact.plan) };
220 match fact.paid_until_unix_ms {
221 Some(until) => format!("{what} expired {}", civil::iso_date(until)),
222 None => format!("{what} suspended by operator"),
223 }
224 }
225
226 fn reason_line(&self, fact: &EntitlementFact, action: Action) -> String {
227 let url = self.url_for(&fact.tenant);
228 let expiry = self.expiry_phrase(fact);
229 let what = match (fact.state, action) {
230 (State::Retention, Action::Write) => "writes closed, data kept for export",
231 (_, Action::Write) => "writes closed",
232 (_, Action::AnonymousRead) => "anonymous access closed",
233 (_, Action::Admin) => "settings closed",
234 (_, Action::Read) => unreachable!("Read is allowed in every state"),
235 };
236 format!("{expiry}: {what}; renew at {url}")
237 }
238}
239
240#[cfg(test)]
241mod tests {
242 use super::*;
243 use ed25519_dalek::{Signer, SigningKey};
244
245 fn key() -> SigningKey {
246 SigningKey::generate(&mut rand::rngs::OsRng)
247 }
248
249 fn fact(tenant: &str, state: State, paid_until: Option<u64>) -> EntitlementFact {
250 EntitlementFact {
251 tenant: TenantId(tenant.into()),
252 plan: "10gb".into(),
253 state,
254 paid_until_unix_ms: paid_until,
255 caps: BTreeMap::from([("pack_bytes".to_string(), 10 << 30)]),
256 source: "payment:mock:gunnar/team/sub/2026-09-03".into(),
257 signature: vec![],
258 }
259 }
260
261 fn signed(key: &SigningKey, mut f: EntitlementFact) -> EntitlementFact {
262 f.signature = key.sign(&signing::fact_message(&f)).to_bytes().to_vec();
263 f
264 }
265
266 fn snapshot(key: &SigningKey, issued: u64, facts: Vec<EntitlementFact>) -> Vec<u8> {
267 let signature = key.sign(&signing::snapshot_message(issued, &facts)).to_bytes().to_vec();
268 serde_json::to_vec(&Snapshot { issued_unix_ms: issued, facts, signature }).unwrap()
269 }
270
271 fn cache(key: &SigningKey) -> EntitlementCache {
272 EntitlementCache::new(&key.verifying_key().to_bytes(), "https://gunnar.rs/billing/{tenant}").unwrap()
273 }
274
275 const OCT_1_2026: u64 = 1_790_812_800_000;
276
277 #[test]
278 fn genuine_snapshot_is_accepted_and_answers() {
279 let k = key();
280 let c = cache(&k);
281 let bytes = snapshot(&k, 10, vec![signed(&k, fact("team/sub", State::Suspended, Some(OCT_1_2026)))]);
282 assert_eq!(c.refresh(&bytes).unwrap(), 1);
283 assert_eq!(c.state(&TenantId("team/sub".into())), State::Suspended);
284 assert_eq!(c.issued_unix_ms(), 10);
285 }
286
287 #[test]
288 fn forged_snapshot_is_rejected_and_changes_nothing() {
289 let k = key();
290 let forger = key();
291 let c = cache(&k);
292 let t = TenantId("team/sub".into());
293 let mut forged = signed(&forger, fact("team/sub", State::Paid, Some(OCT_1_2026)));
295 let bytes = snapshot(&k, 10, vec![forged.clone()]);
296 assert!(matches!(c.refresh(&bytes), Err(RefreshError::Signature(SignatureError::Fact(_)))));
297 forged = signed(&k, forged);
299 let bytes = snapshot(&forger, 10, vec![forged.clone()]);
300 assert!(matches!(c.refresh(&bytes), Err(RefreshError::Signature(SignatureError::Envelope))));
301 forged.state = State::Free;
303 assert!(matches!(c.push(forged), Err(SignatureError::Fact(_))));
304 assert!(matches!(c.refresh(b"not json"), Err(RefreshError::Parse(_))));
306 assert!(c.is_empty());
307 assert_eq!(c.state(&t), State::Free);
308 }
309
310 #[test]
311 fn stale_snapshot_is_refused_newer_one_is_taken() {
312 let k = key();
313 let c = cache(&k);
314 c.refresh(&snapshot(&k, 20, vec![])).unwrap();
315 assert!(matches!(c.refresh(&snapshot(&k, 19, vec![])), Err(RefreshError::Stale { offered: 19, held: 20 })));
316 c.refresh(&snapshot(&k, 21, vec![])).unwrap();
317 assert_eq!(c.issued_unix_ms(), 21);
318 }
319
320 #[test]
321 fn push_replaces_one_tenant_and_keeps_the_rest() {
322 let k = key();
323 let c = cache(&k);
324 let a = TenantId("a".into());
325 let b = TenantId("b".into());
326 c.refresh(&snapshot(&k, 1, vec![signed(&k, fact("a", State::Paid, None)), signed(&k, fact("b", State::Paid, None))])).unwrap();
327 c.push(signed(&k, fact("a", State::Suspended, Some(OCT_1_2026)))).unwrap();
328 assert_eq!(c.state(&a), State::Suspended);
329 assert_eq!(c.state(&b), State::Paid);
330 assert_eq!(c.len(), 2);
331 }
332
333 #[test]
335 fn verdict_table() {
336 use Action::*;
337 let k = key();
338 let c = cache(&k);
339 let t = TenantId("team/sub".into());
340 let rows: [(State, [bool; 4]); 5] = [
341 (State::Free, [true, true, true, true]),
342 (State::Paid, [true, true, true, true]),
343 (State::Grace, [true, true, true, true]),
344 (State::Suspended, [false, true, false, false]),
345 (State::Retention, [false, true, false, false]),
346 ];
347 for (state, expect) in rows {
348 c.push(signed(&k, fact("team/sub", state, Some(OCT_1_2026)))).unwrap();
349 for (action, allowed) in [Write, Read, AnonymousRead, Admin].into_iter().zip(expect) {
350 let v = c.allows(&t, action);
351 assert_eq!(v.is_allowed(), allowed, "{state:?} / {action:?} gave {v:?}");
352 if let Verdict::Refuse { state: s, reason_line, url } = &v {
353 assert_eq!(*s, state);
354 assert_eq!(url, "https://gunnar.rs/billing/team/sub");
355 assert!(reason_line.contains("order 10gb expired 2026-10-01"), "{reason_line}");
356 assert!(reason_line.ends_with("; renew at https://gunnar.rs/billing/team/sub"), "{reason_line}");
357 }
358 }
359 assert_eq!(c.notice(&t).is_some(), state == State::Grace, "{state:?} notice");
360 }
361 }
362
363 #[test]
364 fn refuse_twin_suspended_write_names_the_reason_and_unknown_tenant_is_free() {
365 let k = key();
366 let c = cache(&k);
367 let t = TenantId("team/sub".into());
368 c.push(signed(&k, fact("team/sub", State::Suspended, Some(OCT_1_2026)))).unwrap();
369 assert_eq!(
370 c.allows(&t, Action::Write),
371 Verdict::Refuse {
372 state: State::Suspended,
373 reason_line: "order 10gb expired 2026-10-01: writes closed; renew at https://gunnar.rs/billing/team/sub".into(),
374 url: "https://gunnar.rs/billing/team/sub".into(),
375 }
376 );
377 let op = signed(&k, fact("ops", State::Suspended, None));
378 c.push(op).unwrap();
379 assert!(matches!(c.allows(&TenantId("ops".into()), Action::Write), Verdict::Refuse { reason_line, .. } if reason_line.starts_with("order 10gb suspended by operator")));
380 assert_eq!(c.allows(&TenantId("nobody".into()), Action::Write), Verdict::Allow);
381 assert_eq!(c.state(&TenantId("nobody".into())), State::Free);
382 }
383}