|
@@ -1,12 +1,21 @@
|
|
|
use crate::{
|
|
|
- client_management, config, group_management,
|
|
|
+ client_management, config,
|
|
|
key::{self, KeyType},
|
|
|
schema::{self, UIDCDatabase},
|
|
|
- scope_management, server, token_management, user_management, UIDCError,
|
|
|
+ scope_management, server, token_management, UIDCError,
|
|
|
};
|
|
|
use clap::{Parser, Subcommand};
|
|
|
-use microrm::prelude::*;
|
|
|
-use microrm::cli::ClapInterface;
|
|
|
+use microrm::{prelude::*, schema::Stored};
|
|
|
+use microrm::cli::Autogenerate;
|
|
|
+
|
|
|
+mod role;
|
|
|
+mod user;
|
|
|
+
|
|
|
+impl microrm::cli::CLIError for UIDCError {
|
|
|
+ fn no_such_entity(ename: &'static str, keys: String) -> Self {
|
|
|
+ UIDCError::AbortString(format!("no such {ename} matching {keys}"))
|
|
|
+ }
|
|
|
+}
|
|
|
|
|
|
#[derive(Debug, Parser)]
|
|
|
#[clap(author, version, about, long_about = None)]
|
|
@@ -49,11 +58,11 @@ enum Command {
|
|
|
|
|
|
struct RunArgs {
|
|
|
db: UIDCDatabase,
|
|
|
- realm: schema::Realm,
|
|
|
+ realm: Stored<schema::Realm>,
|
|
|
}
|
|
|
|
|
|
impl RootArgs {
|
|
|
- async fn run(&self) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self) -> Result<(), UIDCError> {
|
|
|
if let Command::Init = self.command {
|
|
|
return self.init().await;
|
|
|
}
|
|
@@ -68,11 +77,11 @@ impl RootArgs {
|
|
|
.ok_or(UIDCError::Abort("no such realm"))?;
|
|
|
|
|
|
let ra = RunArgs {
|
|
|
- db: db,
|
|
|
- realm: realm.wrapped(),
|
|
|
+ db,
|
|
|
+ realm,
|
|
|
};
|
|
|
|
|
|
- match &self.command {
|
|
|
+ match self.command {
|
|
|
Command::Init => unreachable!(),
|
|
|
Command::Config(v) => v.run(ra).await,
|
|
|
Command::Key(v) => v.run(ra).await,
|
|
@@ -129,7 +138,7 @@ struct KeyArgs {
|
|
|
}
|
|
|
|
|
|
impl KeyArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
match &self.command {
|
|
|
KeyCommand::List => key::list(&args.realm),
|
|
|
KeyCommand::Generate { key_type } => {
|
|
@@ -169,7 +178,9 @@ struct ClientArgs {
|
|
|
|
|
|
impl ClientArgs {
|
|
|
async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
- match &self.command {
|
|
|
+ todo!()
|
|
|
+ /*
|
|
|
+ match self.command {
|
|
|
ClientCommand::Create { name, key_type } => {
|
|
|
client_management::create(&args.realm, name, key_type.unwrap_or(KeyType::Ed25519))
|
|
|
}
|
|
@@ -178,6 +189,7 @@ impl ClientArgs {
|
|
|
}
|
|
|
ClientCommand::Inspect { name } => client_management::inspect(&args.realm, name),
|
|
|
}
|
|
|
+ */
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -195,7 +207,7 @@ struct ConfigArgs {
|
|
|
}
|
|
|
|
|
|
impl ConfigArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
match &self.command {
|
|
|
ConfigCommand::Dump => {
|
|
|
let config = config::Config::build_from(&args.db, None);
|
|
@@ -254,8 +266,9 @@ struct GroupArgs {
|
|
|
}
|
|
|
|
|
|
impl GroupArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
- match &self.command {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ todo!()
|
|
|
+ /*match &self.command {
|
|
|
GroupCommand::Create { group_name } => {
|
|
|
group_management::create_group(&args.realm, group_name)?;
|
|
|
}
|
|
@@ -292,8 +305,8 @@ impl GroupArgs {
|
|
|
} => {
|
|
|
group_management::detach_user(&args.realm, group_name, username)?;
|
|
|
}
|
|
|
- }
|
|
|
- Ok(())
|
|
|
+ }*/
|
|
|
+ // Ok(())
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -323,7 +336,7 @@ struct ScopeArgs {
|
|
|
}
|
|
|
|
|
|
impl ScopeArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
match &self.command {
|
|
|
ScopeCommand::AttachRole {
|
|
|
scope_name,
|
|
@@ -351,7 +364,7 @@ struct ServerArgs {
|
|
|
}
|
|
|
|
|
|
impl ServerArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
let config = config::Config::build_from(&args.db, None);
|
|
|
server::run_server(args.db, config, self.port.unwrap_or(2114)).await
|
|
|
}
|
|
@@ -387,7 +400,7 @@ struct TokenArgs {
|
|
|
}
|
|
|
|
|
|
impl TokenArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
let config = config::Config::build_from(&args.db, None);
|
|
|
match &self.command {
|
|
|
TokenCommand::GenerateAuth {
|
|
@@ -437,11 +450,11 @@ enum RoleCommand {
|
|
|
#[derive(Debug, Parser)]
|
|
|
struct RoleArgs {
|
|
|
#[clap(subcommand)]
|
|
|
- command: ClapInterface<schema::Role>,
|
|
|
+ command: Autogenerate<role::RoleInterface>,
|
|
|
}
|
|
|
|
|
|
impl RoleArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
self.command.perform(&args.realm, &args.realm.roles, &args.realm.roles)
|
|
|
}
|
|
|
}
|
|
@@ -462,11 +475,11 @@ enum UserCommand {
|
|
|
#[derive(Debug, Parser)]
|
|
|
struct UserArgs {
|
|
|
#[clap(subcommand)]
|
|
|
- command: ClapInterface<schema::User>,
|
|
|
+ command: Autogenerate<user::UserInterface>,
|
|
|
}
|
|
|
|
|
|
impl UserArgs {
|
|
|
- async fn run(&self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
+ async fn run(self, args: RunArgs) -> Result<(), UIDCError> {
|
|
|
self.command.perform(&args.realm, &args.realm.users, &args.realm.users)
|
|
|
}
|
|
|
}
|