2021-06-16 22:18:55 +08:00
|
|
|
use std::collections::{BTreeSet, HashSet};
|
2021-02-16 22:54:07 +08:00
|
|
|
|
2020-12-12 20:32:06 +08:00
|
|
|
use actix_web::{get, post, 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
|
|
|
|
2020-12-22 21:02:41 +08:00
|
|
|
use crate::error::ResponseError;
|
2020-12-12 20:32:06 +08:00
|
|
|
use crate::helpers::Authentication;
|
2021-06-22 20:22:36 +08:00
|
|
|
use crate::index::{SearchQuery, default_crop_length, DEFAULT_SEARCH_LIMIT};
|
2020-12-12 20:32:06 +08:00
|
|
|
use crate::routes::IndexParam;
|
|
|
|
use crate::Data;
|
|
|
|
|
|
|
|
pub fn services(cfg: &mut web::ServiceConfig) {
|
|
|
|
cfg.service(search_with_post).service(search_with_url_query);
|
|
|
|
}
|
|
|
|
|
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-02-17 21:52:30 +08:00
|
|
|
facet_distributions: 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-02-17 21:52:30 +08:00
|
|
|
let facet_distributions = other
|
|
|
|
.facet_distributions
|
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 20:22:36 +08:00
|
|
|
matches: Some(other.matches),
|
2021-02-17 21:52:30 +08:00
|
|
|
facet_distributions,
|
2021-06-15 22:28:10 +08:00
|
|
|
}
|
2021-02-16 22:54:07 +08:00
|
|
|
}
|
|
|
|
}
|
2020-12-12 20:32:06 +08:00
|
|
|
|
|
|
|
#[get("/indexes/{index_uid}/search", wrap = "Authentication::Public")]
|
|
|
|
async fn search_with_url_query(
|
2021-02-16 22:54:07 +08:00
|
|
|
data: web::Data<Data>,
|
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
params: web::Query<SearchQueryGet>,
|
2020-12-12 20:32:06 +08:00
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
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?;
|
|
|
|
Ok(HttpResponse::Ok().json(search_result))
|
2020-12-12 20:32:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
#[post("/indexes/{index_uid}/search", wrap = "Authentication::Public")]
|
|
|
|
async fn search_with_post(
|
2020-12-24 19:58:34 +08:00
|
|
|
data: web::Data<Data>,
|
|
|
|
path: web::Path<IndexParam>,
|
|
|
|
params: web::Json<SearchQuery>,
|
2020-12-12 20:32:06 +08:00
|
|
|
) -> Result<HttpResponse, ResponseError> {
|
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?;
|
|
|
|
Ok(HttpResponse::Ok().json(search_result))
|
2020-12-12 20:32:06 +08:00
|
|
|
}
|