150 lines
4.1 KiB
Rust
150 lines
4.1 KiB
Rust
use actix::{Actor, AsyncContext, Context, Handler};
|
|
use actix::Message;
|
|
|
|
use crate::constants::*;
|
|
use crate::data::client::ClientID;
|
|
use crate::data::code_challenge::CodeChallenge;
|
|
use crate::data::user::UserID;
|
|
use crate::utils::time::time;
|
|
|
|
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize, Eq, PartialEq)]
|
|
pub struct SessionID(pub String);
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub struct Session {
|
|
pub session_id: SessionID,
|
|
pub client: ClientID,
|
|
pub user: UserID,
|
|
pub auth_time: u64,
|
|
pub redirect_uri: String,
|
|
|
|
pub authorization_code: String,
|
|
pub authorization_code_expire_at: u64,
|
|
pub authorization_code_used: bool,
|
|
|
|
pub access_token: String,
|
|
pub access_token_expire_at: u64,
|
|
pub refresh_token: String,
|
|
pub refresh_token_expire_at: u64,
|
|
|
|
pub nonce: Option<String>,
|
|
pub code_challenge: Option<CodeChallenge>,
|
|
}
|
|
|
|
impl Session {
|
|
pub fn is_expired(&self) -> bool {
|
|
self.authorization_code_expire_at < time() && self.access_token_expire_at < time()
|
|
&& self.refresh_token_expire_at < time()
|
|
}
|
|
}
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "()")]
|
|
pub struct PushNewSession(pub Session);
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "Option<Session>")]
|
|
pub struct FindSessionByAuthorizationCode(pub String);
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "Option<Session>")]
|
|
pub struct FindSessionByRefreshToken(pub String);
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "Option<Session>")]
|
|
pub struct FindSessionByAccessToken(pub String);
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "()")]
|
|
pub struct MarkAuthorizationCodeUsed(pub String);
|
|
|
|
#[derive(Message)]
|
|
#[rtype(result = "()")]
|
|
pub struct UpdateSession(pub Session);
|
|
|
|
#[derive(Default)]
|
|
pub struct OpenIDSessionsActor {
|
|
session: Vec<Session>,
|
|
}
|
|
|
|
impl OpenIDSessionsActor {
|
|
pub fn clean_old_sessions(&mut self) {
|
|
self.session.retain(|s| !s.is_expired());
|
|
}
|
|
}
|
|
|
|
impl Actor for OpenIDSessionsActor {
|
|
type Context = Context<Self>;
|
|
|
|
fn started(&mut self, ctx: &mut Self::Context) {
|
|
// Clean up at a regular interval failed attempts
|
|
ctx.run_interval(OPEN_ID_SESSION_CLEANUP_INTERVAL, |act, _ctx| {
|
|
log::trace!("Cleaning up old login sessions");
|
|
act.clean_old_sessions();
|
|
});
|
|
}
|
|
}
|
|
|
|
impl Handler<PushNewSession> for OpenIDSessionsActor {
|
|
type Result = ();
|
|
|
|
fn handle(&mut self, msg: PushNewSession, _ctx: &mut Self::Context) -> Self::Result {
|
|
self.session.push(msg.0)
|
|
}
|
|
}
|
|
|
|
impl Handler<FindSessionByAuthorizationCode> for OpenIDSessionsActor {
|
|
type Result = Option<Session>;
|
|
|
|
fn handle(&mut self, msg: FindSessionByAuthorizationCode, _ctx: &mut Self::Context) -> Self::Result {
|
|
self.session
|
|
.iter()
|
|
.find(|f| f.authorization_code.eq(&msg.0))
|
|
.cloned()
|
|
}
|
|
}
|
|
|
|
impl Handler<FindSessionByRefreshToken> for OpenIDSessionsActor {
|
|
type Result = Option<Session>;
|
|
|
|
fn handle(&mut self, msg: FindSessionByRefreshToken, _ctx: &mut Self::Context) -> Self::Result {
|
|
self.session
|
|
.iter()
|
|
.find(|f| f.refresh_token.eq(&msg.0))
|
|
.cloned()
|
|
}
|
|
}
|
|
|
|
impl Handler<FindSessionByAccessToken> for OpenIDSessionsActor {
|
|
type Result = Option<Session>;
|
|
|
|
fn handle(&mut self, msg: FindSessionByAccessToken, _ctx: &mut Self::Context) -> Self::Result {
|
|
self.session
|
|
.iter()
|
|
.find(|f| f.access_token.eq(&msg.0))
|
|
.cloned()
|
|
}
|
|
}
|
|
|
|
impl Handler<MarkAuthorizationCodeUsed> for OpenIDSessionsActor {
|
|
type Result = ();
|
|
|
|
fn handle(&mut self, msg: MarkAuthorizationCodeUsed, _ctx: &mut Self::Context) -> Self::Result {
|
|
if let Some(r) = self.session
|
|
.iter_mut()
|
|
.find(|f| f.authorization_code.eq(&msg.0)) {
|
|
r.authorization_code_used = true;
|
|
}
|
|
}
|
|
}
|
|
|
|
impl Handler<UpdateSession> for OpenIDSessionsActor {
|
|
type Result = ();
|
|
|
|
fn handle(&mut self, msg: UpdateSession, _ctx: &mut Self::Context) -> Self::Result {
|
|
if let Some(r) = self.session.iter().enumerate()
|
|
.find(|f| f.1.session_id.eq(&msg.0.session_id)).map(|f| f.0) {
|
|
self.session[r] = msg.0;
|
|
}
|
|
}
|
|
} |