2022-03-18 18:00:33 +01:00
|
|
|
use std::{future::Future, pin::Pin, rc::Rc};
|
|
|
|
|
|
|
|
use actix_utils::future::{ok, Ready};
|
|
|
|
use actix_web::{
|
|
|
|
body::EitherBody,
|
|
|
|
dev::{forward_ready, Service, ServiceRequest, ServiceResponse, Transform},
|
2022-07-31 04:03:43 +02:00
|
|
|
http::StatusCode,
|
2022-03-18 18:00:33 +01:00
|
|
|
web, Error, HttpResponse,
|
|
|
|
};
|
|
|
|
|
2022-08-28 21:49:14 +02:00
|
|
|
use crate::{Error as LimitationError, Limiter};
|
2022-03-18 18:00:33 +01:00
|
|
|
|
2022-03-20 01:40:34 +01:00
|
|
|
/// Rate limit middleware.
|
2022-07-31 04:03:43 +02:00
|
|
|
#[derive(Debug, Default)]
|
|
|
|
#[non_exhaustive]
|
2022-03-18 18:00:33 +01:00
|
|
|
pub struct RateLimiter;
|
|
|
|
|
|
|
|
impl<S, B> Transform<S, ServiceRequest> for RateLimiter
|
|
|
|
where
|
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
|
|
|
type Response = ServiceResponse<EitherBody<B>>;
|
|
|
|
type Error = Error;
|
|
|
|
type Transform = RateLimiterMiddleware<S>;
|
2022-03-20 01:40:34 +01:00
|
|
|
type InitError = ();
|
2022-03-18 18:00:33 +01:00
|
|
|
type Future = Ready<Result<Self::Transform, Self::InitError>>;
|
|
|
|
|
|
|
|
fn new_transform(&self, service: S) -> Self::Future {
|
|
|
|
ok(RateLimiterMiddleware {
|
|
|
|
service: Rc::new(service),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-20 01:40:34 +01:00
|
|
|
/// Rate limit middleware service.
|
|
|
|
#[derive(Debug)]
|
2022-03-18 18:00:33 +01:00
|
|
|
pub struct RateLimiterMiddleware<S> {
|
|
|
|
service: Rc<S>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<S, B> Service<ServiceRequest> for RateLimiterMiddleware<S>
|
|
|
|
where
|
|
|
|
S: Service<ServiceRequest, Response = ServiceResponse<B>, Error = Error> + 'static,
|
|
|
|
S::Future: 'static,
|
|
|
|
B: 'static,
|
|
|
|
{
|
|
|
|
type Response = ServiceResponse<EitherBody<B>>;
|
|
|
|
type Error = Error;
|
|
|
|
type Future = Pin<Box<dyn Future<Output = Result<Self::Response, Self::Error>>>>;
|
|
|
|
|
|
|
|
forward_ready!(service);
|
|
|
|
|
|
|
|
fn call(&self, req: ServiceRequest) -> Self::Future {
|
2024-02-14 02:19:29 +01:00
|
|
|
// A misconfiguration of the Actix App will result in a **runtime** failure, so the expect
|
2022-03-18 18:00:33 +01:00
|
|
|
// method description is important context for the developer.
|
|
|
|
let limiter = req
|
|
|
|
.app_data::<web::Data<Limiter>>()
|
|
|
|
.expect("web::Data<Limiter> should be set in app data for RateLimiter middleware")
|
|
|
|
.clone();
|
|
|
|
|
2022-09-11 01:02:54 +02:00
|
|
|
let key = (limiter.get_key_fn)(&req);
|
2022-03-18 18:00:33 +01:00
|
|
|
let service = Rc::clone(&self.service);
|
2022-03-20 01:40:34 +01:00
|
|
|
|
2022-03-18 18:00:33 +01:00
|
|
|
let key = match key {
|
|
|
|
Some(key) => key,
|
2022-07-31 04:03:43 +02:00
|
|
|
None => {
|
2022-09-11 01:02:54 +02:00
|
|
|
return Box::pin(async move {
|
|
|
|
service
|
|
|
|
.call(req)
|
|
|
|
.await
|
|
|
|
.map(ServiceResponse::map_into_left_body)
|
|
|
|
});
|
2022-07-31 04:03:43 +02:00
|
|
|
}
|
2022-03-18 18:00:33 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
Box::pin(async move {
|
|
|
|
let status = limiter.count(key.to_string()).await;
|
2022-03-20 01:40:34 +01:00
|
|
|
|
2022-08-28 21:49:14 +02:00
|
|
|
if let Err(err) = status {
|
|
|
|
match err {
|
|
|
|
LimitationError::LimitExceeded(_) => {
|
|
|
|
log::warn!("Rate limit exceed error for {}", key);
|
2022-03-20 01:40:34 +01:00
|
|
|
|
2022-08-28 21:49:14 +02:00
|
|
|
Ok(req.into_response(
|
|
|
|
HttpResponse::new(StatusCode::TOO_MANY_REQUESTS).map_into_right_body(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
LimitationError::Client(e) => {
|
|
|
|
log::error!("Client request failed, redis error: {}", e);
|
|
|
|
|
|
|
|
Ok(req.into_response(
|
|
|
|
HttpResponse::new(StatusCode::INTERNAL_SERVER_ERROR)
|
|
|
|
.map_into_right_body(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
log::error!("Count failed: {}", err);
|
|
|
|
|
|
|
|
Ok(req.into_response(
|
|
|
|
HttpResponse::new(StatusCode::INTERNAL_SERVER_ERROR)
|
|
|
|
.map_into_right_body(),
|
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
2022-03-18 18:00:33 +01:00
|
|
|
} else {
|
|
|
|
service
|
|
|
|
.call(req)
|
|
|
|
.await
|
|
|
|
.map(ServiceResponse::map_into_left_body)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|