meilisearch/meilisearch-http/src/data/mod.rs

121 lines
3.0 KiB
Rust
Raw Normal View History

pub mod search;
2020-12-29 18:11:06 +08:00
mod updates;
2021-02-02 02:51:47 +08:00
use std::fs::create_dir_all;
2020-12-29 18:11:06 +08:00
use std::ops::Deref;
use std::sync::Arc;
use sha2::Digest;
2021-03-04 18:56:32 +08:00
use crate::index::Settings;
2021-03-16 01:11:10 +08:00
use crate::index_controller::IndexController;
use crate::index_controller::{IndexMetadata, IndexSettings};
2021-02-04 00:44:20 +08:00
use crate::option::Opt;
2020-12-29 18:11:06 +08:00
#[derive(Clone)]
pub struct Data {
2021-01-28 21:12:34 +08:00
inner: Arc<DataInner>,
2020-12-29 18:11:06 +08:00
}
impl Deref for Data {
2021-01-28 21:12:34 +08:00
type Target = DataInner;
2020-12-29 18:11:06 +08:00
fn deref(&self) -> &Self::Target {
&self.inner
}
}
2021-01-28 21:12:34 +08:00
pub struct DataInner {
2021-03-03 18:43:51 +08:00
pub index_controller: IndexController,
2021-02-16 22:54:07 +08:00
pub api_keys: ApiKeys,
2020-12-29 18:11:06 +08:00
options: Opt,
}
#[derive(Clone)]
pub struct ApiKeys {
pub public: Option<String>,
pub private: Option<String>,
pub master: Option<String>,
}
impl ApiKeys {
pub fn generate_missing_api_keys(&mut self) {
if let Some(master_key) = &self.master {
if self.private.is_none() {
let key = format!("{}-private", master_key);
let sha = sha2::Sha256::digest(key.as_bytes());
self.private = Some(format!("{:x}", sha));
}
if self.public.is_none() {
let key = format!("{}-public", master_key);
let sha = sha2::Sha256::digest(key.as_bytes());
self.public = Some(format!("{:x}", sha));
}
}
}
}
impl Data {
pub fn new(options: Opt) -> anyhow::Result<Data> {
let path = options.db_path.clone();
2021-01-28 21:12:34 +08:00
create_dir_all(&path)?;
2021-03-13 17:09:10 +08:00
let index_size = options.max_mdb_size.get_bytes() as usize;
let update_store_size = options.max_udb_size.get_bytes() as usize;
let index_controller = IndexController::new(&path, index_size, update_store_size)?;
2020-12-29 18:11:06 +08:00
let mut api_keys = ApiKeys {
master: options.clone().master_key,
private: None,
public: None,
};
api_keys.generate_missing_api_keys();
2021-03-16 01:11:10 +08:00
let inner = DataInner {
index_controller,
options,
api_keys,
};
2020-12-29 18:11:06 +08:00
let inner = Arc::new(inner);
Ok(Data { inner })
}
2021-03-15 23:52:05 +08:00
pub async fn settings(&self, uid: String) -> anyhow::Result<Settings> {
self.index_controller.settings(uid).await
2021-01-01 23:59:49 +08:00
}
2021-03-07 03:12:20 +08:00
pub async fn list_indexes(&self) -> anyhow::Result<Vec<IndexMetadata>> {
self.index_controller.list_indexes().await
2021-02-04 00:44:20 +08:00
}
2021-03-15 23:52:05 +08:00
pub async fn index(&self, uid: String) -> anyhow::Result<IndexMetadata> {
self.index_controller.get_index(uid).await
2021-02-04 19:34:12 +08:00
}
2021-03-16 01:11:10 +08:00
pub async fn create_index(
&self,
uid: String,
primary_key: Option<String>,
) -> anyhow::Result<IndexMetadata> {
let settings = IndexSettings {
2021-03-15 23:52:05 +08:00
uid: Some(uid),
primary_key,
};
2021-02-26 16:10:04 +08:00
let meta = self.index_controller.create_index(settings).await?;
2021-02-08 17:47:34 +08:00
Ok(meta)
}
2020-12-29 18:11:06 +08:00
#[inline]
pub fn http_payload_size_limit(&self) -> usize {
self.options.http_payload_size_limit.get_bytes() as usize
}
#[inline]
pub fn api_keys(&self) -> &ApiKeys {
&self.api_keys
}
}