user.rs 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. use microrm::{prelude::*, schema::entity::EntityID};
  2. use crate::{schema, user_management, UIDCError};
  3. #[derive(Debug)]
  4. pub struct UserInterface;
  5. #[derive(Debug, clap::Subcommand)]
  6. pub enum UserCommands {
  7. Create { username: String },
  8. UpdateAuth {
  9. username: String,
  10. #[clap(short = 'p', long, action = clap::ArgAction::Count)]
  11. password: u8,
  12. #[clap(short = 't', long, action = clap::ArgAction::Count)]
  13. totp: u8,
  14. },
  15. }
  16. impl microrm::cli::EntityInterface for UserInterface {
  17. type Error = UIDCError;
  18. type Entity = schema::User;
  19. type Context = microrm::schema::Stored<schema::Realm>;
  20. type CustomCommand = UserCommands;
  21. fn run_custom(
  22. ctx: &Self::Context,
  23. cmd: Self::CustomCommand,
  24. query_ctx: impl Queryable<EntityOutput = Self::Entity> + Insertable<Self::Entity>,
  25. ) -> Result<(), Self::Error> {
  26. match cmd {
  27. UserCommands::Create { username } => {
  28. query_ctx.insert(schema::User {
  29. realm: ctx.id(),
  30. username,
  31. auth: Default::default(),
  32. groups: Default::default(),
  33. })?;
  34. },
  35. UserCommands::UpdateAuth { username, password, totp } => {
  36. user_management::change_auth(ctx.as_ref(), &username, password > 0, totp > 0)?;
  37. },
  38. }
  39. Ok(())
  40. }
  41. fn should_override(_entity: &'static str, field: &'static str, _role: microrm::cli::ValueRole) -> bool {
  42. if field == "realm" {
  43. true
  44. }
  45. else {
  46. false
  47. }
  48. }
  49. fn override_for(
  50. ctx: &Self::Context,
  51. _entity: &'static str,
  52. field: &'static str,
  53. _role: microrm::cli::ValueRole,
  54. ) -> String {
  55. if field == "realm" {
  56. format!("{}", ctx.id().into_raw())
  57. }
  58. else {
  59. unreachable!()
  60. }
  61. }
  62. }