mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-27 15:24:27 +01:00
79 lines
2.2 KiB
Rust
79 lines
2.2 KiB
Rust
use actix_web::{web, HttpResponse};
|
|
use actix_web::{delete, get, post};
|
|
use meilisearch_core::settings::{SettingsUpdate, UpdateState};
|
|
use std::collections::BTreeSet;
|
|
|
|
use crate::error::{Error, ResponseError};
|
|
use crate::helpers::Authentication;
|
|
use crate::routes::{IndexParam, IndexUpdateResponse};
|
|
use crate::Data;
|
|
|
|
pub fn services(cfg: &mut web::ServiceConfig) {
|
|
cfg.service(get).service(update).service(delete);
|
|
}
|
|
|
|
#[get(
|
|
"/indexes/{index_uid}/settings/stop-words",
|
|
wrap = "Authentication::Private"
|
|
)]
|
|
async fn get(
|
|
data: web::Data<Data>,
|
|
path: web::Path<IndexParam>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
let index = data
|
|
.db
|
|
.open_index(&path.index_uid)
|
|
.ok_or(Error::index_not_found(&path.index_uid))?;
|
|
let reader = data.db.main_read_txn()?;
|
|
let stop_words = index.main.stop_words(&reader)?;
|
|
|
|
Ok(HttpResponse::Ok().json(stop_words))
|
|
}
|
|
|
|
#[post(
|
|
"/indexes/{index_uid}/settings/stop-words",
|
|
wrap = "Authentication::Private"
|
|
)]
|
|
async fn update(
|
|
data: web::Data<Data>,
|
|
path: web::Path<IndexParam>,
|
|
body: web::Json<BTreeSet<String>>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
let index = data
|
|
.db
|
|
.open_index(&path.index_uid)
|
|
.ok_or(Error::index_not_found(&path.index_uid))?;
|
|
|
|
let settings = SettingsUpdate {
|
|
stop_words: UpdateState::Update(body.into_inner()),
|
|
..SettingsUpdate::default()
|
|
};
|
|
|
|
let update_id = data.db.update_write(|w| index.settings_update(w, settings))?;
|
|
|
|
Ok(HttpResponse::Accepted().json(IndexUpdateResponse::with_id(update_id)))
|
|
}
|
|
|
|
#[delete(
|
|
"/indexes/{index_uid}/settings/stop-words",
|
|
wrap = "Authentication::Private"
|
|
)]
|
|
async fn delete(
|
|
data: web::Data<Data>,
|
|
path: web::Path<IndexParam>,
|
|
) -> Result<HttpResponse, ResponseError> {
|
|
let index = data
|
|
.db
|
|
.open_index(&path.index_uid)
|
|
.ok_or(Error::index_not_found(&path.index_uid))?;
|
|
|
|
let settings = SettingsUpdate {
|
|
stop_words: UpdateState::Clear,
|
|
..SettingsUpdate::default()
|
|
};
|
|
|
|
let update_id = data.db.update_write(|w| index.settings_update(w, settings))?;
|
|
|
|
Ok(HttpResponse::Accepted().json(IndexUpdateResponse::with_id(update_id)))
|
|
}
|