scope_management.rs 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. use crate::{schema, UIDCError};
  2. use microrm::prelude::*;
  3. pub fn create_scope(
  4. qi: &microrm::QueryInterface,
  5. realm_id: schema::RealmID,
  6. name: &str,
  7. ) -> Result<(), UIDCError> {
  8. qi.add(&schema::Scope {
  9. realm: realm_id,
  10. shortname: name.into(),
  11. })?;
  12. Ok(())
  13. }
  14. pub fn list_scopes(
  15. qi: &microrm::QueryInterface,
  16. realm_id: schema::RealmID,
  17. ) -> Result<(), UIDCError> {
  18. for scope in qi.get().by(schema::Scope::Realm, &realm_id).all()? {
  19. println!("{}", scope.shortname);
  20. }
  21. Ok(())
  22. }
  23. pub fn inspect_scope(
  24. qi: &microrm::QueryInterface,
  25. realm_id: schema::RealmID,
  26. scope_name: &str,
  27. ) -> Result<(), UIDCError> {
  28. let scope = qi
  29. .get()
  30. .by(schema::Scope::Realm, &realm_id)
  31. .by(schema::Scope::Shortname, scope_name)
  32. .one()?
  33. .ok_or(UIDCError::Abort("no such scope"))?;
  34. println!("scope name: {}", scope.shortname);
  35. println!("attached roles:");
  36. for scope_role in qi.get().by(schema::ScopeRole::Scope, &scope.id()).all()? {
  37. let role = qi
  38. .get()
  39. .by_id(&scope_role.role)
  40. .one()?
  41. .ok_or(UIDCError::Abort("role referenced that no longer exists?"))?;
  42. println!(" - {}", role.shortname);
  43. }
  44. Ok(())
  45. }
  46. pub fn attach_role(
  47. qi: &microrm::QueryInterface,
  48. realm_id: schema::RealmID,
  49. scope_name: &str,
  50. role_name: &str,
  51. ) -> Result<(), UIDCError> {
  52. let scope = qi
  53. .get()
  54. .by(schema::Scope::Realm, &realm_id)
  55. .by(schema::Scope::Shortname, scope_name)
  56. .one()?;
  57. let role = qi
  58. .get()
  59. .by(schema::Role::Realm, &realm_id)
  60. .by(schema::Role::Shortname, role_name)
  61. .one()?;
  62. match (scope, role) {
  63. (None, _) => Err(UIDCError::Abort("no such scope")),
  64. (_, None) => Err(UIDCError::Abort("no such role")),
  65. (Some(scope), Some(role)) => {
  66. qi.add(&schema::ScopeRole {
  67. scope: scope.id(),
  68. role: role.id(),
  69. })?;
  70. Ok(())
  71. }
  72. }
  73. }
  74. pub fn detach_role(
  75. qi: &microrm::QueryInterface,
  76. realm_id: schema::RealmID,
  77. scope_name: &str,
  78. role_name: &str,
  79. ) -> Result<(), UIDCError> {
  80. let scope = qi
  81. .get()
  82. .by(schema::Scope::Realm, &realm_id)
  83. .by(schema::Scope::Shortname, scope_name)
  84. .one()?;
  85. let role = qi
  86. .get()
  87. .by(schema::Role::Realm, &realm_id)
  88. .by(schema::Role::Shortname, role_name)
  89. .one()?;
  90. if let Some((scope, role)) = scope.as_ref().zip(role) {
  91. qi.delete()
  92. .by(schema::ScopeRole::Scope, &scope.id())
  93. .by(schema::ScopeRole::Role, &role.id())
  94. .exec()?
  95. } else if scope.is_none() {
  96. println!("No such scope!");
  97. } else {
  98. println!("No such role!");
  99. }
  100. Ok(())
  101. }