schema.rs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159
  1. pub use microrm::{Schema, Entity, Modelable};
  2. use serde::{Deserialize, Serialize};
  3. #[derive(Debug, Entity, Serialize, Deserialize)]
  4. pub struct Session {
  5. pub key: String,
  6. // TODO: add expiry here
  7. }
  8. microrm::make_index!(!SessionKeyIndex, Session::Key);
  9. #[derive(Debug, Entity, Serialize, Deserialize)]
  10. pub struct SessionAuthentication {
  11. #[microrm_foreign]
  12. pub session: SessionID,
  13. #[microrm_foreign]
  14. pub realm: RealmID,
  15. #[microrm_foreign]
  16. pub user: UserID,
  17. pub challenges_left: Vec<AuthChallengeType>,
  18. }
  19. // **** oauth types ****
  20. #[derive(Debug, Entity, Serialize, Deserialize)]
  21. pub struct Realm {
  22. pub shortname: String,
  23. }
  24. #[derive(Debug, Entity, Serialize, Deserialize)]
  25. pub struct Key {
  26. #[microrm_foreign]
  27. pub realm: RealmID,
  28. pub key_id: String,
  29. #[serde(with = "serde_bytes")]
  30. pub keydata: Vec<u8>,
  31. }
  32. /// End-user representation object
  33. #[derive(Debug, Entity, Serialize, Deserialize)]
  34. pub struct User {
  35. #[microrm_foreign]
  36. pub realm: RealmID,
  37. pub username: String,
  38. }
  39. #[derive(Clone, Copy, Debug, PartialEq, Modelable, Serialize, Deserialize)]
  40. pub enum AuthChallengeType {
  41. Username,
  42. Password,
  43. TOTP,
  44. Grid,
  45. WebAuthn,
  46. }
  47. #[derive(Debug, Entity, Serialize, Deserialize)]
  48. pub struct AuthChallenge {
  49. #[microrm_foreign]
  50. pub user: UserID,
  51. pub challenge_type: AuthChallengeType,
  52. #[serde(with = "serde_bytes")]
  53. pub public: Vec<u8>,
  54. #[serde(with = "serde_bytes")]
  55. pub secret: Vec<u8>,
  56. }
  57. /// User semantic grouping
  58. #[derive(Debug, Entity, Serialize, Deserialize)]
  59. pub struct Group {
  60. #[microrm_foreign]
  61. pub realm: RealmID,
  62. pub shortname: String,
  63. }
  64. /// User membership in group
  65. #[derive(Debug, Entity,Serialize,Deserialize)]
  66. pub struct GroupMembership {
  67. pub group: GroupID,
  68. pub user: UserID,
  69. }
  70. /// OAuth2 client representation
  71. #[derive(Debug, Entity, Serialize, Deserialize)]
  72. pub struct Client {
  73. #[microrm_foreign]
  74. pub realm: RealmID,
  75. pub shortname: String,
  76. pub secret: String,
  77. }
  78. microrm::make_index!(
  79. !ClientNameIndex,
  80. Client::Realm,
  81. Client::Shortname
  82. );
  83. #[derive(Debug, Entity, Serialize, Deserialize)]
  84. pub struct ClientRedirect {
  85. #[microrm_foreign]
  86. pub client: ClientID,
  87. pub redirect: String,
  88. }
  89. /// Requested group of permissions
  90. #[derive(Debug, Entity, Serialize, Deserialize)]
  91. pub struct Scope {
  92. #[microrm_foreign]
  93. pub realm: RealmID,
  94. pub shortname: String,
  95. }
  96. /// Specific atomic permission
  97. #[derive(Debug, Entity, Serialize, Deserialize)]
  98. pub struct Role {
  99. #[microrm_foreign]
  100. pub realm: RealmID,
  101. pub shortname: String,
  102. }
  103. /// Role membership in scope
  104. #[derive(Debug, Entity,Serialize,Deserialize)]
  105. pub struct ScopeRole {
  106. pub scope: ScopeID,
  107. pub role: RoleID,
  108. }
  109. /// Assigned permissions in group
  110. #[derive(Debug, Entity,Serialize,Deserialize)]
  111. pub struct GroupRole {
  112. pub scope: ScopeID,
  113. pub role: RoleID,
  114. }
  115. #[derive(Debug, Entity,Serialize,Deserialize)]
  116. pub struct RevokedToken {
  117. pub user: UserID,
  118. pub nonce: String,
  119. }
  120. pub fn schema() -> Schema {
  121. Schema::new()
  122. .entity::<Session>()
  123. .index::<SessionKeyIndex>()
  124. .entity::<SessionAuthentication>()
  125. // oauth types
  126. .entity::<Realm>()
  127. .entity::<Key>()
  128. .entity::<User>()
  129. .entity::<AuthChallenge>()
  130. .entity::<Group>()
  131. .entity::<Client>()
  132. .index::<ClientNameIndex>()
  133. .entity::<ClientRedirect>()
  134. .entity::<Scope>()
  135. .entity::<Role>()
  136. .entity::<ScopeRole>()
  137. .entity::<GroupRole>()
  138. .entity::<RevokedToken>()
  139. }