use crate::ayb_db::db_interfaces::AybDb;
use crate::ayb_db::models::InstantiatedEntity;
use crate::error::AybError;
use crate::hosted_db::daemon_registry::DaemonRegistry;
use crate::hosted_db::paths::{new_database_path, set_current_database_and_clean_up};
use crate::http::structs::{EmptyResponse, EntityDatabasePath};
use crate::server::config::AybConfig;
use crate::server::permissions::can_manage_database;
use crate::server::snapshots::storage::SnapshotStorage;
use crate::server::utils::unwrap_authenticated_entity;
use actix_web::{post, web, HttpResponse};
#[post(
"/{entity}/{database}/restore_snapshot",
wrap = "actix_web_httpauth::middleware::HttpAuthentication::bearer(crate::server::server_runner::entity_validator)"
)]
async fn restore_snapshot(
path: web::Path<EntityDatabasePath>,
snapshot_id: String,
ayb_db: web::Data<Box<dyn AybDb>>,
ayb_config: web::Data<AybConfig>,
daemon_registry: web::Data<DaemonRegistry>,
authenticated_entity: Option<web::ReqData<InstantiatedEntity>>,
) -> Result<HttpResponse, AybError> {
let entity_slug = &path.entity.to_lowercase();
let database_slug = &path.database;
let database = ayb_db.get_database(entity_slug, database_slug).await?;
let authenticated_entity = unwrap_authenticated_entity(&authenticated_entity)?;
if can_manage_database(&authenticated_entity, &database, &ayb_db).await? {
if let Some(ref snapshot_config) = ayb_config.snapshots {
let snapshot_storage = SnapshotStorage::new(snapshot_config).await?;
let db_path = &new_database_path(entity_slug, database_slug, &ayb_config.data_path)?;
snapshot_storage
.retrieve_snapshot(entity_slug, database_slug, &snapshot_id, db_path)
.await?;
set_current_database_and_clean_up(db_path, &daemon_registry).await?;
}
Ok(HttpResponse::Ok().json(EmptyResponse {}))
} else {
Err(AybError::Other {
message: format!(
"Authenticated entity {} can't manage snapshots on database {}/{}",
authenticated_entity.slug, entity_slug, database_slug
),
})
}
}