use serde::{Deserialize, Serialize};
use time::OffsetDateTime;
use uuid::Uuid;
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct RefreshToken {
pub token_hash: String,
pub user_id: Uuid,
pub expires_at: OffsetDateTime,
pub created_at: OffsetDateTime,
}
impl RefreshToken {
#[must_use]
pub fn is_expired_at(&self, now: OffsetDateTime) -> bool {
self.expires_at < now
}
}
#[derive(Debug, Serialize, Deserialize, PartialEq, Eq)]
pub struct Claims {
pub sub: Uuid,
pub exp: usize,
}
impl Claims {
#[must_use]
pub const fn new(user_id: Uuid, exp: usize) -> Self {
Self { sub: user_id, exp }
}
}
#[derive(Clone, PartialEq, Eq)]
pub struct Jwt(pub String);
impl Jwt {
#[must_use]
pub const fn new(token: String) -> Self {
Self(token)
}
#[must_use]
pub fn as_str(&self) -> &str {
&self.0
}
}
impl std::fmt::Debug for Jwt {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "Jwt(***)")
}
}
impl std::fmt::Display for Jwt {
fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
write!(f, "***")
}
}
#[derive(Debug)]
pub struct Password;
#[derive(Debug)]
pub struct OpaqueToken;