schema.rs 3.4 KB

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