pub use microrm::prelude::{Entity, Database}; use microrm::schema::{IDMap, AssocMap, Serialized, Relation, AssocDomain, AssocRange}; use serde::{Deserialize, Serialize}; use crate::key::KeyType; // ---------------------------------------------------------------------- // uidc internal types // ---------------------------------------------------------------------- /// Simple key-value store for persistent configuration #[derive(Debug, Entity)] pub struct PersistentConfig { #[unique] pub key: String, pub value: String, } // ---------------------------------------------------------------------- // Session types // ---------------------------------------------------------------------- #[derive(Debug, Entity)] pub struct Session { auth: AssocMap, // expiry: std::time::SystemTime } #[derive(Debug, Entity)] pub struct SessionAuth { pub realm: RealmID, pub user: Option, pub pending_user: Option, pub pending_challenges: Serialized>, } #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Serialize, Deserialize)] pub enum AuthChallengeType { Username, Password, TOTP, Grid, WebAuthn, } #[derive(Debug, Entity)] pub struct AuthChallenge { #[unique] pub challenge_type: Serialized, pub public: Vec, pub secret: Vec, pub enabled: bool, } // ---------------------------------------------------------------------- // OIDC types // ---------------------------------------------------------------------- pub struct UserGroupRelation; impl Relation for UserGroupRelation { type Domain = User; type Range = Group; const NAME: &'static str = "UserGroup"; } pub struct GroupRoleRelation; impl Relation for GroupRoleRelation { type Domain = Group; type Range = Role; const NAME: &'static str = "GroupRole"; } #[derive(Clone, Debug, Default, Entity)] pub struct Realm { #[unique] pub shortname: String, pub clients: AssocMap, pub groups: AssocMap, pub keys: AssocMap, pub roles: AssocMap, pub scopes: AssocMap, pub users: AssocMap, } #[derive(Debug, Entity)] pub struct Key { #[unique] pub key_id: String, pub key_type: Serialized, pub public_data: Vec, pub secret_data: Vec, pub expiry: time::OffsetDateTime, } #[derive(Debug, Entity)] pub struct User { #[unique] pub username: String, pub auth: AssocMap, pub groups: AssocDomain, } #[derive(Debug, Entity)] pub struct Group { #[unique] pub shortname: String, pub users: AssocRange, pub roles: AssocDomain, } #[derive(Debug, Entity)] pub struct Role { #[unique] pub shortname: String, pub groups: AssocRange, } /// OAuth2 client representation #[derive(Debug, Entity)] pub struct Client { #[unique] pub shortname: String, pub secret: String, pub key_type: Serialized, pub redirects: AssocMap, pub scopes: AssocMap, } #[derive(Debug, Entity)] pub struct ClientRedirect { pub redirect: String, } /// Requested group of permissions #[derive(Debug, Entity)] pub struct Scope { #[unique] pub shortname: String, pub roles: AssocMap, } #[derive(Database)] pub struct UIDCDatabase { pub persistent_config: IDMap, pub realms: IDMap, pub sessions: IDMap, }