use crate::prelude::fetch_all_role_assignments;
use crate::prelude::fetch_all_role_definitions;
use cloud_terrastodon_azure_types::prelude::RoleDefinitionsAndAssignments;
use cloud_terrastodon_command::CacheInvalidatable;
use cloud_terrastodon_command::CacheableCommand;
use cloud_terrastodon_command::async_trait;
use std::pin::Pin;
use tokio::try_join;
#[must_use = "This is a future request, you must .await it"]
pub struct RoleDefinitionsAndAssignmentsListRequest;
pub fn fetch_all_role_definitions_and_assignments() -> RoleDefinitionsAndAssignmentsListRequest {
RoleDefinitionsAndAssignmentsListRequest
}
#[async_trait]
impl CacheInvalidatable for RoleDefinitionsAndAssignmentsListRequest {
async fn invalidate(&self) -> eyre::Result<()> {
let definitions = fetch_all_role_definitions().cache_key();
let assignments = fetch_all_role_assignments().cache_key();
try_join!(definitions.invalidate(), assignments.invalidate())?;
Ok(())
}
}
impl IntoFuture for RoleDefinitionsAndAssignmentsListRequest {
type Output = eyre::Result<RoleDefinitionsAndAssignments>;
type IntoFuture = Pin<Box<dyn std::future::Future<Output = Self::Output> + Send>>;
fn into_future(self) -> Self::IntoFuture {
Box::pin(async move {
let (role_definitions, role_assignments) =
try_join!(fetch_all_role_definitions(), fetch_all_role_assignments())?;
RoleDefinitionsAndAssignments::try_new(role_definitions, role_assignments)
})
}
}
#[cfg(test)]
mod test {
use crate::prelude::fetch_all_role_definitions_and_assignments;
#[tokio::test]
pub async fn it_works() -> eyre::Result<()> {
let found = fetch_all_role_definitions_and_assignments().await?;
println!(
"Found {} role assignments and {} role definitions.",
found.role_assignments.len(),
found.role_definitions.len()
);
Ok(())
}
}