107 lines
3.1 KiB
Rust
107 lines
3.1 KiB
Rust
|
use hmac::{Hmac, NewMac};
|
||
|
use jwt::VerifyWithKey;
|
||
|
use rb::auth::Claims;
|
||
|
use rocket::{
|
||
|
http::Status,
|
||
|
outcome::try_outcome,
|
||
|
request::{FromRequest, Outcome, Request},
|
||
|
};
|
||
|
use sha2::Sha256;
|
||
|
|
||
|
/// Extracts a "Authorization: Bearer" string from the headers.
|
||
|
pub struct Bearer(String);
|
||
|
|
||
|
#[rocket::async_trait]
|
||
|
impl<'r> FromRequest<'r> for Bearer {
|
||
|
type Error = rb::errors::RBError;
|
||
|
|
||
|
async fn from_request(req: &'r Request<'_>) -> Outcome<Self, Self::Error> {
|
||
|
// If the header isn't present, just forward to the next route
|
||
|
let header = match req.headers().get_one("Authorization") {
|
||
|
None => return Outcome::Forward(()),
|
||
|
Some(val) => val,
|
||
|
};
|
||
|
|
||
|
if !header.starts_with("Bearer ") {
|
||
|
return Outcome::Forward(());
|
||
|
}
|
||
|
|
||
|
// Extract the jwt token from the header
|
||
|
let auth_string = match header.get(7..) {
|
||
|
Some(s) => s,
|
||
|
None => return Outcome::Forward(()),
|
||
|
};
|
||
|
|
||
|
Outcome::Success(Self(auth_string.to_string()))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Verifies the provided JWT is valid.
|
||
|
pub struct JWT(Claims);
|
||
|
|
||
|
#[rocket::async_trait]
|
||
|
impl<'r> FromRequest<'r> for JWT {
|
||
|
type Error = rb::errors::RBError;
|
||
|
|
||
|
async fn from_request(req: &'r Request<'_>) -> Outcome<Self, Self::Error> {
|
||
|
let bearer = try_outcome!(req.guard::<Bearer>().await).0;
|
||
|
|
||
|
// Get secret & key
|
||
|
let secret = match std::env::var("JWT_KEY") {
|
||
|
Ok(key) => key,
|
||
|
Err(_) => {
|
||
|
return Outcome::Failure((Status::InternalServerError, Self::Error::MissingJWTKey))
|
||
|
}
|
||
|
};
|
||
|
let key: Hmac<Sha256> = match Hmac::new_from_slice(secret.as_bytes()) {
|
||
|
Ok(key) => key,
|
||
|
Err(_) => {
|
||
|
return Outcome::Failure((Status::InternalServerError, Self::Error::JWTError))
|
||
|
}
|
||
|
};
|
||
|
// Verify token using key
|
||
|
let claims: Claims = match bearer.verify_with_key(&key) {
|
||
|
Ok(claims) => claims,
|
||
|
Err(_) => return Outcome::Failure((Status::Unauthorized, Self::Error::Unauthorized)),
|
||
|
};
|
||
|
|
||
|
Outcome::Success(Self(claims))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Verifies the JWT has not expired.
|
||
|
pub struct User(Claims);
|
||
|
|
||
|
#[rocket::async_trait]
|
||
|
impl<'r> FromRequest<'r> for User {
|
||
|
type Error = rb::errors::RBError;
|
||
|
|
||
|
async fn from_request(req: &'r Request<'_>) -> Outcome<Self, Self::Error> {
|
||
|
let claims = try_outcome!(req.guard::<JWT>().await).0;
|
||
|
|
||
|
// Verify key hasn't yet expired
|
||
|
if chrono::Utc::now().timestamp() > claims.exp {
|
||
|
return Outcome::Failure((Status::Forbidden, Self::Error::TokenExpired));
|
||
|
}
|
||
|
|
||
|
Outcome::Success(Self(claims))
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/// Verifies the JWT belongs to an admin.
|
||
|
pub struct Admin(Claims);
|
||
|
|
||
|
#[rocket::async_trait]
|
||
|
impl<'r> FromRequest<'r> for Admin {
|
||
|
type Error = rb::errors::RBError;
|
||
|
|
||
|
async fn from_request(req: &'r Request<'_>) -> Outcome<Self, Self::Error> {
|
||
|
let user = try_outcome!(req.guard::<User>().await);
|
||
|
if user.0.admin {
|
||
|
Outcome::Success(Self(user.0))
|
||
|
} else {
|
||
|
Outcome::Forward(())
|
||
|
}
|
||
|
}
|
||
|
}
|