2020-11-19 18:20:14 +00:00
|
|
|
//! Tools for registering users & persisting arbitrary user data
|
|
|
|
//!
|
|
|
|
//! Many Gemini applications use some form of a login method in order to allow users to
|
|
|
|
//! persist personal data, authenticate themselves, and login from multiple devices using
|
|
|
|
//! multiple certificates.
|
|
|
|
//!
|
|
|
|
//! This module contains tools to help you build a system like this without stress. A
|
|
|
|
//! typical workflow looks something like this:
|
|
|
|
//!
|
|
|
|
//! * Call [`Request::user()`] to retrieve information about a user
|
|
|
|
//! * Direct any users without a certificate to create a certificate
|
|
|
|
//! * Ask users with a certificate not yet linked to an account to create an account using
|
|
|
|
//! [`NotSignedInUser::register()`] or link their certificate to an existing account
|
|
|
|
//! with a password using [`NotSignedInUser::attach()`].
|
2020-11-19 22:00:32 +00:00
|
|
|
//! * You should now have a [`RegisteredUser`] either from registering/attaching a
|
2020-11-19 18:20:14 +00:00
|
|
|
//! [`NotSignedInUser`] or because the user was already registered
|
2020-11-19 22:00:32 +00:00
|
|
|
//! * Access and modify user data using [`RegisteredUser::as_mut()`], changes are
|
2020-11-19 18:20:14 +00:00
|
|
|
//! automatically persisted to the database (on user drop).
|
|
|
|
//!
|
|
|
|
//! Use of this module requires the `user_management` feature to be enabled
|
2020-11-16 06:13:16 +00:00
|
|
|
pub mod user;
|
|
|
|
mod manager;
|
2020-11-23 15:01:53 +00:00
|
|
|
#[cfg(feature = "user_management_routes")]
|
2020-11-22 04:03:56 +00:00
|
|
|
mod routes;
|
2020-11-23 15:01:53 +00:00
|
|
|
#[cfg(feature = "user_management_routes")]
|
2020-11-22 04:03:56 +00:00
|
|
|
pub use routes::UserManagementRoutes;
|
2020-11-16 06:13:16 +00:00
|
|
|
pub use manager::UserManager;
|
|
|
|
pub use user::User;
|
2020-11-19 22:07:33 +00:00
|
|
|
// Imports for docs
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use user::{NotSignedInUser, RegisteredUser};
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use crate::types::Request;
|
2020-11-16 06:13:16 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum UserManagerError {
|
|
|
|
UsernameNotUnique,
|
|
|
|
PasswordNotSet,
|
|
|
|
DatabaseError(sled::Error),
|
|
|
|
DatabaseTransactionError(sled::transaction::TransactionError),
|
2020-12-01 19:43:15 +00:00
|
|
|
DeserializeBincodeError(bincode::Error),
|
|
|
|
DeserializeUtf8Error(std::str::Utf8Error),
|
2020-11-23 03:24:36 +00:00
|
|
|
#[cfg(feature = "user_management_advanced")]
|
2020-11-19 21:07:52 +00:00
|
|
|
Argon2Error(argon2::Error),
|
2020-11-16 06:13:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl From<sled::Error> for UserManagerError {
|
|
|
|
fn from(error: sled::Error) -> Self {
|
|
|
|
Self::DatabaseError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<sled::transaction::TransactionError> for UserManagerError {
|
|
|
|
fn from(error: sled::transaction::TransactionError) -> Self {
|
|
|
|
Self::DatabaseTransactionError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<bincode::Error> for UserManagerError {
|
|
|
|
fn from(error: bincode::Error) -> Self {
|
2020-12-01 19:43:15 +00:00
|
|
|
Self::DeserializeBincodeError(error)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<std::str::Utf8Error> for UserManagerError {
|
|
|
|
fn from(error: std::str::Utf8Error) -> Self {
|
|
|
|
Self::DeserializeUtf8Error(error)
|
2020-11-16 06:13:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-23 03:24:36 +00:00
|
|
|
#[cfg(feature = "user_management_advanced")]
|
2020-11-19 21:07:52 +00:00
|
|
|
impl From<argon2::Error> for UserManagerError {
|
|
|
|
fn from(error: argon2::Error) -> Self {
|
|
|
|
Self::Argon2Error(error)
|
2020-11-16 06:13:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::error::Error for UserManagerError {
|
|
|
|
fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
|
|
|
|
match self {
|
|
|
|
Self::DatabaseError(e) => Some(e),
|
|
|
|
Self::DatabaseTransactionError(e) => Some(e),
|
2020-12-01 19:43:15 +00:00
|
|
|
Self::DeserializeBincodeError(e) => Some(e),
|
|
|
|
Self::DeserializeUtf8Error(e) => Some(e),
|
2020-11-23 03:24:36 +00:00
|
|
|
#[cfg(feature = "user_management_advanced")]
|
2020-11-19 21:07:52 +00:00
|
|
|
Self::Argon2Error(e) => Some(e),
|
2020-11-16 06:13:16 +00:00
|
|
|
_ => None
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl std::fmt::Display for UserManagerError {
|
|
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::result::Result<(), std::fmt::Error> {
|
|
|
|
match self {
|
|
|
|
Self::UsernameNotUnique =>
|
|
|
|
write!(f, "Attempted to create a user using a username that's already been taken"),
|
|
|
|
Self::PasswordNotSet =>
|
|
|
|
write!(f, "Attempted to check the password of a user who has not set one yet"),
|
|
|
|
Self::DatabaseError(e) =>
|
|
|
|
write!(f, "Error accessing the user database: {}", e),
|
|
|
|
Self::DatabaseTransactionError(e) =>
|
|
|
|
write!(f, "Error accessing the user database: {}", e),
|
2020-12-01 19:43:15 +00:00
|
|
|
Self::DeserializeBincodeError(e) =>
|
2020-11-16 06:13:16 +00:00
|
|
|
write!(f, "Recieved messy data from database, possible corruption: {}", e),
|
2020-12-01 19:43:15 +00:00
|
|
|
Self::DeserializeUtf8Error(e) =>
|
|
|
|
write!(f, "Recieved invalid UTF-8 from database, possible corruption: {}", e),
|
2020-11-23 03:24:36 +00:00
|
|
|
#[cfg(feature = "user_management_advanced")]
|
2020-11-19 21:07:52 +00:00
|
|
|
Self::Argon2Error(e) =>
|
|
|
|
write!(f, "Argon2 Error, likely malformed password hash, possible database corruption: {}", e),
|
2020-11-16 06:13:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type Result<T> = std::result::Result<T, UserManagerError>;
|