MeiliSearch/meilisearch-http/src/lib.rs

76 lines
2.4 KiB
Rust
Raw Normal View History

2020-12-12 13:32:06 +01:00
pub mod data;
pub mod error;
pub mod helpers;
2021-03-04 11:23:41 +01:00
mod index;
2021-01-13 17:50:36 +01:00
mod index_controller;
2021-03-15 18:11:10 +01:00
pub mod option;
pub mod routes;
2020-12-12 13:32:06 +01:00
pub use self::data::Data;
2021-03-15 18:11:10 +01:00
pub use option::Opt;
2021-03-10 11:56:51 +01:00
#[macro_export]
macro_rules! create_app {
2021-03-15 18:11:10 +01:00
($data:expr, $enable_frontend:expr) => {{
use actix_cors::Cors;
use actix_web::middleware::TrailingSlash;
use actix_web::App;
use actix_web::{middleware, web};
use meilisearch_http::error::payload_error_handler;
use meilisearch_http::routes::*;
2021-03-10 11:56:51 +01:00
2021-04-21 13:49:21 +02:00
#[cfg(feature = "mini-dashboard")]
use actix_web_static_files::ResourceFiles;
#[cfg(feature = "mini-dashboard")]
mod dashboard {
include!(concat!(env!("OUT_DIR"), "/generated.rs"));
}
2021-03-15 18:11:10 +01:00
let app = App::new()
.data($data.clone())
.app_data(
web::JsonConfig::default()
2021-03-10 11:56:51 +01:00
.limit($data.http_payload_size_limit())
.content_type(|_mime| true) // Accept all mime types
.error_handler(|err, _req| payload_error_handler(err).into()),
2021-03-15 18:11:10 +01:00
)
.app_data(
web::QueryConfig::default()
.error_handler(|err, _req| payload_error_handler(err).into()),
)
.configure(document::services)
.configure(index::services)
.configure(search::services)
.configure(settings::services)
.configure(synonym::services)
.configure(health::services)
.configure(stats::services)
2021-05-05 14:11:56 +02:00
.configure(key::services)
.configure(dump::services);
2021-04-21 13:49:21 +02:00
#[cfg(feature = "mini-dashboard")]
2021-03-15 18:11:10 +01:00
let app = if $enable_frontend {
2021-04-21 13:49:21 +02:00
let generated = dashboard::generate();
let service = ResourceFiles::new("/", generated);
app.service(service)
2021-03-15 18:11:10 +01:00
} else {
2021-03-19 11:34:54 +01:00
app.service(running)
2021-03-15 18:11:10 +01:00
};
2021-04-21 13:49:21 +02:00
#[cfg(not(feature = "mini-dashboard"))]
let app = app.service(running);
2021-03-15 18:11:10 +01:00
app.wrap(
Cors::default()
2021-05-31 16:03:39 +02:00
.send_wildcard()
.allowed_headers(vec!["content-type", "x-meili-api-key"])
.allow_any_origin()
.allow_any_method()
.max_age(86_400), // 24h
2021-03-15 18:11:10 +01:00
)
.wrap(middleware::Logger::default())
.wrap(middleware::Compress::default())
.wrap(middleware::NormalizePath::new(TrailingSlash::Trim))
}};
2021-03-10 11:56:51 +01:00
}