mirror of
https://github.com/meilisearch/MeiliSearch
synced 2024-11-23 13:24:27 +01:00
add subroutes for attributes_for_faceting
This commit is contained in:
parent
adaf74bc87
commit
8f0d9ccd87
@ -25,7 +25,10 @@ pub fn services(cfg: &mut web::ServiceConfig) {
|
|||||||
.service(update_displayed)
|
.service(update_displayed)
|
||||||
.service(delete_displayed)
|
.service(delete_displayed)
|
||||||
.service(get_accept_new_fields)
|
.service(get_accept_new_fields)
|
||||||
.service(update_accept_new_fields);
|
.service(update_accept_new_fields)
|
||||||
|
.service(get_attributes_for_faceting)
|
||||||
|
.service(delete_attributes_for_faceting)
|
||||||
|
.service(update_attributes_for_faceting);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[post("/indexes/{index_uid}/settings", wrap = "Authentication::Private")]
|
#[post("/indexes/{index_uid}/settings", wrap = "Authentication::Private")]
|
||||||
@ -481,3 +484,85 @@ async fn update_accept_new_fields(
|
|||||||
|
|
||||||
Ok(HttpResponse::Accepted().json(IndexUpdateResponse::with_id(update_id)))
|
Ok(HttpResponse::Accepted().json(IndexUpdateResponse::with_id(update_id)))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[get(
|
||||||
|
"/indexes/{index_uid}/settings/attributes-for-faceting",
|
||||||
|
wrap = "Authentication::Private"
|
||||||
|
)]
|
||||||
|
async fn get_attributes_for_faceting(
|
||||||
|
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 attributes_for_faceting = data
|
||||||
|
.db
|
||||||
|
.main_read::<_, Option<Vec<String>>, ResponseError>(|reader| {
|
||||||
|
let schema = index.main.schema(reader)?;
|
||||||
|
let attrs = index.main.attributes_for_faceting(reader)?;
|
||||||
|
let attr_names = match (&schema, &attrs) {
|
||||||
|
(Some(schema), Some(attrs)) => {
|
||||||
|
Some(attrs
|
||||||
|
.iter()
|
||||||
|
.filter_map(|&id| schema.name(id))
|
||||||
|
.map(str::to_string)
|
||||||
|
.collect())
|
||||||
|
}
|
||||||
|
_ => None,
|
||||||
|
};
|
||||||
|
Ok(attr_names)
|
||||||
|
})?;
|
||||||
|
|
||||||
|
Ok(HttpResponse::Ok().json(attributes_for_faceting))
|
||||||
|
}
|
||||||
|
|
||||||
|
#[post(
|
||||||
|
"/indexes/{index_uid}/settings/attributes-for-faceting",
|
||||||
|
wrap = "Authentication::Private"
|
||||||
|
)]
|
||||||
|
async fn update_attributes_for_faceting(
|
||||||
|
data: web::Data<Data>,
|
||||||
|
path: web::Path<IndexParam>,
|
||||||
|
body: web::Json<Option<Vec<String>>>,
|
||||||
|
) -> Result<HttpResponse, ResponseError> {
|
||||||
|
let index = data
|
||||||
|
.db
|
||||||
|
.open_index(&path.index_uid)
|
||||||
|
.ok_or(Error::index_not_found(&path.index_uid))?;
|
||||||
|
|
||||||
|
let settings = Settings {
|
||||||
|
attributes_for_faceting: Some(body.into_inner()),
|
||||||
|
..Settings::default()
|
||||||
|
};
|
||||||
|
|
||||||
|
let settings = settings.into_update().map_err(Error::bad_request)?;
|
||||||
|
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/attributes-for-faceting",
|
||||||
|
wrap = "Authentication::Private"
|
||||||
|
)]
|
||||||
|
async fn delete_attributes_for_faceting(
|
||||||
|
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 {
|
||||||
|
attributes_for_faceting: 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)))
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user