2021-06-24 00:54:33 +08:00
|
|
|
use std::collections::{BTreeSet, HashSet};
|
2021-02-16 22:54:07 +08:00
|
|
|
|
2021-06-23 18:18:34 +08:00
|
|
|
use log::debug;
|
2021-06-24 00:54:33 +08:00
|
|
|
use actix_web::{web, HttpResponse};
|
2021-02-16 22:54:07 +08:00
|
|
|
use serde::Deserialize;
|
2021-06-15 22:28:10 +08:00
|
|
|
use serde_json::Value;
|
2020-12-12 20:32:06 +08:00
|
|
|
|
2021-06-24 00:54:33 +08:00
|
|
|
use crate::error::ResponseError;
|
2021-06-23 20:48:33 +08:00
|
|
|
use crate::index::{default_crop_length, SearchQuery, DEFAULT_SEARCH_LIMIT};
|
2020-12-12 20:32:06 +08:00
|
|
|
use crate::routes::IndexParam;
|
|
|
|
use crate::Data;
|
2021-06-24 21:02:35 +08:00
|
|
|
use crate::extractors::authentication::{GuardedData, policies::*};
|
2021-06-23 05:49:34 +08:00
|
|
|
|
2020-12-12 20:32:06 +08:00
|
|
|
pub fn services(cfg: &mut web::ServiceConfig) {
|
2021-06-23 05:49:34 +08:00
|
|
|
cfg.service(
|
|
|
|
web::resource("/indexes/{index_uid}/search")
|
|
|
|
.route(web::get().to(search_with_url_query))
|
|
|
|
.route(web::post().to(search_with_post)),
|
|
|
|
);
|
2020-12-12 20:32:06 +08:00
|
|
|
}
|
|
|
|
|
2021-02-16 22:54:07 +08:00
|
|
|
#[derive(Deserialize, Debug)]
|
|
|
|
#[serde(rename_all = "camelCase", deny_unknown_fields)]
|
|
|
|
pub struct SearchQueryGet {
|
|
|
|
q: Option<String>,
|
|
|
|
offset: Option<usize>,
|
|
|
|
limit: Option<usize>,
|
|
|
|
attributes_to_retrieve: Option<String>,
|
|
|
|
attributes_to_crop: Option<String>,
|
2021-06-22 20:22:36 +08:00
|
|
|
#[serde(default = "default_crop_length")]
|
2021-06-13 18:37:38 +08:00
|
|
|
crop_length: usize,
|
2021-02-16 22:54:07 +08:00
|
|
|
attributes_to_highlight: Option<String>,
|
2021-05-05 00:20:56 +08:00
|
|
|
filter: Option<String>,
|
2021-06-22 20:22:36 +08:00
|
|
|
#[serde(default = "Default::default")]
|
|
|
|
matches: bool,
|
2021-06-23 02:07:23 +08:00
|
|
|
facets_distribution: Option<String>,
|
2021-02-16 22:54:07 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 22:28:10 +08:00
|
|
|
impl From<SearchQueryGet> for SearchQuery {
|
|
|
|
fn from(other: SearchQueryGet) -> Self {
|
2021-02-16 22:54:07 +08:00
|
|
|
let attributes_to_retrieve = other
|
|
|
|
.attributes_to_retrieve
|
2021-06-16 22:18:55 +08:00
|
|
|
.map(|attrs| attrs.split(',').map(String::from).collect::<BTreeSet<_>>());
|
2021-02-16 22:54:07 +08:00
|
|
|
|
|
|
|
let attributes_to_crop = other
|
|
|
|
.attributes_to_crop
|
2021-06-08 23:33:20 +08:00
|
|
|
.map(|attrs| attrs.split(',').map(String::from).collect::<Vec<_>>());
|
2021-02-16 22:54:07 +08:00
|
|
|
|
|
|
|
let attributes_to_highlight = other
|
|
|
|
.attributes_to_highlight
|
2021-03-15 23:52:05 +08:00
|
|
|
.map(|attrs| attrs.split(',').map(String::from).collect::<HashSet<_>>());
|
2021-02-16 22:54:07 +08:00
|
|
|
|
2021-06-23 02:07:23 +08:00
|
|
|
let facets_distribution = other
|
|
|
|
.facets_distribution
|
2021-03-15 23:52:05 +08:00
|
|
|
.map(|attrs| attrs.split(',').map(String::from).collect::<Vec<_>>());
|
2021-02-16 22:54:07 +08:00
|
|
|
|
2021-05-05 00:20:56 +08:00
|
|
|
let filter = match other.filter {
|
2021-06-15 22:28:10 +08:00
|
|
|
Some(f) => match serde_json::from_str(&f) {
|
|
|
|
Ok(v) => Some(v),
|
|
|
|
_ => Some(Value::String(f)),
|
2021-05-05 00:22:48 +08:00
|
|
|
},
|
2021-02-16 22:54:07 +08:00
|
|
|
None => None,
|
|
|
|
};
|
|
|
|
|
2021-06-15 22:28:10 +08:00
|
|
|
Self {
|
2021-02-16 22:54:07 +08:00
|
|
|
q: other.q,
|
|
|
|
offset: other.offset,
|
|
|
|
limit: other.limit.unwrap_or(DEFAULT_SEARCH_LIMIT),
|
|
|
|
attributes_to_retrieve,
|
|
|
|
attributes_to_crop,
|
|
|
|
crop_length: other.crop_length,
|
|
|
|
attributes_to_highlight,
|
2021-05-05 00:20:56 +08:00
|
|
|
filter,
|
2021-06-22 17:27:07 +08:00
|
|
|
matches: other.matches,
|
2021-06-23 02:07:23 +08:00
|
|
|
facets_distribution,
|
2021-06-15 22:28:10 +08:00
|
|
|
}
|
2021-02-16 22:54:07 +08:00
|
|
|
}
|
|
|
|
}
|
2020-12-12 20:32:06 +08:00
|
|
|
|
|
|
|
async fn search_with_url_query(
|
2021-06-24 21:02:35 +08:00
|
|
|
data: GuardedData<Admin, Data>,
|
2021-02-16 22:54:07 +08:00
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
params: web::Query<SearchQueryGet>,
|
2020-12-12 20:32:06 +08:00
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
2021-06-23 18:18:34 +08:00
|
|
|
debug!("called with params: {:?}", params);
|
2021-06-15 22:28:10 +08:00
|
|
|
let query = params.into_inner().into();
|
|
|
|
let search_result = data.search(path.into_inner().index_uid, query).await?;
|
2021-06-23 18:18:34 +08:00
|
|
|
debug!("returns: {:?}", search_result);
|
2021-06-15 22:28:10 +08:00
|
|
|
Ok(HttpResponse::Ok().json(search_result))
|
2020-12-12 20:32:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
async fn search_with_post(
|
2021-06-23 05:49:34 +08:00
|
|
|
data: GuardedData<Public, Data>,
|
2020-12-24 19:58:34 +08:00
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
params: web::Json<SearchQuery>,
|
2020-12-12 20:32:06 +08:00
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
2021-06-23 18:18:34 +08:00
|
|
|
debug!("search called with params: {:?}", params);
|
2021-03-16 01:11:10 +08:00
|
|
|
let search_result = data
|
|
|
|
.search(path.into_inner().index_uid, params.into_inner())
|
2021-06-15 22:28:10 +08:00
|
|
|
.await?;
|
2021-06-23 18:18:34 +08:00
|
|
|
debug!("returns: {:?}", search_result);
|
2021-06-15 22:28:10 +08:00
|
|
|
Ok(HttpResponse::Ok().json(search_result))
|
2020-12-12 20:32:06 +08:00
|
|
|
}
|