2019-11-21 19:15:33 +01:00
|
|
|
use std::{env, thread};
|
|
|
|
|
2020-01-15 17:10:33 +01:00
|
|
|
use async_std::task;
|
2019-10-31 15:09:23 +01:00
|
|
|
use log::info;
|
|
|
|
use main_error::MainError;
|
2019-11-19 17:09:06 +01:00
|
|
|
use structopt::StructOpt;
|
2020-01-29 18:30:21 +01:00
|
|
|
use tide::middleware::{Cors, RequestLogger};
|
2019-10-31 15:09:23 +01:00
|
|
|
|
2019-11-26 11:06:55 +01:00
|
|
|
use meilisearch_http::data::Data;
|
|
|
|
use meilisearch_http::option::Opt;
|
|
|
|
use meilisearch_http::routes;
|
|
|
|
use meilisearch_http::routes::index::index_update_callback;
|
2019-10-31 15:09:23 +01:00
|
|
|
|
2019-11-21 19:15:33 +01:00
|
|
|
mod analytics;
|
|
|
|
|
2019-11-25 14:51:47 +01:00
|
|
|
#[cfg(target_os = "linux")]
|
2019-10-31 15:09:23 +01:00
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: jemallocator::Jemalloc = jemallocator::Jemalloc;
|
|
|
|
|
|
|
|
pub fn main() -> Result<(), MainError> {
|
2019-11-19 17:09:06 +01:00
|
|
|
let opt = Opt::from_args();
|
2019-11-15 17:33:06 +01:00
|
|
|
|
2020-02-06 15:42:35 +01:00
|
|
|
match opt.env.as_ref() {
|
|
|
|
"production" => {
|
|
|
|
if opt.master_key.is_none() {
|
2020-02-26 18:49:17 +01:00
|
|
|
return Err(
|
|
|
|
"In production mode, the environment variable MEILI_MASTER_KEY is mandatory"
|
|
|
|
.into(),
|
|
|
|
);
|
2020-02-06 15:42:35 +01:00
|
|
|
}
|
|
|
|
env_logger::init();
|
2020-02-26 18:49:17 +01:00
|
|
|
}
|
2020-02-06 15:42:35 +01:00
|
|
|
"development" => {
|
|
|
|
env_logger::from_env(env_logger::Env::default().default_filter_or("info")).init();
|
2020-02-26 18:49:17 +01:00
|
|
|
}
|
2020-02-06 15:42:35 +01:00
|
|
|
_ => unreachable!(),
|
|
|
|
}
|
|
|
|
|
|
|
|
if !opt.no_analytics {
|
2020-02-13 10:25:37 +01:00
|
|
|
thread::spawn(analytics::analytics_sender);
|
2019-11-21 19:15:33 +01:00
|
|
|
}
|
|
|
|
|
2020-02-06 15:42:35 +01:00
|
|
|
let data = Data::new(opt.clone());
|
|
|
|
|
2019-11-15 17:33:06 +01:00
|
|
|
let data_cloned = data.clone();
|
|
|
|
data.db.set_update_callback(Box::new(move |name, status| {
|
|
|
|
index_update_callback(name, &data_cloned, status);
|
|
|
|
}));
|
|
|
|
|
2020-02-06 15:42:35 +01:00
|
|
|
print_launch_resume(&opt, &data);
|
|
|
|
|
2020-01-15 17:10:33 +01:00
|
|
|
let mut app = tide::with_state(data);
|
2019-10-31 15:09:23 +01:00
|
|
|
|
2020-01-27 19:11:32 +01:00
|
|
|
app.middleware(Cors::new());
|
2020-01-27 18:26:08 +01:00
|
|
|
app.middleware(RequestLogger::new());
|
2019-10-31 15:09:23 +01:00
|
|
|
|
|
|
|
routes::load_routes(&mut app);
|
|
|
|
|
2020-01-29 18:30:21 +01:00
|
|
|
task::block_on(app.listen(opt.http_addr))?;
|
2019-10-31 15:09:23 +01:00
|
|
|
Ok(())
|
2019-10-31 15:00:36 +01:00
|
|
|
}
|
2020-02-06 15:42:35 +01:00
|
|
|
|
|
|
|
pub fn print_launch_resume(opt: &Opt, data: &Data) {
|
|
|
|
let ascii_name = r#"
|
|
|
|
888b d888 d8b 888 d8b .d8888b. 888
|
|
|
|
8888b d8888 Y8P 888 Y8P d88P Y88b 888
|
|
|
|
88888b.d88888 888 Y88b. 888
|
|
|
|
888Y88888P888 .d88b. 888 888 888 "Y888b. .d88b. 8888b. 888d888 .d8888b 88888b.
|
|
|
|
888 Y888P 888 d8P Y8b 888 888 888 "Y88b. d8P Y8b "88b 888P" d88P" 888 "88b
|
|
|
|
888 Y8P 888 88888888 888 888 888 "888 88888888 .d888888 888 888 888 888
|
|
|
|
888 " 888 Y8b. 888 888 888 Y88b d88P Y8b. 888 888 888 Y88b. 888 888
|
|
|
|
888 888 "Y8888 888 888 888 "Y8888P" "Y8888 "Y888888 888 "Y8888P 888 888
|
|
|
|
"#;
|
|
|
|
|
|
|
|
println!("{}", ascii_name);
|
|
|
|
|
|
|
|
info!("Database path: {:?}", opt.db_path);
|
|
|
|
info!("Start server on: {:?}", opt.http_addr);
|
|
|
|
info!("Environment: {:?}", opt.env);
|
|
|
|
info!("Commit SHA: {:?}", env!("VERGEN_SHA").to_string());
|
2020-02-26 18:49:17 +01:00
|
|
|
info!(
|
|
|
|
"Build date: {:?}",
|
|
|
|
env!("VERGEN_BUILD_TIMESTAMP").to_string()
|
|
|
|
);
|
|
|
|
info!(
|
|
|
|
"Package version: {:?}",
|
|
|
|
env!("CARGO_PKG_VERSION").to_string()
|
|
|
|
);
|
2020-02-06 15:42:35 +01:00
|
|
|
|
|
|
|
if let Some(master_key) = &data.api_keys.master {
|
|
|
|
info!("Master Key: {:?}", master_key);
|
|
|
|
|
|
|
|
if let Some(private_key) = &data.api_keys.private {
|
|
|
|
info!("Private Key: {:?}", private_key);
|
|
|
|
}
|
|
|
|
|
|
|
|
if let Some(public_key) = &data.api_keys.public {
|
|
|
|
info!("Public Key: {:?}", public_key);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
info!("No master key found; The server will have no securities.\
|
|
|
|
If you need some protection in development mode, please export a key. export MEILI_MASTER_KEY=xxx");
|
|
|
|
}
|
|
|
|
|
|
|
|
info!("If you need extra information; Please refer to the documentation: http://docs.meilisearch.com");
|
|
|
|
info!("If you want to support us or help us; Please consult our Github repo: http://github.com/meilisearch/meilisearch");
|
|
|
|
info!("If you want to contact us; Please chat with us on http://meilisearch.com or by email to bonjour@meilisearch.com");
|
|
|
|
}
|