schema.rs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152
  1. pub use microrm::prelude::{Entity, Database};
  2. use microrm::schema::{IDMap, AssocMap, Serialized, Relation, AssocDomain, AssocRange};
  3. use serde::{Deserialize, Serialize};
  4. use crate::key::KeyType;
  5. // ----------------------------------------------------------------------
  6. // uidc internal types
  7. // ----------------------------------------------------------------------
  8. /// Simple key-value store for persistent configuration
  9. #[derive(Debug, Entity)]
  10. pub struct PersistentConfig {
  11. #[unique]
  12. pub key: String,
  13. pub value: String,
  14. }
  15. // ----------------------------------------------------------------------
  16. // Session types
  17. // ----------------------------------------------------------------------
  18. #[derive(Debug, Entity)]
  19. pub struct Session {
  20. auth: AssocMap<SessionAuth>,
  21. // expiry: std::time::SystemTime
  22. }
  23. #[derive(Debug, Entity)]
  24. pub struct SessionAuth {
  25. pub realm: RealmID,
  26. pub user: Option<UserID>,
  27. pub pending_user: Option<UserID>,
  28. pub pending_challenges: Serialized<Vec<AuthChallengeType>>,
  29. }
  30. #[derive(Clone, Copy, Debug, PartialEq, PartialOrd, Serialize, Deserialize)]
  31. pub enum AuthChallengeType {
  32. Username,
  33. Password,
  34. TOTP,
  35. Grid,
  36. WebAuthn,
  37. }
  38. #[derive(Debug, Entity)]
  39. pub struct AuthChallenge {
  40. #[unique]
  41. pub challenge_type: Serialized<AuthChallengeType>,
  42. pub public: Vec<u8>,
  43. pub secret: Vec<u8>,
  44. pub enabled: bool,
  45. }
  46. // ----------------------------------------------------------------------
  47. // OIDC types
  48. // ----------------------------------------------------------------------
  49. pub struct UserGroupRelation;
  50. impl Relation for UserGroupRelation {
  51. type Domain = User;
  52. type Range = Group;
  53. const NAME: &'static str = "UserGroup";
  54. }
  55. pub struct GroupRoleRelation;
  56. impl Relation for GroupRoleRelation {
  57. type Domain = Group;
  58. type Range = Role;
  59. const NAME: &'static str = "GroupRole";
  60. }
  61. #[derive(Clone, Debug, Default, Entity)]
  62. pub struct Realm {
  63. #[unique]
  64. pub shortname: String,
  65. pub clients: AssocMap<Client>,
  66. pub groups: AssocMap<Group>,
  67. pub keys: AssocMap<Key>,
  68. pub roles: AssocMap<Role>,
  69. pub scopes: AssocMap<Scope>,
  70. pub users: AssocMap<User>,
  71. }
  72. #[derive(Debug, Entity)]
  73. pub struct Key {
  74. #[unique]
  75. pub key_id: String,
  76. pub key_type: Serialized<KeyType>,
  77. pub public_data: Vec<u8>,
  78. pub secret_data: Vec<u8>,
  79. pub expiry: time::OffsetDateTime,
  80. }
  81. #[derive(Debug, Entity)]
  82. pub struct User {
  83. #[unique]
  84. pub username: String,
  85. pub auth: AssocMap<AuthChallenge>,
  86. pub groups: AssocDomain<UserGroupRelation>,
  87. }
  88. #[derive(Debug, Entity)]
  89. pub struct Group {
  90. #[unique]
  91. pub shortname: String,
  92. pub users: AssocRange<UserGroupRelation>,
  93. pub roles: AssocDomain<GroupRoleRelation>,
  94. }
  95. #[derive(Debug, Entity)]
  96. pub struct Role {
  97. #[unique]
  98. pub shortname: String,
  99. pub groups: AssocRange<GroupRoleRelation>,
  100. }
  101. /// OAuth2 client representation
  102. #[derive(Debug, Entity)]
  103. pub struct Client {
  104. #[unique]
  105. pub shortname: String,
  106. pub secret: String,
  107. pub key_type: Serialized<KeyType>,
  108. pub redirects: AssocMap<ClientRedirect>,
  109. pub scopes: AssocMap<Scope>,
  110. }
  111. #[derive(Debug, Entity)]
  112. pub struct ClientRedirect {
  113. pub redirect: String,
  114. }
  115. /// Requested group of permissions
  116. #[derive(Debug, Entity)]
  117. pub struct Scope {
  118. #[unique]
  119. pub shortname: String,
  120. pub roles: AssocMap<Role>,
  121. }
  122. #[derive(Database)]
  123. pub struct UIDCDatabase {
  124. pub persistent_config: IDMap<PersistentConfig>,
  125. pub realms: IDMap<Realm>,
  126. pub sessions: IDMap<Session>,
  127. }