client.rs 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. use std::str::FromStr;
  2. use crate::{client_management, key, schema, UIDCError};
  3. use microrm::{prelude::*, schema::entity::EntityID};
  4. #[derive(Debug)]
  5. pub struct ClientInterface;
  6. #[derive(Debug, clap::Subcommand)]
  7. pub enum ClientCommands {
  8. Create { name: String, key_type: String },
  9. RotateSecret { name: String },
  10. AddRedirect { name: String, pattern: String },
  11. }
  12. impl microrm::cli::EntityInterface for ClientInterface {
  13. type Error = UIDCError;
  14. type Entity = schema::Client;
  15. type Context = microrm::schema::Stored<schema::Realm>;
  16. type CustomCommand = ClientCommands;
  17. fn run_custom(
  18. ctx: &Self::Context,
  19. cmd: Self::CustomCommand,
  20. _query_ctx: impl Queryable<EntityOutput = Self::Entity> + Insertable<Self::Entity>,
  21. ) -> Result<(), Self::Error> {
  22. match cmd {
  23. ClientCommands::Create { name, key_type } => {
  24. let kt = key::KeyType::from_str(key_type.as_str())?;
  25. client_management::create(ctx, &name, kt)?;
  26. }
  27. ClientCommands::RotateSecret { name } => {
  28. client_management::rotate_secret(ctx, &name)?;
  29. }
  30. ClientCommands::AddRedirect { name, pattern } => {
  31. client_management::add_redirect(ctx, name.as_str(), pattern.as_str())?;
  32. }
  33. }
  34. Ok(())
  35. }
  36. fn should_override(
  37. _entity: &'static str,
  38. field: &'static str,
  39. _role: microrm::cli::ValueRole,
  40. ) -> bool {
  41. if field == "realm" {
  42. true
  43. } else {
  44. false
  45. }
  46. }
  47. fn override_for(
  48. ctx: &Self::Context,
  49. _entity: &'static str,
  50. field: &'static str,
  51. _role: microrm::cli::ValueRole,
  52. ) -> String {
  53. if field == "realm" {
  54. format!("{}", ctx.id().into_raw())
  55. } else {
  56. unreachable!()
  57. }
  58. }
  59. }