2020-12-12 13:32:06 +01:00
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
|
|
|
use actix_web::{web, HttpResponse};
|
|
|
|
use actix_web::{delete, get, post};
|
|
|
|
use indexmap::IndexMap;
|
|
|
|
use meilisearch_core::settings::{SettingsUpdate, UpdateState};
|
|
|
|
|
|
|
|
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/synonyms",
|
|
|
|
wrap = "Authentication::Private"
|
|
|
|
)]
|
|
|
|
async fn get(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
2020-12-12 16:04:37 +01:00
|
|
|
todo!()
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post(
|
|
|
|
"/indexes/{index_uid}/settings/synonyms",
|
|
|
|
wrap = "Authentication::Private"
|
|
|
|
)]
|
|
|
|
async fn update(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
body: web::Json<BTreeMap<String, Vec<String>>>,
|
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
2020-12-12 16:04:37 +01:00
|
|
|
todo!()
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#[delete(
|
|
|
|
"/indexes/{index_uid}/settings/synonyms",
|
|
|
|
wrap = "Authentication::Private"
|
|
|
|
)]
|
|
|
|
async fn delete(
|
|
|
|
data: web::Data<Data>,
|
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
2020-12-12 16:04:37 +01:00
|
|
|
todo!()
|
2020-12-12 13:32:06 +01:00
|
|
|
}
|