2022-10-24 20:49:39 +08:00
|
|
|
use actix_web::web::Data;
|
|
|
|
use actix_web::{web, HttpResponse};
|
|
|
|
use index_scheduler::IndexScheduler;
|
|
|
|
use meilisearch_types::error::ResponseError;
|
2022-10-26 18:57:29 +08:00
|
|
|
use meilisearch_types::tasks::{IndexSwap, KindWithContent};
|
2022-10-24 20:49:39 +08:00
|
|
|
use serde::Deserialize;
|
|
|
|
|
2022-10-27 06:56:34 +08:00
|
|
|
use super::SummarizedTaskView;
|
2022-10-24 23:51:30 +08:00
|
|
|
use crate::error::MeilisearchHttpError;
|
2022-10-26 19:43:57 +08:00
|
|
|
use crate::extractors::authentication::policies::*;
|
|
|
|
use crate::extractors::authentication::{AuthenticationError, GuardedData};
|
2022-10-24 20:49:39 +08:00
|
|
|
use crate::extractors::sequential_extractor::SeqHandler;
|
|
|
|
|
|
|
|
pub fn configure(cfg: &mut web::ServiceConfig) {
|
|
|
|
cfg.service(web::resource("").route(web::post().to(SeqHandler(swap_indexes))));
|
|
|
|
}
|
|
|
|
#[derive(Deserialize, Debug, Clone, PartialEq, Eq)]
|
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
|
|
pub struct SwapIndexesPayload {
|
2022-10-26 18:57:29 +08:00
|
|
|
indexes: Vec<String>,
|
2022-10-24 20:49:39 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
pub async fn swap_indexes(
|
|
|
|
index_scheduler: GuardedData<ActionPolicy<{ actions::INDEXES_SWAP }>, Data<IndexScheduler>>,
|
|
|
|
params: web::Json<Vec<SwapIndexesPayload>>,
|
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
|
|
let search_rules = &index_scheduler.filters().search_rules;
|
|
|
|
|
|
|
|
let mut swaps = vec![];
|
2022-10-26 18:57:29 +08:00
|
|
|
for SwapIndexesPayload { indexes } in params.into_inner().into_iter() {
|
|
|
|
let (lhs, rhs) = match indexes.as_slice() {
|
|
|
|
[lhs, rhs] => (lhs, rhs),
|
|
|
|
_ => {
|
|
|
|
return Err(MeilisearchHttpError::SwapIndexPayloadWrongLength(indexes).into());
|
|
|
|
}
|
|
|
|
};
|
2022-10-27 15:41:32 +08:00
|
|
|
if !search_rules.is_index_authorized(lhs) || !search_rules.is_index_authorized(rhs) {
|
|
|
|
return Err(AuthenticationError::InvalidToken.into());
|
2022-10-24 20:49:39 +08:00
|
|
|
}
|
2022-10-26 18:57:29 +08:00
|
|
|
swaps.push(IndexSwap { indexes: (lhs.clone(), rhs.clone()) });
|
2022-10-26 19:30:37 +08:00
|
|
|
}
|
2022-10-24 20:49:39 +08:00
|
|
|
|
|
|
|
let task = KindWithContent::IndexSwap { swaps };
|
|
|
|
|
|
|
|
let task = index_scheduler.register(task)?;
|
2022-10-27 06:56:34 +08:00
|
|
|
let task: SummarizedTaskView = task.into();
|
|
|
|
Ok(HttpResponse::Accepted().json(task))
|
2022-10-24 20:49:39 +08:00
|
|
|
}
|