surrealdb-core 3.2.2

A scalable, distributed, collaborative, document-graph database, for the realtime web
Documentation
use crate::expr::{Expr, Literal};
use crate::val::Duration;

#[derive(Debug, Hash, Clone, Eq, PartialEq)]
// Durations representing the expiration of different elements of user
// authentication In this context, the None variant represents that the element
// does not expire
pub(crate) struct UserDuration {
	// Duration after which the token obtained after authenticating with user credentials expires
	pub(crate) token: Expr,
	// Duration after which the session authenticated with user credentials or token expires
	pub(crate) session: Expr,
}

impl Default for UserDuration {
	fn default() -> Self {
		Self {
			// By default, tokens expire after one hour
			token: Expr::Literal(Literal::Duration(
				Duration::from_hours(1).expect("1 hour should fit in a duration"),
			)),
			// By default, sessions do not expire
			session: Expr::Literal(Literal::None),
		}
	}
}