mirror of
https://gitlab.com/comunic/comunicapiv3
synced 2025-04-03 03:12:37 +00:00
85 lines
1.6 KiB
Rust
85 lines
1.6 KiB
Rust
//! # Comunic administrator
|
|
//!
|
|
//! @author Pierre Hubert
|
|
|
|
use webauthn_rs::proto::Credential;
|
|
|
|
use crate::constants::admin::{ADMIN_ROLES_LIST, AdminRole};
|
|
|
|
#[derive(Copy, Clone, Eq, PartialEq, Debug, Hash)]
|
|
pub struct AdminID(u64);
|
|
|
|
impl AdminID {
|
|
pub fn new(id: u64) -> Self {
|
|
Self(id)
|
|
}
|
|
|
|
pub fn id(&self) -> u64 {
|
|
self.0
|
|
}
|
|
|
|
pub fn id_str(&self) -> String {
|
|
format!("{}", self.0)
|
|
}
|
|
}
|
|
|
|
pub struct NewAdmin {
|
|
pub name: String,
|
|
pub email: String,
|
|
}
|
|
|
|
pub struct AdminResetToken {
|
|
pub token: String,
|
|
pub expire: u64,
|
|
}
|
|
|
|
pub struct Admin {
|
|
pub id: AdminID,
|
|
pub time_create: u64,
|
|
pub name: String,
|
|
pub email: String,
|
|
pub reset_token: Option<AdminResetToken>,
|
|
pub roles: Vec<AdminRole>,
|
|
}
|
|
|
|
pub struct AdminKey {
|
|
pub id: u64,
|
|
pub admin_id: AdminID,
|
|
pub name: String,
|
|
pub time_add: u64,
|
|
pub key: Credential,
|
|
}
|
|
|
|
/// Admin access token
|
|
///
|
|
/// Used to store authentication of an admin
|
|
#[derive(Clone, Debug)]
|
|
pub struct AdminAccessToken {
|
|
pub token: String,
|
|
pub id: AdminID,
|
|
pub last_refresh: u64,
|
|
}
|
|
|
|
/// New admin general settings
|
|
pub struct NewAdminGeneralSettings {
|
|
pub id: AdminID,
|
|
pub name: String,
|
|
pub email: String,
|
|
}
|
|
|
|
impl AdminRole {
|
|
pub fn from_id(id: &str) -> Option<Self> {
|
|
ADMIN_ROLES_LIST.iter()
|
|
.filter(|r| r.id.eq(id))
|
|
.map(|r| r.role)
|
|
.next()
|
|
}
|
|
|
|
pub fn to_id(&self) -> &'static str {
|
|
ADMIN_ROLES_LIST.iter()
|
|
.filter(|r| r.role.eq(self))
|
|
.map(|r| r.id)
|
|
.next()
|
|
.expect("Should have found a role!!!")
|
|
}
|
|
} |