MeiliSearch/meilisearch-http/src/routes/index.rs

300 lines
9.6 KiB
Rust
Raw Normal View History

use chrono::{DateTime, Utc};
2019-11-20 17:28:46 +01:00
use log::error;
use rand::seq::SliceRandom;
use serde::{Deserialize, Serialize};
use actix_web::*;
2019-10-31 15:00:36 +01:00
use crate::error::ResponseError;
2019-10-31 15:00:36 +01:00
use crate::Data;
fn generate_uid() -> String {
let mut rng = rand::thread_rng();
let sample = b"abcdefghijklmnopqrstuvwxyz0123456789";
sample
.choose_multiple(&mut rng, 8)
.map(|c| *c as char)
.collect()
}
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct IndexResponse {
name: String,
uid: String,
created_at: DateTime<Utc>,
updated_at: DateTime<Utc>,
primary_key: Option<String>,
}
2019-11-20 11:24:08 +01:00
#[get("/indexes")]
pub async fn list_indexes(
data: web::Data<Data>,
) -> Result<web::Json<Vec<IndexResponse>>> {
let reader = data.db.main_read_txn()
.map_err(|_| ResponseError::CreateTransaction)?;
let mut response_body = Vec::new();
for index_uid in data.db.indexes_uids() {
let index = data.db.open_index(&index_uid);
2019-11-20 17:28:46 +01:00
match index {
Some(index) => {
let name = index.main.name(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the name of an index".to_string()))?;
let created_at = index.main.created_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the create date of an index".to_string()))?;
let updated_at = index.main.updated_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the last update date of an index".to_string()))?;
2019-11-20 17:28:46 +01:00
let primary_key = match index.main.schema(&reader) {
Ok(Some(schema)) => match schema.primary_key() {
Some(primary_key) => Some(primary_key.to_owned()),
2020-03-10 11:29:56 +01:00
None => None,
},
2020-02-26 18:49:17 +01:00
_ => None,
};
let index_response = IndexResponse {
2019-11-20 17:28:46 +01:00
name,
uid: index_uid,
created_at,
updated_at,
primary_key,
2019-11-20 17:28:46 +01:00
};
response_body.push(index_response);
2019-11-20 17:28:46 +01:00
}
None => error!(
"Index {} is referenced in the indexes list but cannot be found",
index_uid
),
}
}
Ok(web::Json(response_body))
2019-11-19 17:38:02 +01:00
}
#[get("/indexes/{index_uid}")]
pub async fn get_index(
data: web::Data<Data>,
path: web::Path<String>,
) -> Result<web::Json<IndexResponse>> {
2019-11-19 17:38:02 +01:00
let index = data.db.open_index(path.clone())
.ok_or(ResponseError::IndexNotFound(path.clone()))?;
2019-11-19 17:38:02 +01:00
let reader = data.db.main_read_txn()
.map_err(|_| ResponseError::CreateTransaction)?;
2019-11-19 17:38:02 +01:00
let name = index.main.name(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the name of an index".to_string()))?;
let created_at = index.main.created_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the create date of an index".to_string()))?;
let updated_at = index.main.updated_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the last update date of an index".to_string()))?;
2019-11-19 17:38:02 +01:00
let primary_key = match index.main.schema(&reader) {
Ok(Some(schema)) => match schema.primary_key() {
Some(primary_key) => Some(primary_key.to_owned()),
2020-03-10 11:29:56 +01:00
None => None,
},
2020-02-26 18:49:17 +01:00
_ => None,
};
Ok(web::Json(IndexResponse {
2019-11-19 17:38:02 +01:00
name,
uid: path.to_string(),
2019-11-19 17:38:02 +01:00
created_at,
updated_at,
primary_key,
}))
2019-11-19 17:38:02 +01:00
}
2019-11-20 17:28:46 +01:00
#[derive(Debug, Deserialize)]
#[serde(rename_all = "camelCase", deny_unknown_fields)]
pub struct IndexCreateRequest {
name: Option<String>,
uid: Option<String>,
primary_key: Option<String>,
}
#[post("/indexes")]
pub async fn create_index(
data: web::Data<Data>,
body: web::Json<IndexCreateRequest>
) -> Result<web::Json<IndexResponse>> {
2019-10-31 15:00:36 +01:00
if let (None, None) = (body.name.clone(), body.uid.clone()) {
return Err(ResponseError::BadRequest("Index creation must have an uid".to_string()))?;
}
let uid = match body.uid.clone() {
2020-03-05 11:44:30 +01:00
Some(uid) => {
2020-03-10 11:29:56 +01:00
if uid
.chars()
.all(|x| x.is_ascii_alphanumeric() || x == '-' || x == '_')
{
2020-03-05 11:44:30 +01:00
uid
} else {
return Err(ResponseError::InvalidIndexUid)?;
2020-03-05 11:44:30 +01:00
}
2020-03-10 11:29:56 +01:00
}
None => loop {
let uid = generate_uid();
if data.db.open_index(&uid).is_none() {
break uid;
}
},
};
let created_index = data.db.create_index(&uid)
.map_err(|e| ResponseError::CreateIndex(e.to_string()))?;
let mut writer = data.db.main_write_txn()
.map_err(|_| ResponseError::CreateTransaction)?;
let name = body.name.clone().unwrap_or(uid.clone());
created_index.main.put_name(&mut writer, &name)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
2019-10-31 15:00:36 +01:00
2020-01-23 11:30:18 +01:00
let created_at = created_index
.main
.created_at(&writer)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("".to_string()))?;
2020-01-23 11:30:18 +01:00
let updated_at = created_index
.main
.updated_at(&writer)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("".to_string()))?;
if let Some(id) = body.primary_key.clone() {
if let Some(mut schema) = created_index.main.schema(&mut writer)
.map_err(|e| ResponseError::Internal(e.to_string()))? {
schema.set_primary_key(&id)
.map_err(|e| ResponseError::BadRequest(e.to_string()))?;
created_index.main.put_schema(&mut writer, &schema)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
}
2020-01-28 17:45:29 +01:00
}
writer.commit()
.map_err(|_| ResponseError::CommitTransaction)?;
2019-10-31 15:00:36 +01:00
Ok(web::Json(IndexResponse {
2020-01-31 10:50:28 +01:00
name,
uid,
created_at,
updated_at,
primary_key: body.primary_key.clone(),
}))
2019-10-31 15:00:36 +01:00
}
2019-11-20 17:28:46 +01:00
#[derive(Debug, Deserialize)]
2019-11-20 15:00:06 +01:00
#[serde(rename_all = "camelCase", deny_unknown_fields)]
pub struct UpdateIndexRequest {
name: Option<String>,
primary_key: Option<String>,
2019-11-20 15:00:06 +01:00
}
2019-11-20 17:28:46 +01:00
#[derive(Debug, Serialize)]
#[serde(rename_all = "camelCase")]
pub struct UpdateIndexResponse {
2019-11-20 15:00:06 +01:00
name: String,
uid: String,
created_at: DateTime<Utc>,
updated_at: DateTime<Utc>,
primary_key: Option<String>,
2019-11-20 15:00:06 +01:00
}
#[post("/indexes/{index_uid}")]
pub async fn update_index(
data: web::Data<Data>,
path: web::Path<String>,
body: web::Json<IndexCreateRequest>
) -> Result<web::Json<IndexResponse>> {
2019-11-20 15:00:06 +01:00
let index = data.db.open_index(path.clone())
.ok_or(ResponseError::IndexNotFound(path.clone()))?;
2019-11-20 15:00:06 +01:00
let mut writer = data.db.main_write_txn()
.map_err(|_| ResponseError::CreateTransaction)?;
2020-01-16 16:58:57 +01:00
if let Some(name) = body.name.clone() {
index.main.put_name(&mut writer, &name)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
}
2020-01-16 16:58:57 +01:00
if let Some(id) = body.primary_key.clone() {
if let Some(mut schema) = index.main.schema(&mut writer)
.map_err(|e| ResponseError::Internal(e.to_string()))? {
match schema.primary_key() {
Some(_) => {
return Err(ResponseError::BadRequest("The primary key cannot be updated".to_string()))?;
2020-03-10 11:29:56 +01:00
}
None => {
2020-03-10 15:35:19 +01:00
schema
.set_primary_key(&id)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
index.main.put_schema(&mut writer, &schema)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
}
}
}
}
2020-01-16 16:58:57 +01:00
index.main.put_updated_at(&mut writer)
.map_err(|e| ResponseError::Internal(e.to_string()))?;
writer.commit()
.map_err(|_| ResponseError::CommitTransaction)?;
2020-01-16 16:58:57 +01:00
let reader = data.db.main_read_txn()
.map_err(|_| ResponseError::CreateTransaction)?;
let name = index.main.name(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the name of an index".to_string()))?;
let created_at = index.main.created_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the create date of an index".to_string()))?;
let updated_at = index.main.updated_at(&reader)
.map_err(|e| ResponseError::Internal(e.to_string()))?
.ok_or(ResponseError::Internal("Impossible to get the last update date of an index".to_string()))?;
2019-11-20 15:00:06 +01:00
let primary_key = match index.main.schema(&reader) {
2020-03-10 11:29:56 +01:00
Ok(Some(schema)) => match schema.primary_key() {
Some(primary_key) => Some(primary_key.to_owned()),
None => None,
},
2020-02-26 18:49:17 +01:00
_ => None,
};
Ok(web::Json(IndexResponse {
name,
uid: path.clone(),
2019-11-20 15:00:06 +01:00
created_at,
updated_at,
primary_key,
}))
2019-11-20 15:00:06 +01:00
}
#[delete("/indexes/{index_uid}")]
pub async fn delete_index(
data: web::Data<Data>,
path: web::Path<String>,
) -> Result<HttpResponse> {
2019-10-31 15:00:36 +01:00
data.db.delete_index(&path.to_string())
.map_err(|e| ResponseError::Internal(e.to_string()))?;
2019-10-31 15:00:36 +01:00
HttpResponse::NoContent().await
2019-10-31 15:00:36 +01:00
}