|
@@ -1,3 +1,4 @@
|
|
|
+use microrm::make_index;
|
|
|
pub use microrm::{Entity, Modelable, Schema};
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
@@ -8,6 +9,8 @@ pub struct PersistentConfig {
|
|
|
pub value: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!PersistentConfigIndex, PersistentConfig::Key);
|
|
|
+
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Session {
|
|
|
pub key: String,
|
|
@@ -19,22 +22,26 @@ microrm::make_index!(!SessionKeyIndex, Session::Key);
|
|
|
/// Authentication state for a session. If no challenges are left, it's considered authorized.
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct SessionAuthentication {
|
|
|
- #[microrm_foreign]
|
|
|
- pub session: SessionID,
|
|
|
#[microrm_foreign]
|
|
|
pub realm: RealmID,
|
|
|
#[microrm_foreign]
|
|
|
+ pub session: SessionID,
|
|
|
+ #[microrm_foreign]
|
|
|
pub user: UserID,
|
|
|
|
|
|
pub challenges_left: Vec<AuthChallengeType>,
|
|
|
}
|
|
|
|
|
|
+make_index!(!SessionAuthenticationIndex, SessionAuthentication::Realm, SessionAuthentication::Session, SessionAuthentication::User);
|
|
|
+
|
|
|
// **** oauth types ****
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Realm {
|
|
|
pub shortname: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!RealmIndex, Realm::Shortname);
|
|
|
+
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Key {
|
|
|
#[microrm_foreign]
|
|
@@ -52,6 +59,8 @@ pub struct User {
|
|
|
pub username: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!UserIndex, User::Realm, User::Username);
|
|
|
+
|
|
|
#[derive(Clone, Copy, Debug, PartialEq, Modelable, Serialize, Deserialize)]
|
|
|
pub enum AuthChallengeType {
|
|
|
Username,
|
|
@@ -72,6 +81,8 @@ pub struct AuthChallenge {
|
|
|
pub secret: Vec<u8>,
|
|
|
}
|
|
|
|
|
|
+make_index!(AuthChallengeIndex, AuthChallenge::User);
|
|
|
+
|
|
|
/// User semantic grouping
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Group {
|
|
@@ -80,6 +91,8 @@ pub struct Group {
|
|
|
pub shortname: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!GroupIndex, Group::Realm, Group::Shortname);
|
|
|
+
|
|
|
/// User membership in group
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct GroupMembership {
|
|
@@ -89,6 +102,8 @@ pub struct GroupMembership {
|
|
|
pub user: UserID,
|
|
|
}
|
|
|
|
|
|
+make_index!(!GroupMembershipIndex, GroupMembership::Group, GroupMembership::User);
|
|
|
+
|
|
|
/// OAuth2 client representation
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Client {
|
|
@@ -98,7 +113,7 @@ pub struct Client {
|
|
|
pub secret: String,
|
|
|
}
|
|
|
|
|
|
-microrm::make_index!(!ClientNameIndex, Client::Realm, Client::Shortname);
|
|
|
+make_index!(!ClientNameIndex, Client::Realm, Client::Shortname);
|
|
|
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct ClientRedirect {
|
|
@@ -107,6 +122,8 @@ pub struct ClientRedirect {
|
|
|
pub redirect: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(ClientRedirectIndex, ClientRedirect::Client);
|
|
|
+
|
|
|
/// Requested group of permissions
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Scope {
|
|
@@ -115,6 +132,8 @@ pub struct Scope {
|
|
|
pub shortname: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!ScopeIndex, Scope::Realm, Scope::Shortname);
|
|
|
+
|
|
|
/// Specific atomic permission
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct Role {
|
|
@@ -123,6 +142,8 @@ pub struct Role {
|
|
|
pub shortname: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!RoleIndex, Role::Realm, Role::Shortname);
|
|
|
+
|
|
|
/// Role membership in scope
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct ScopeRole {
|
|
@@ -132,6 +153,8 @@ pub struct ScopeRole {
|
|
|
pub role: RoleID,
|
|
|
}
|
|
|
|
|
|
+make_index!(!ScopeRoleIndex, ScopeRole::Scope, ScopeRole::Role);
|
|
|
+
|
|
|
/// Assigned permissions in group
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct GroupRole {
|
|
@@ -141,6 +164,8 @@ pub struct GroupRole {
|
|
|
pub role: RoleID,
|
|
|
}
|
|
|
|
|
|
+make_index!(!GroupRoleIndex, GroupRole::Group, GroupRole::Role);
|
|
|
+
|
|
|
#[derive(Debug, Entity, Serialize, Deserialize)]
|
|
|
pub struct RevokedToken {
|
|
|
#[microrm_foreign]
|
|
@@ -148,25 +173,42 @@ pub struct RevokedToken {
|
|
|
pub nonce: String,
|
|
|
}
|
|
|
|
|
|
+make_index!(!RevokedTokenIndex, RevokedToken::User, RevokedToken::Nonce);
|
|
|
+
|
|
|
pub fn schema() -> Schema {
|
|
|
Schema::new()
|
|
|
+ // global config types
|
|
|
.entity::<PersistentConfig>()
|
|
|
+ .index::<PersistentConfigIndex>()
|
|
|
+ // session types
|
|
|
.entity::<Session>()
|
|
|
.index::<SessionKeyIndex>()
|
|
|
.entity::<SessionAuthentication>()
|
|
|
+ .index::<SessionAuthenticationIndex>()
|
|
|
// oauth types
|
|
|
.entity::<Realm>()
|
|
|
+ .index::<RealmIndex>()
|
|
|
.entity::<Key>()
|
|
|
.entity::<User>()
|
|
|
+ .index::<UserIndex>()
|
|
|
.entity::<AuthChallenge>()
|
|
|
+ .index::<AuthChallengeIndex>()
|
|
|
.entity::<Group>()
|
|
|
+ .index::<GroupIndex>()
|
|
|
.entity::<GroupMembership>()
|
|
|
+ .index::<GroupMembershipIndex>()
|
|
|
.entity::<Client>()
|
|
|
.index::<ClientNameIndex>()
|
|
|
.entity::<ClientRedirect>()
|
|
|
+ .index::<ClientRedirectIndex>()
|
|
|
.entity::<Scope>()
|
|
|
+ .index::<ScopeIndex>()
|
|
|
.entity::<Role>()
|
|
|
+ .index::<RoleIndex>()
|
|
|
.entity::<ScopeRole>()
|
|
|
+ .index::<ScopeRoleIndex>()
|
|
|
.entity::<GroupRole>()
|
|
|
+ .index::<GroupRoleIndex>()
|
|
|
.entity::<RevokedToken>()
|
|
|
+ .index::<RevokedTokenIndex>()
|
|
|
}
|