1
0
mirror of https://github.com/actix/actix-extras.git synced 2024-11-23 15:51:06 +01:00

limitation clean up (#232)

* add license links to -limitation

* move tests to inline mod

* use cow str for limiter parameters

* add docs to all limitation items

* rename builder methods

* fix ignored tests

* update changelog

* fix ci
This commit is contained in:
Rob Ede 2022-03-20 00:40:34 +00:00 committed by GitHub
parent bb553b2308
commit 977e3141c9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
20 changed files with 473 additions and 425 deletions

View File

@ -122,7 +122,11 @@ jobs:
timeout-minutes: 40 timeout-minutes: 40
with: with:
command: ci-test command: ci-test
args: --exclude=actix-redis --exclude=actix-session -- --nocapture args: >-
--exclude=actix-redis
--exclude=actix-session
--exclude=actix-limitation
-- --nocapture
- name: Clear the cargo caches - name: Clear the cargo caches
run: | run: |

View File

@ -131,7 +131,10 @@ jobs:
timeout-minutes: 40 timeout-minutes: 40
with: with:
command: ci-test command: ci-test
args: --exclude=actix-redis --exclude=actix-session -- --nocapture args: >-
--exclude=actix-redis
--exclude=actix-session
--exclude=actix-limitation
- name: Clear the cargo caches - name: Clear the cargo caches
run: | run: |

View File

@ -3,8 +3,12 @@
## Unreleased - 2022-xx-xx ## Unreleased - 2022-xx-xx
- Update Actix Web dependency to v4 ecosystem. [#229] - Update Actix Web dependency to v4 ecosystem. [#229]
- Update Tokio dependencies to v1 ecosystem. [#229] - Update Tokio dependencies to v1 ecosystem. [#229]
- Rename `Limiter::{build => builder}()`. [#232]
- Rename `Builder::{finish => build}()`. [#232]
- Exceeding the rate limit now returns a 429 Too Many Requests response. [#232]
[#229]: https://github.com/actix/actix-extras/pull/229 [#229]: https://github.com/actix/actix-extras/pull/229
[#232]: https://github.com/actix/actix-extras/pull/232
## 0.1.4 - 2022-03-18 ## 0.1.4 - 2022-03-18

View File

@ -15,10 +15,12 @@ actix-utils = "3"
actix-web = { version = "4", default-features = false } actix-web = { version = "4", default-features = false }
chrono = "0.4" chrono = "0.4"
derive_more = "0.99.5"
log = "0.4" log = "0.4"
redis = { version = "0.21", default-features = false, features = ["aio", "tokio-comp"] } redis = { version = "0.21", default-features = false, features = ["tokio-comp"] }
time = "0.3" time = "0.3"
[dev-dependencies] [dev-dependencies]
actix-web = "4" actix-web = "4"
uuid = { version = "0.8", features = ["v4"] } uuid = { version = "0.8", features = ["v4"] }
static_assertions = "1"

View File

@ -0,0 +1 @@
../LICENSE-APACHE

View File

@ -0,0 +1 @@
../LICENSE-MIT

View File

@ -12,8 +12,8 @@
```toml ```toml
[dependencies] [dependencies]
actix-limitation = "0.1.4"
actix-web = "4" actix-web = "4"
actix-limitation = "0.1.4"
``` ```
```rust ```rust

View File

@ -0,0 +1,121 @@
use std::{borrow::Cow, time::Duration};
use redis::Client;
use crate::{errors::Error, Limiter};
/// Rate limit builder.
#[derive(Debug)]
pub struct Builder<'a> {
pub(crate) redis_url: &'a str,
pub(crate) limit: usize,
pub(crate) period: Duration,
pub(crate) cookie_name: Cow<'static, str>,
pub(crate) session_key: Cow<'static, str>,
}
impl Builder<'_> {
/// Set upper limit.
pub fn limit(&mut self, limit: usize) -> &mut Self {
self.limit = limit;
self
}
/// Set limit window/period.
pub fn period(&mut self, period: Duration) -> &mut Self {
self.period = period;
self
}
/// Set name of cookie to be sent.
pub fn cookie_name(&mut self, cookie_name: impl Into<Cow<'static, str>>) -> &mut Self {
self.cookie_name = cookie_name.into();
self
}
/// Set session key to be used in backend.
pub fn session_key(&mut self, session_key: impl Into<Cow<'static, str>>) -> &mut Self {
self.session_key = session_key.into();
self
}
/// Finalizes and returns a `Limiter`.
///
/// Note that this method will connect to the Redis server to test its connection which is a
/// **synchronous** operation.
pub fn build(&self) -> Result<Limiter, Error> {
Ok(Limiter {
client: Client::open(self.redis_url)?,
limit: self.limit,
period: self.period,
cookie_name: self.cookie_name.clone(),
session_key: self.session_key.clone(),
})
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_create_builder() {
let redis_url = "redis://127.0.0.1";
let period = Duration::from_secs(10);
let builder = Builder {
redis_url,
limit: 100,
period,
cookie_name: Cow::Owned("session".to_string()),
session_key: Cow::Owned("rate-api".to_string()),
};
assert_eq!(builder.redis_url, redis_url);
assert_eq!(builder.limit, 100);
assert_eq!(builder.period, period);
assert_eq!(builder.session_key, "rate-api");
assert_eq!(builder.cookie_name, "session");
}
#[test]
fn test_create_limiter() {
let redis_url = "redis://127.0.0.1";
let period = Duration::from_secs(20);
let mut builder = Builder {
redis_url,
limit: 100,
period: Duration::from_secs(10),
session_key: Cow::Borrowed("key"),
cookie_name: Cow::Borrowed("sid"),
};
let limiter = builder
.limit(200)
.period(period)
.cookie_name("session".to_string())
.session_key("rate-api".to_string())
.build()
.unwrap();
assert_eq!(limiter.limit, 200);
assert_eq!(limiter.period, period);
assert_eq!(limiter.session_key, "rate-api");
assert_eq!(limiter.cookie_name, "session");
}
#[test]
#[should_panic = "Redis URL did not parse"]
fn test_create_limiter_error() {
let redis_url = "127.0.0.1";
let period = Duration::from_secs(20);
let mut builder = Builder {
redis_url,
limit: 100,
period: Duration::from_secs(10),
session_key: Cow::Borrowed("key"),
cookie_name: Cow::Borrowed("sid"),
};
builder.limit(200).period(period).build().unwrap();
}
}

View File

@ -1,51 +0,0 @@
use redis::Client;
use std::time::Duration;
use crate::{core::errors::Error, Limiter};
pub struct Builder<'builder> {
pub(crate) redis_url: &'builder str,
pub(crate) limit: usize,
pub(crate) period: Duration,
pub(crate) cookie_name: String,
pub(crate) session_key: String,
}
impl Builder<'_> {
pub fn limit(&mut self, limit: usize) -> &mut Self {
self.limit = limit;
self
}
pub fn period(&mut self, period: Duration) -> &mut Self {
self.period = period;
self
}
pub fn cookie_name(&mut self, cookie_name: String) -> &mut Self {
self.cookie_name = cookie_name;
self
}
pub fn session_key(&mut self, session_key: String) -> &mut Self {
self.session_key = session_key;
self
}
/// Finializes and returns a `Limiter`.
///
/// Note that this method will connect to the Redis server to test its connection which is a
/// **synchronous** operation.
pub fn finish(&self) -> Result<Limiter, Error> {
Ok(Limiter {
client: Client::open(self.redis_url)?,
limit: self.limit,
period: self.period,
cookie_name: self.cookie_name.to_string(),
session_key: self.session_key.to_string(),
})
}
}
#[cfg(test)]
mod test;

View File

@ -1,62 +0,0 @@
use super::*;
#[test]
fn test_create_builder() {
let redis_url = "redis://127.0.0.1";
let period = Duration::from_secs(10);
let builder = Builder {
redis_url,
limit: 100,
period,
cookie_name: "session".to_string(),
session_key: "rate-api".to_string(),
};
assert_eq!(builder.redis_url, redis_url);
assert_eq!(builder.limit, 100);
assert_eq!(builder.period, period);
assert_eq!(builder.session_key, "rate-api");
assert_eq!(builder.cookie_name, "session");
}
#[test]
fn test_create_limiter() {
let redis_url = "redis://127.0.0.1";
let period = Duration::from_secs(20);
let mut builder = Builder {
redis_url,
limit: 100,
period: Duration::from_secs(10),
session_key: "key".to_string(),
cookie_name: "sid".to_string(),
};
let limiter = builder
.limit(200)
.period(period)
.cookie_name("session".to_string())
.session_key("rate-api".to_string())
.finish()
.unwrap();
assert_eq!(limiter.limit, 200);
assert_eq!(limiter.period, period);
assert_eq!(limiter.session_key, "rate-api");
assert_eq!(limiter.cookie_name, "session");
}
#[test]
#[should_panic = "Redis URL did not parse"]
fn test_create_limiter_error() {
let redis_url = "127.0.0.1";
let period = Duration::from_secs(20);
let mut builder = Builder {
redis_url,
limit: 100,
period: Duration::from_secs(10),
session_key: "key".to_string(),
cookie_name: "sid".to_string(),
};
builder.limit(200).period(period).finish().unwrap();
}

View File

@ -1,51 +0,0 @@
use std::{error, fmt};
use crate::core::status::Status;
#[derive(Debug)]
pub enum Error {
/// The Redis client failed to connect or run a query.
Client(redis::RedisError),
/// The limit is exceeded for a key.
LimitExceeded(Status),
/// A time conversion failed.
Time(time::error::ComponentRange),
Other(String),
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
match self {
Error::Client(ref err) => write!(f, "Client error ({})", err),
Error::LimitExceeded(ref status) => write!(f, "Rate limit exceeded ({:?})", status),
Error::Time(ref err) => write!(f, "Time conversion error ({})", err),
Error::Other(err) => write!(f, "{}", err),
}
}
}
impl error::Error for Error {
fn source(&self) -> Option<&(dyn error::Error + 'static)> {
match self {
Error::Client(ref err) => err.source(),
Error::LimitExceeded(_) => None,
Error::Time(ref err) => err.source(),
Error::Other(_) => None,
}
}
}
impl From<redis::RedisError> for Error {
fn from(err: redis::RedisError) -> Self {
Error::Client(err)
}
}
impl From<time::error::ComponentRange> for Error {
fn from(err: time::error::ComponentRange) -> Self {
Error::Time(err)
}
}

View File

@ -1,3 +0,0 @@
pub mod builder;
pub mod errors;
pub mod status;

View File

@ -1,58 +0,0 @@
use crate::Error as LimitationError;
use chrono::SubsecRound;
use std::{convert::TryInto, ops::Add, time::Duration};
/// A report for a given key containing the limit status.
///
/// The status contains the following information:
///
/// - [`limit`]: the maximum number of requests allowed in the current period
/// - [`remaining`]: how many requests are left in the current period
/// - [`reset_epoch_utc`]: a UNIX timestamp in UTC approximately when the next period will begin
#[derive(Clone, Debug)]
pub struct Status {
pub(crate) limit: usize,
pub(crate) remaining: usize,
pub(crate) reset_epoch_utc: usize,
}
impl Status {
pub fn limit(&self) -> usize {
self.limit
}
pub fn remaining(&self) -> usize {
self.remaining
}
pub fn reset_epoch_utc(&self) -> usize {
self.reset_epoch_utc
}
pub(crate) fn build_status(count: usize, limit: usize, reset_epoch_utc: usize) -> Self {
let remaining = if count >= limit { 0 } else { limit - count };
Status {
limit,
remaining,
reset_epoch_utc,
}
}
pub(crate) fn epoch_utc_plus(duration: Duration) -> Result<usize, LimitationError> {
match chrono::Duration::from_std(duration) {
Ok(value) => Ok(chrono::Utc::now()
.add(value)
.round_subsecs(0)
.timestamp()
.try_into()
.unwrap_or(0)),
Err(_) => Err(LimitationError::Other(
"Source duration value is out of range for the target type".to_string(),
)),
}
}
}
#[cfg(test)]
mod test;

View File

@ -1,54 +0,0 @@
use super::*;
#[test]
fn test_create_status() {
let status = Status {
limit: 100,
remaining: 0,
reset_epoch_utc: 1000,
};
assert_eq!(status.limit(), 100);
assert_eq!(status.remaining(), 0);
assert_eq!(status.reset_epoch_utc(), 1000);
}
#[test]
fn test_build_status() {
let count = 200;
let limit = 100;
let status = Status::build_status(count, limit, 2000);
assert_eq!(status.limit(), limit);
assert_eq!(status.remaining(), 0);
assert_eq!(status.reset_epoch_utc(), 2000);
}
#[test]
fn test_build_status_limit() {
let limit = 100;
let status = Status::build_status(0, limit, 2000);
assert_eq!(status.limit(), limit);
assert_eq!(status.remaining(), limit);
assert_eq!(status.reset_epoch_utc(), 2000);
}
#[test]
fn test_epoch_utc_plus_zero() {
let duration = Duration::from_secs(0);
let seconds = Status::epoch_utc_plus(duration).unwrap();
assert!(seconds as u64 >= duration.as_secs());
}
#[test]
fn test_epoch_utc_plus() {
let duration = Duration::from_secs(10);
let seconds = Status::epoch_utc_plus(duration).unwrap();
assert!(seconds as u64 >= duration.as_secs() + 10);
}
#[test]
#[should_panic = "Source duration value is out of range for the target type"]
fn test_epoch_utc_plus_overflow() {
let duration = Duration::from_secs(10000000000000000000);
Status::epoch_utc_plus(duration).unwrap();
}

View File

@ -0,0 +1,42 @@
use derive_more::{Display, Error, From};
use crate::status::Status;
/// Failure modes of the rate limiter.
#[derive(Debug, Display, Error, From)]
pub enum Error {
/// Redis client failed to connect or run a query.
#[display(fmt = "Redis client failed to connect or run a query")]
Client(redis::RedisError),
/// Limit is exceeded for a key.
#[display(fmt = "Limit is exceeded for a key")]
#[from(ignore)]
LimitExceeded(#[error(not(source))] Status),
/// Time conversion failed.
#[display(fmt = "Time conversion failed")]
Time(time::error::ComponentRange),
/// Generic error.
#[display(fmt = "Generic error")]
#[from(ignore)]
Other(#[error(not(source))] String),
}
#[cfg(test)]
mod tests {
use super::*;
static_assertions::assert_impl_all! {
Error:
From<redis::RedisError>,
From<time::error::ComponentRange>,
}
static_assertions::assert_not_impl_any! {
Error:
From<String>,
From<Status>,
}
}

View File

@ -1,84 +1,107 @@
/*! //! Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web.
Rate limiter using a fixed window counter for arbitrary keys, backed by Redis for Actix Web //!
//! ```toml
//! [dependencies]
//! actix-web = "4"
//! actix-limitation = "0.1.4"
//! ```
//!
//! ```no_run
//! use std::time::Duration;
//! use actix_web::{get, web, App, HttpServer, Responder};
//! use actix_limitation::{Limiter, RateLimiter};
//!
//! #[get("/{id}/{name}")]
//! async fn index(info: web::Path<(u32, String)>) -> impl Responder {
//! format!("Hello {}! id:{}", info.1, info.0)
//! }
//!
//! #[actix_web::main]
//! async fn main() -> std::io::Result<()> {
//! let limiter = web::Data::new(
//! Limiter::builder("redis://127.0.0.1")
//! .cookie_name("session-id".to_owned())
//! .session_key("rate-api-id".to_owned())
//! .limit(5000)
//! .period(Duration::from_secs(3600)) // 60 minutes
//! .build()
//! .unwrap(),
//! );
//!
//! HttpServer::new(move || {
//! App::new()
//! .wrap(RateLimiter)
//! .app_data(limiter.clone())
//! .service(index)
//! })
//! .bind("127.0.0.1:8080")?
//! .run()
//! .await
//! }
//! ```
```toml #![forbid(unsafe_code)]
[dependencies] #![deny(rust_2018_idioms, nonstandard_style)]
actix-limitation = "0.1.4" #![warn(future_incompatible, missing_docs, missing_debug_implementations)]
actix-web = "4" #![doc(html_logo_url = "https://actix.rs/img/logo.png")]
``` #![doc(html_favicon_url = "https://actix.rs/favicon.ico")]
```no_run use std::{borrow::Cow, time::Duration};
use std::time::Duration;
use actix_web::{get, web, App, HttpServer, Responder};
use actix_limitation::{Limiter, RateLimiter};
#[get("/{id}/{name}")]
async fn index(info: web::Path<(u32, String)>) -> impl Responder {
format!("Hello {}! id:{}", info.1, info.0)
}
#[actix_web::main]
async fn main() -> std::io::Result<()> {
let limiter = web::Data::new(
Limiter::build("redis://127.0.0.1")
.cookie_name("session-id".to_owned())
.session_key("rate-api-id".to_owned())
.limit(5000)
.period(Duration::from_secs(3600)) // 60 minutes
.finish()
.expect("Can't build actix-limiter"),
);
HttpServer::new(move || {
App::new()
.wrap(RateLimiter)
.app_data(limiter.clone())
.service(index)
})
.bind("127.0.0.1:8080")?
.run()
.await
}
```
*/
#[macro_use]
extern crate log;
use redis::Client; use redis::Client;
use std::time::Duration;
pub use crate::core::{builder::Builder, errors::Error, status::Status}; mod builder;
pub use crate::middleware::RateLimiter; mod errors;
mod middleware;
mod status;
pub use self::builder::Builder;
pub use self::errors::Error;
pub use self::middleware::RateLimiter;
pub use self::status::Status;
/// Default request limit.
pub const DEFAULT_REQUEST_LIMIT: usize = 5000; pub const DEFAULT_REQUEST_LIMIT: usize = 5000;
/// Default period (in seconds).
pub const DEFAULT_PERIOD_SECS: u64 = 3600; pub const DEFAULT_PERIOD_SECS: u64 = 3600;
/// Default cookie name.
pub const DEFAULT_COOKIE_NAME: &str = "sid"; pub const DEFAULT_COOKIE_NAME: &str = "sid";
/// Default session key.
pub const DEFAULT_SESSION_KEY: &str = "rate-api-id"; pub const DEFAULT_SESSION_KEY: &str = "rate-api-id";
/// Rate limiter.
#[derive(Clone, Debug)] #[derive(Clone, Debug)]
pub struct Limiter { pub struct Limiter {
client: Client, client: Client,
limit: usize, limit: usize,
period: Duration, period: Duration,
cookie_name: String, cookie_name: Cow<'static, str>,
session_key: String, session_key: Cow<'static, str>,
} }
impl Limiter { impl Limiter {
pub fn build(redis_url: &str) -> Builder { /// Construct rate limiter builder with defaults.
///
/// See [`redis-rs` docs](https://docs.rs/redis/0.21/redis/#connection-parameters) on connection
/// parameters for how to set the Redis URL.
#[must_use]
pub fn builder(redis_url: &str) -> Builder<'_> {
Builder { Builder {
redis_url, redis_url,
limit: DEFAULT_REQUEST_LIMIT, limit: DEFAULT_REQUEST_LIMIT,
period: Duration::from_secs(DEFAULT_PERIOD_SECS), period: Duration::from_secs(DEFAULT_PERIOD_SECS),
cookie_name: DEFAULT_COOKIE_NAME.to_string(), cookie_name: Cow::Borrowed(DEFAULT_COOKIE_NAME),
session_key: DEFAULT_SESSION_KEY.to_string(), session_key: Cow::Borrowed(DEFAULT_SESSION_KEY),
} }
} }
pub async fn count<K: Into<String>>(&self, key: K) -> Result<Status, Error> { /// Consumes one rate limit unit, returning the status.
pub async fn count(&self, key: impl Into<String>) -> Result<Status, Error> {
let (count, reset) = self.track(key).await?; let (count, reset) = self.track(key).await?;
let status = Status::build_status(count, self.limit, reset); let status = Status::new(count, self.limit, reset);
if count > self.limit { if count > self.limit {
Err(Error::LimitExceeded(status)) Err(Error::LimitExceeded(status))
@ -88,36 +111,49 @@ impl Limiter {
} }
/// Tracks the given key in a period and returns the count and TTL for the key in seconds. /// Tracks the given key in a period and returns the count and TTL for the key in seconds.
async fn track<K: Into<String>>(&self, key: K) -> Result<(usize, usize), Error> { async fn track(&self, key: impl Into<String>) -> Result<(usize, usize), Error> {
let key = key.into(); let key = key.into();
let exipres = self.period.as_secs(); let expires = self.period.as_secs();
let mut connection = self.client.get_tokio_connection().await?; let mut connection = self.client.get_tokio_connection().await?;
// The seed of this approach is outlined Atul R in a blog post about rate limiting // The seed of this approach is outlined Atul R in a blog post about rate limiting using
// using NodeJS and Redis. For more details, see // NodeJS and Redis. For more details, see https://blog.atulr.com/rate-limiter
// https://blog.atulr.com/rate-limiter/
let mut pipe = redis::pipe(); let mut pipe = redis::pipe();
pipe.atomic() pipe.atomic()
.cmd("SET") .cmd("SET") // Set key and value
.arg(&key) .arg(&key)
.arg(0) .arg(0)
.arg("EX") .arg("EX") // Set the specified expire time, in seconds.
.arg(exipres) .arg(expires)
.arg("NX") .arg("NX") // Only set the key if it does not already exist.
.ignore() .ignore() // --- ignore returned value of SET command ---
.cmd("INCR") .cmd("INCR") // Increment key
.arg(&key) .arg(&key)
.cmd("TTL") .cmd("TTL") // Return time-to-live of key
.arg(&key); .arg(&key);
let (count, ttl): (usize, u64) = pipe.query_async(&mut connection).await?; let (count, ttl) = pipe.query_async(&mut connection).await?;
let reset = Status::epoch_utc_plus(Duration::from_secs(ttl))?; let reset = Status::epoch_utc_plus(Duration::from_secs(ttl))?;
Ok((count, reset)) Ok((count, reset))
} }
} }
mod core;
mod middleware;
#[cfg(test)] #[cfg(test)]
mod test; mod tests {
use super::*;
#[test]
fn test_create_limiter() {
let builder = Limiter::builder("redis://127.0.0.1:6379/1");
let limiter = builder.build();
assert!(limiter.is_ok());
let limiter = limiter.unwrap();
assert_eq!(limiter.limit, 5000);
assert_eq!(limiter.period, Duration::from_secs(3600));
assert_eq!(limiter.cookie_name, DEFAULT_COOKIE_NAME);
assert_eq!(limiter.session_key, DEFAULT_SESSION_KEY);
}
}

View File

@ -6,12 +6,14 @@ use actix_web::{
body::EitherBody, body::EitherBody,
cookie::Cookie, cookie::Cookie,
dev::{forward_ready, Service, ServiceRequest, ServiceResponse, Transform}, dev::{forward_ready, Service, ServiceRequest, ServiceResponse, Transform},
http::header::COOKIE, http::{header::COOKIE, StatusCode},
web, Error, HttpResponse, web, Error, HttpResponse,
}; };
use crate::Limiter; use crate::Limiter;
/// Rate limit middleware.
#[derive(Debug)]
pub struct RateLimiter; pub struct RateLimiter;
impl<S, B> Transform<S, ServiceRequest> for RateLimiter impl<S, B> Transform<S, ServiceRequest> for RateLimiter
@ -22,8 +24,8 @@ where
{ {
type Response = ServiceResponse<EitherBody<B>>; type Response = ServiceResponse<EitherBody<B>>;
type Error = Error; type Error = Error;
type InitError = ();
type Transform = RateLimiterMiddleware<S>; type Transform = RateLimiterMiddleware<S>;
type InitError = ();
type Future = Ready<Result<Self::Transform, Self::InitError>>; type Future = Ready<Result<Self::Transform, Self::InitError>>;
fn new_transform(&self, service: S) -> Self::Future { fn new_transform(&self, service: S) -> Self::Future {
@ -33,6 +35,8 @@ where
} }
} }
/// Rate limit middleware service.
#[derive(Debug)]
pub struct RateLimiterMiddleware<S> { pub struct RateLimiterMiddleware<S> {
service: Rc<S>, service: Rc<S>,
} }
@ -57,10 +61,10 @@ where
.expect("web::Data<Limiter> should be set in app data for RateLimiter middleware") .expect("web::Data<Limiter> should be set in app data for RateLimiter middleware")
.clone(); .clone();
let forbidden = HttpResponse::Forbidden().finish().map_into_right_body();
let (key, fallback) = key(&req, limiter.clone()); let (key, fallback) = key(&req, limiter.clone());
let service = Rc::clone(&self.service); let service = Rc::clone(&self.service);
let key = match key { let key = match key {
Some(key) => key, Some(key) => key,
None => match fallback { None => match fallback {
@ -76,12 +80,15 @@ where
}, },
}; };
let service = Rc::clone(&self.service);
Box::pin(async move { Box::pin(async move {
let status = limiter.count(key.to_string()).await; let status = limiter.count(key.to_string()).await;
if status.is_err() { if status.is_err() {
warn!("403. Rate limit exceed error for {}", key); log::warn!("Rate limit exceed error for {}", key);
Ok(req.into_response(forbidden))
Ok(req.into_response(
HttpResponse::new(StatusCode::TOO_MANY_REQUESTS).map_into_right_body(),
))
} else { } else {
service service
.call(req) .call(req)
@ -98,7 +105,7 @@ fn key(req: &ServiceRequest, limiter: web::Data<Limiter>) -> (Option<String>, Op
let cookies = req.headers().get_all(COOKIE); let cookies = req.headers().get_all(COOKIE);
let cookie = cookies let cookie = cookies
.filter_map(|i| i.to_str().ok()) .filter_map(|i| i.to_str().ok())
.find(|i| i.contains(&limiter.cookie_name)); .find(|i| i.contains(limiter.cookie_name.as_ref()));
let fallback = match cookie { let fallback = match cookie {
Some(value) => Cookie::parse(value).ok().map(|i| i.to_string()), Some(value) => Cookie::parse(value).ok().map(|i| i.to_string()),

View File

@ -0,0 +1,118 @@
use std::{convert::TryInto, ops::Add, time::Duration};
use chrono::SubsecRound as _;
use crate::Error as LimitationError;
/// A report for a given key containing the limit status.
#[derive(Debug, Clone)]
pub struct Status {
pub(crate) limit: usize,
pub(crate) remaining: usize,
pub(crate) reset_epoch_utc: usize,
}
impl Status {
/// Constructs status limit status from parts.
#[must_use]
pub(crate) fn new(count: usize, limit: usize, reset_epoch_utc: usize) -> Self {
let remaining = if count >= limit { 0 } else { limit - count };
Status {
limit,
remaining,
reset_epoch_utc,
}
}
/// Returns the maximum number of requests allowed in the current period.
#[must_use]
pub fn limit(&self) -> usize {
self.limit
}
/// Returns how many requests are left in the current period.
#[must_use]
pub fn remaining(&self) -> usize {
self.remaining
}
/// Returns a UNIX timestamp in UTC approximately when the next period will begin.
#[must_use]
pub fn reset_epoch_utc(&self) -> usize {
self.reset_epoch_utc
}
pub(crate) fn epoch_utc_plus(duration: Duration) -> Result<usize, LimitationError> {
match chrono::Duration::from_std(duration) {
Ok(value) => Ok(chrono::Utc::now()
.add(value)
.round_subsecs(0)
.timestamp()
.try_into()
.unwrap_or(0)),
Err(_) => Err(LimitationError::Other(
"Source duration value is out of range for the target type".to_string(),
)),
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn test_create_status() {
let status = Status {
limit: 100,
remaining: 0,
reset_epoch_utc: 1000,
};
assert_eq!(status.limit(), 100);
assert_eq!(status.remaining(), 0);
assert_eq!(status.reset_epoch_utc(), 1000);
}
#[test]
fn test_build_status() {
let count = 200;
let limit = 100;
let status = Status::new(count, limit, 2000);
assert_eq!(status.limit(), limit);
assert_eq!(status.remaining(), 0);
assert_eq!(status.reset_epoch_utc(), 2000);
}
#[test]
fn test_build_status_limit() {
let limit = 100;
let status = Status::new(0, limit, 2000);
assert_eq!(status.limit(), limit);
assert_eq!(status.remaining(), limit);
assert_eq!(status.reset_epoch_utc(), 2000);
}
#[test]
fn test_epoch_utc_plus_zero() {
let duration = Duration::from_secs(0);
let seconds = Status::epoch_utc_plus(duration).unwrap();
assert!(seconds as u64 >= duration.as_secs());
}
#[test]
fn test_epoch_utc_plus() {
let duration = Duration::from_secs(10);
let seconds = Status::epoch_utc_plus(duration).unwrap();
assert!(seconds as u64 >= duration.as_secs() + 10);
}
#[test]
#[should_panic = "Source duration value is out of range for the target type"]
fn test_epoch_utc_plus_overflow() {
let duration = Duration::from_secs(10000000000000000000);
Status::epoch_utc_plus(duration).unwrap();
}
}

View File

@ -1,65 +0,0 @@
use uuid::Uuid;
use super::*;
#[test]
fn test_create_limiter() {
let builder = Limiter::build("redis://127.0.0.1:6379/1");
let limiter = builder.finish();
assert!(limiter.is_ok());
let limiter = limiter.unwrap();
assert_eq!(limiter.limit, 5000);
assert_eq!(limiter.period, Duration::from_secs(3600));
assert_eq!(limiter.cookie_name, DEFAULT_COOKIE_NAME);
assert_eq!(limiter.session_key, DEFAULT_SESSION_KEY);
}
#[test]
#[should_panic = "Redis URL did not parse"]
fn test_create_limiter_error() {
Limiter::build("127.0.0.1").finish().unwrap();
}
// TODO: figure out whats wrong with this test
#[ignore]
#[actix_web::test]
async fn test_limiter_count() -> Result<(), Error> {
let builder = Limiter::build("redis://127.0.0.1:6379/2");
let limiter = builder.finish().unwrap();
let id = Uuid::new_v4();
for i in 0..5000 {
let status = limiter.count(id.to_string()).await?;
assert_eq!(5000 - status.remaining(), i + 1);
}
Ok(())
}
// TODO: figure out whats wrong with this test
#[ignore]
#[actix_web::test]
async fn test_limiter_count_error() -> Result<(), Error> {
let builder = Limiter::build("redis://127.0.0.1:6379/3");
let limiter = builder.finish().unwrap();
let id = Uuid::new_v4();
for i in 0..5000 {
let status = limiter.count(id.to_string()).await?;
assert_eq!(5000 - status.remaining(), i + 1);
}
match limiter.count(id.to_string()).await.unwrap_err() {
Error::LimitExceeded(status) => assert_eq!(status.remaining(), 0),
_ => panic!("error should be LimitExceeded variant"),
};
let id = Uuid::new_v4();
for i in 0..5000 {
let status = limiter.count(id.to_string()).await?;
assert_eq!(5000 - status.remaining(), i + 1);
}
Ok(())
}

View File

@ -0,0 +1,53 @@
use actix_limitation::{Error, Limiter};
use uuid::Uuid;
#[test]
#[should_panic = "Redis URL did not parse"]
fn test_create_limiter_error() {
Limiter::builder("127.0.0.1").build().unwrap();
}
#[actix_web::test]
async fn test_limiter_count() -> Result<(), Error> {
let limiter = Limiter::builder("redis://127.0.0.1:6379/2")
.limit(20)
.build()
.unwrap();
let id = Uuid::new_v4();
for i in 0..20 {
let status = limiter.count(id.to_string()).await?;
println!("status: {:?}", status);
assert_eq!(20 - status.remaining(), i + 1);
}
Ok(())
}
#[actix_web::test]
async fn test_limiter_count_error() -> Result<(), Error> {
let limiter = Limiter::builder("redis://127.0.0.1:6379/3")
.limit(25)
.build()
.unwrap();
let id = Uuid::new_v4();
for i in 0..25 {
let status = limiter.count(id.to_string()).await?;
assert_eq!(25 - status.remaining(), i + 1);
}
match limiter.count(id.to_string()).await.unwrap_err() {
Error::LimitExceeded(status) => assert_eq!(status.remaining(), 0),
_ => panic!("error should be LimitExceeded variant"),
};
let id = Uuid::new_v4();
for i in 0..25 {
let status = limiter.count(id.to_string()).await?;
assert_eq!(25 - status.remaining(), i + 1);
}
Ok(())
}