mirror of
https://github.com/meilisearch/meilisearch.git
synced 2024-11-24 02:55:06 +08:00
43 lines
1.1 KiB
Rust
43 lines
1.1 KiB
Rust
use actix_web::{web, HttpResponse};
|
|
use log::debug;
|
|
use meilisearch_lib::MeiliSearch;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::error::ResponseError;
|
|
use crate::extractors::authentication::{policies::*, GuardedData};
|
|
|
|
pub fn configure(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(web::resource("").route(web::post().to(create_dump)))
|
|
.service(web::resource("/{dump_uid}/status").route(web::get().to(get_dump_status)));
|
|
}
|
|
|
|
pub async fn create_dump(
|
|
meilisearch: GuardedData<Private, MeiliSearch>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
let res = meilisearch.create_dump().await?;
|
|
|
|
debug!("returns: {:?}", res);
|
|
Ok(HttpResponse::Accepted().json(res))
|
|
}
|
|
|
|
#[derive(Debug, Serialize)]
|
|
#[serde(rename_all = "camelCase")]
|
|
struct DumpStatusResponse {
|
|
status: String,
|
|
}
|
|
|
|
#[derive(Deserialize)]
|
|
struct DumpParam {
|
|
dump_uid: String,
|
|
}
|
|
|
|
async fn get_dump_status(
|
|
meilisearch: GuardedData<Private, MeiliSearch>,
|
|
path: web::Path<DumpParam>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
let res = meilisearch.dump_info(path.dump_uid.clone()).await?;
|
|
|
|
debug!("returns: {:?}", res);
|
|
Ok(HttpResponse::Ok().json(res))
|
|
}
|