mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-14 13:36:59 +00:00
71 lines
1.9 KiB
Rust
71 lines
1.9 KiB
Rust
use async_std::sync::Mutex;
|
|
use mongodb::bson::doc;
|
|
use revolt_quark::{Error, Result};
|
|
use rocket::http::Status;
|
|
use rocket::request::{FromRequest, Outcome};
|
|
use serde::{Deserialize, Serialize};
|
|
use validator::Validate;
|
|
|
|
#[derive(Validate, Serialize, Deserialize)]
|
|
pub struct IdempotencyKey {
|
|
#[validate(length(min = 1, max = 64))]
|
|
key: String,
|
|
}
|
|
|
|
lazy_static! {
|
|
static ref TOKEN_CACHE: Mutex<lru::LruCache<String, ()>> = Mutex::new(lru::LruCache::new(100));
|
|
}
|
|
|
|
impl IdempotencyKey {
|
|
// Backwards compatibility.
|
|
// Issue #109
|
|
pub async fn consume_nonce(&mut self, v: Option<String>) -> Result<()> {
|
|
if let Some(v) = v {
|
|
let mut cache = TOKEN_CACHE.lock().await;
|
|
if cache.get(&v).is_some() {
|
|
return Err(Error::DuplicateNonce);
|
|
}
|
|
|
|
cache.put(v.clone(), ());
|
|
self.key = v;
|
|
}
|
|
|
|
Ok(())
|
|
}
|
|
|
|
pub fn into_key(self) -> String {
|
|
self.key
|
|
}
|
|
}
|
|
|
|
#[async_trait]
|
|
impl<'r> FromRequest<'r> for IdempotencyKey {
|
|
type Error = Error;
|
|
|
|
async fn from_request(request: &'r rocket::Request<'_>) -> Outcome<Self, Self::Error> {
|
|
if let Some(key) = request
|
|
.headers()
|
|
.get("Idempotency-Key")
|
|
.next()
|
|
.map(|k| k.to_string())
|
|
{
|
|
let idempotency = IdempotencyKey { key };
|
|
if let Err(error) = idempotency.validate() {
|
|
return Outcome::Failure((Status::BadRequest, Error::FailedValidation { error }));
|
|
}
|
|
|
|
let mut cache = TOKEN_CACHE.lock().await;
|
|
if cache.get(&idempotency.key).is_some() {
|
|
return Outcome::Failure((Status::Conflict, Error::DuplicateNonce));
|
|
}
|
|
|
|
cache.put(idempotency.key.clone(), ());
|
|
return Outcome::Success(idempotency);
|
|
}
|
|
|
|
Outcome::Success(IdempotencyKey {
|
|
key: ulid::Ulid::new().to_string(),
|
|
})
|
|
}
|
|
}
|