|
@@ -1,7 +1,5 @@
|
|
use crate::{
|
|
use crate::{
|
|
- cert, client_management, config,
|
|
|
|
- schema::{self, schema},
|
|
|
|
- server, token, user_management,
|
|
|
|
|
|
+ key, client_management, config, schema::{self, RealmID}, server, token, user_management, UIDCError,
|
|
};
|
|
};
|
|
use clap::{Parser, Subcommand};
|
|
use clap::{Parser, Subcommand};
|
|
use microrm::prelude::*;
|
|
use microrm::prelude::*;
|
|
@@ -9,7 +7,7 @@ use microrm::prelude::*;
|
|
#[derive(Debug, Parser)]
|
|
#[derive(Debug, Parser)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
#[clap(author, version, about, long_about = None)]
|
|
struct RootArgs {
|
|
struct RootArgs {
|
|
- #[clap(short, long, default_value_t = String::from("uauth.db"))]
|
|
|
|
|
|
+ #[clap(short, long, default_value_t = String::from("uidc.db"))]
|
|
/// Database path
|
|
/// Database path
|
|
db: String,
|
|
db: String,
|
|
|
|
|
|
@@ -25,14 +23,14 @@ struct RootArgs {
|
|
enum Command {
|
|
enum Command {
|
|
/// database initialization
|
|
/// database initialization
|
|
Init,
|
|
Init,
|
|
- /// certificate management
|
|
|
|
- Cert(CertArgs),
|
|
|
|
/// OAuth2 client management
|
|
/// OAuth2 client management
|
|
Client(ClientArgs),
|
|
Client(ClientArgs),
|
|
/// general configuration
|
|
/// general configuration
|
|
Config(ConfigArgs),
|
|
Config(ConfigArgs),
|
|
/// permissions grouping management
|
|
/// permissions grouping management
|
|
Group(GroupArgs),
|
|
Group(GroupArgs),
|
|
|
|
+ /// key management
|
|
|
|
+ Key(KeyArgs),
|
|
/// run the actual OIDC server
|
|
/// run the actual OIDC server
|
|
Server(ServerArgs),
|
|
Server(ServerArgs),
|
|
/// manual token generation and inspection
|
|
/// manual token generation and inspection
|
|
@@ -43,26 +41,25 @@ enum Command {
|
|
User(UserArgs),
|
|
User(UserArgs),
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+struct RunArgs {
|
|
|
|
+ db: microrm::DB,
|
|
|
|
+ realm: RealmID,
|
|
|
|
+}
|
|
|
|
+
|
|
impl RootArgs {
|
|
impl RootArgs {
|
|
- async fn run(&self) {
|
|
|
|
|
|
+ async fn run(&self) -> Result<(), UIDCError> {
|
|
if let Command::Init = self.command {
|
|
if let Command::Init = self.command {
|
|
return self.init().await;
|
|
return self.init().await;
|
|
}
|
|
}
|
|
|
|
|
|
- let storage = microrm::DB::new(schema::schema(), &self.db, microrm::CreateMode::MustExist);
|
|
|
|
-
|
|
|
|
- if let Err(e) = storage {
|
|
|
|
- println!("Error occured while loading database: {}", e);
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- let storage = storage.unwrap();
|
|
|
|
|
|
+ let storage = microrm::DB::new(schema::schema(), &self.db, microrm::CreateMode::MustExist).map_err(|_| UIDCError::Abort("Error accessing database"))?;
|
|
|
|
|
|
match &self.command {
|
|
match &self.command {
|
|
Command::Init => unreachable!(),
|
|
Command::Init => unreachable!(),
|
|
- Command::Cert(v) => v.run(&self, storage).await,
|
|
|
|
Command::Config(v) => v.run(&self, storage).await,
|
|
Command::Config(v) => v.run(&self, storage).await,
|
|
Command::Client(v) => v.run(&self, storage).await,
|
|
Command::Client(v) => v.run(&self, storage).await,
|
|
Command::Group(v) => v.run(&self, storage).await,
|
|
Command::Group(v) => v.run(&self, storage).await,
|
|
|
|
+ Command::Key(v) => v.run(&self, storage).await,
|
|
Command::Server(v) => v.run(&self, storage).await,
|
|
Command::Server(v) => v.run(&self, storage).await,
|
|
Command::Token(v) => v.run(&self, storage).await,
|
|
Command::Token(v) => v.run(&self, storage).await,
|
|
Command::Role(v) => v.run(&self, storage).await,
|
|
Command::Role(v) => v.run(&self, storage).await,
|
|
@@ -70,13 +67,12 @@ impl RootArgs {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
- async fn init(&self) {
|
|
|
|
|
|
+ async fn init(&self) -> Result<(), UIDCError> {
|
|
// first check to see if the database is already vaguely set up
|
|
// first check to see if the database is already vaguely set up
|
|
let maybedb = microrm::DB::new(schema::schema(), &self.db, microrm::CreateMode::MustExist);
|
|
let maybedb = microrm::DB::new(schema::schema(), &self.db, microrm::CreateMode::MustExist);
|
|
|
|
|
|
if maybedb.is_ok() {
|
|
if maybedb.is_ok() {
|
|
- println!("Database already initialized, not overwriting!");
|
|
|
|
- return;
|
|
|
|
|
|
+ return Err(UIDCError::Abort("Database already initialized, not overwriting!"));
|
|
}
|
|
}
|
|
|
|
|
|
log::info!("Initializing!");
|
|
log::info!("Initializing!");
|
|
@@ -92,33 +88,34 @@ impl RootArgs {
|
|
db.query_interface()
|
|
db.query_interface()
|
|
.add(&schema::Realm {
|
|
.add(&schema::Realm {
|
|
shortname: "primary".to_string(),
|
|
shortname: "primary".to_string(),
|
|
- })
|
|
|
|
- .expect("couldn't add realm");
|
|
|
|
|
|
+ })?;
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
#[derive(Debug, Subcommand)]
|
|
#[derive(Debug, Subcommand)]
|
|
-enum CertCommand {
|
|
|
|
|
|
+enum KeyCommand {
|
|
Inspect,
|
|
Inspect,
|
|
Generate,
|
|
Generate,
|
|
}
|
|
}
|
|
|
|
|
|
#[derive(Debug, Parser)]
|
|
#[derive(Debug, Parser)]
|
|
-struct CertArgs {
|
|
|
|
|
|
+struct KeyArgs {
|
|
#[clap(subcommand)]
|
|
#[clap(subcommand)]
|
|
- command: CertCommand,
|
|
|
|
|
|
+ command: KeyCommand,
|
|
}
|
|
}
|
|
|
|
|
|
-impl CertArgs {
|
|
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+impl KeyArgs {
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
match &self.command {
|
|
match &self.command {
|
|
- CertCommand::Inspect => {
|
|
|
|
- cert::inspect(&db, &root.realm);
|
|
|
|
|
|
+ KeyCommand::Inspect => {
|
|
|
|
+ key::inspect(&db, &root.realm);
|
|
}
|
|
}
|
|
- CertCommand::Generate => {
|
|
|
|
- cert::generate(&db, &root.realm);
|
|
|
|
|
|
+ KeyCommand::Generate => {
|
|
|
|
+ key::generate(&db, &root.realm);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -136,7 +133,7 @@ struct ClientArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl ClientArgs {
|
|
impl ClientArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
match &self.command {
|
|
match &self.command {
|
|
ClientCommand::Create { name } => {
|
|
ClientCommand::Create { name } => {
|
|
client_management::create(&db, root.realm.as_str(), name);
|
|
client_management::create(&db, root.realm.as_str(), name);
|
|
@@ -146,6 +143,7 @@ impl ClientArgs {
|
|
client_management::inspect(&db, name);
|
|
client_management::inspect(&db, name);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -163,7 +161,7 @@ struct ConfigArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl ConfigArgs {
|
|
impl ConfigArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
match &self.command {
|
|
match &self.command {
|
|
ConfigCommand::Dump => {
|
|
ConfigCommand::Dump => {
|
|
let qi = db.query_interface();
|
|
let qi = db.query_interface();
|
|
@@ -185,6 +183,7 @@ impl ConfigArgs {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -205,7 +204,7 @@ struct GroupArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl GroupArgs {
|
|
impl GroupArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
let qi = db.query_interface();
|
|
let qi = db.query_interface();
|
|
let realm_id = qi.get().by(schema::Realm::Shortname, root.realm.as_str()).one().unwrap().expect("no such realm").id();
|
|
let realm_id = qi.get().by(schema::Realm::Shortname, root.realm.as_str()).one().unwrap().expect("no such realm").id();
|
|
match &self.command {
|
|
match &self.command {
|
|
@@ -285,6 +284,7 @@ impl GroupArgs {
|
|
|
|
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -295,7 +295,7 @@ struct ServerArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl ServerArgs {
|
|
impl ServerArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
server::run_server(db, config, self.port.unwrap_or(2114)).await
|
|
server::run_server(db, config, self.port.unwrap_or(2114)).await
|
|
}
|
|
}
|
|
@@ -331,7 +331,7 @@ struct TokenArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl TokenArgs {
|
|
impl TokenArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
match &self.command {
|
|
match &self.command {
|
|
TokenCommand::GenerateAuth {
|
|
TokenCommand::GenerateAuth {
|
|
@@ -383,6 +383,7 @@ impl TokenArgs {
|
|
} => {}
|
|
} => {}
|
|
TokenCommand::Inspect { token } => {}
|
|
TokenCommand::Inspect { token } => {}
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -400,7 +401,7 @@ struct RoleArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl RoleArgs {
|
|
impl RoleArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
let config = config::Config::build_from(&db.query_interface(), None);
|
|
match &self.command {
|
|
match &self.command {
|
|
RoleCommand::List => {
|
|
RoleCommand::List => {
|
|
@@ -429,6 +430,7 @@ impl RoleArgs {
|
|
qi.delete().by(schema::Role::Realm, &realm.id()).by(schema::Role::Shortname, name.as_str()).exec().unwrap();
|
|
qi.delete().by(schema::Role::Realm, &realm.id()).by(schema::Role::Shortname, name.as_str()).exec().unwrap();
|
|
},
|
|
},
|
|
}
|
|
}
|
|
|
|
+ Ok(())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
@@ -456,7 +458,7 @@ struct UserArgs {
|
|
}
|
|
}
|
|
|
|
|
|
impl UserArgs {
|
|
impl UserArgs {
|
|
- async fn run(&self, root: &RootArgs, db: microrm::DB) {
|
|
|
|
|
|
+ async fn run(&self, root: &RootArgs, db: microrm::DB) -> Result<(), UIDCError> {
|
|
match &self.command {
|
|
match &self.command {
|
|
UserCommand::List => user_management::list(&root.realm, db),
|
|
UserCommand::List => user_management::list(&root.realm, db),
|
|
UserCommand::Create { username } => {
|
|
UserCommand::Create { username } => {
|
|
@@ -468,7 +470,7 @@ impl UserArgs {
|
|
username.as_str(),
|
|
username.as_str(),
|
|
*change_password > 0,
|
|
*change_password > 0,
|
|
),
|
|
),
|
|
- UserCommand::Inspect { username } => user_management::inspect(&root.realm, db, username.as_str()).expect("database error"),
|
|
|
|
|
|
+ UserCommand::Inspect { username } => user_management::inspect(&root.realm, db, username.as_str()),
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
@@ -476,6 +478,10 @@ impl UserArgs {
|
|
pub fn invoked() {
|
|
pub fn invoked() {
|
|
let args = RootArgs::parse();
|
|
let args = RootArgs::parse();
|
|
|
|
|
|
- smol::block_on(args.run());
|
|
|
|
- // async_std::task::block_on(args.run());
|
|
|
|
|
|
+ match smol::block_on(args.run()) {
|
|
|
|
+ Ok(_) => (),
|
|
|
|
+ Err(e) => {
|
|
|
|
+ log::error!("Error occured while running command: {}", e);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
}
|
|
}
|