2023-09-29 19:18:33 +05:30
|
|
|
// Copyright (C) 2022 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
// SPDX-FileCopyrightText: 2023 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
2023-09-05 19:21:30 +05:30
|
|
|
use std::env;
|
2023-09-29 19:18:33 +05:30
|
|
|
use std::sync::Arc;
|
2023-09-05 19:21:30 +05:30
|
|
|
|
|
|
|
use actix_web::{
|
|
|
|
error::InternalError, http::StatusCode, middleware as actix_middleware, web::Data as WebData,
|
|
|
|
web::JsonConfig, App, HttpServer,
|
|
|
|
};
|
|
|
|
//use clap::{Parser, Subcommand};
|
|
|
|
//use static_assets::FileMap;
|
|
|
|
use tracing::info;
|
|
|
|
use tracing_actix_web::TracingLogger;
|
|
|
|
//
|
|
|
|
//pub use crate::api::v1::ROUTES as V1_API_ROUTES;
|
|
|
|
use ctx::Ctx;
|
|
|
|
pub use settings::Settings;
|
|
|
|
|
|
|
|
pub const CACHE_AGE: u32 = 604800;
|
|
|
|
|
|
|
|
pub const GIT_COMMIT_HASH: &str = env!("GIT_HASH");
|
|
|
|
pub const VERSION: &str = env!("CARGO_PKG_VERSION");
|
|
|
|
pub const PKG_NAME: &str = env!("CARGO_PKG_NAME");
|
|
|
|
pub const PKG_DESCRIPTION: &str = env!("CARGO_PKG_DESCRIPTION");
|
|
|
|
pub const PKG_HOMEPAGE: &str = env!("CARGO_PKG_HOMEPAGE");
|
|
|
|
|
|
|
|
pub type AppCtx = WebData<ctx::ArcCtx>;
|
|
|
|
|
2023-09-29 19:18:33 +05:30
|
|
|
mod api;
|
|
|
|
mod complaince;
|
2023-09-05 19:21:30 +05:30
|
|
|
mod ctx;
|
|
|
|
mod db;
|
|
|
|
mod docker;
|
2023-09-29 19:18:33 +05:30
|
|
|
mod docker_compose;
|
2023-09-05 19:21:30 +05:30
|
|
|
mod errors;
|
|
|
|
mod git;
|
2023-09-29 19:18:33 +05:30
|
|
|
mod runner;
|
2023-09-05 19:21:30 +05:30
|
|
|
mod settings;
|
|
|
|
mod utils;
|
|
|
|
|
|
|
|
//lazy_static::lazy_static! {
|
|
|
|
// pub static ref FILES: FileMap = FileMap::new();
|
|
|
|
//}
|
|
|
|
//
|
|
|
|
//#[derive(Parser)]
|
|
|
|
//#[clap(author, version, about, long_about = None)]
|
|
|
|
//struct Cli {
|
|
|
|
// #[clap(subcommand)]
|
|
|
|
// command: Commands,
|
|
|
|
//}
|
|
|
|
|
|
|
|
#[actix_web::main]
|
|
|
|
#[cfg(not(tarpaulin_include))]
|
|
|
|
async fn main() -> std::io::Result<()> {
|
|
|
|
if env::var("RUST_LOG").is_err() {
|
|
|
|
env::set_var("RUST_LOG", "info");
|
|
|
|
}
|
|
|
|
|
|
|
|
pretty_env_logger::init();
|
|
|
|
// let cli = Cli::parse();
|
|
|
|
|
|
|
|
info!(
|
|
|
|
"{}: {}.\nFor more information, see: {}\nBuild info:\nVersion: {} commit: {}",
|
|
|
|
PKG_NAME, PKG_DESCRIPTION, PKG_HOMEPAGE, VERSION, GIT_COMMIT_HASH
|
|
|
|
);
|
|
|
|
|
|
|
|
let settings = Settings::new().unwrap();
|
2023-09-29 19:18:33 +05:30
|
|
|
settings.init();
|
|
|
|
let ctx = AppCtx::new(Arc::new(Ctx::new(settings.clone()).await));
|
|
|
|
ctx.db.migrate().await.unwrap();
|
|
|
|
serve(settings, ctx).await?;
|
2023-09-05 19:21:30 +05:30
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
async fn serve(settings: Settings, ctx: AppCtx) -> std::io::Result<()> {
|
|
|
|
let ip = settings.server.get_ip();
|
|
|
|
let workers = settings.server.workers.unwrap_or_else(num_cpus::get);
|
2023-09-29 19:18:33 +05:30
|
|
|
let scheduler = runner::Scheduler::spawn(ctx.clone()).await;
|
2023-09-05 19:21:30 +05:30
|
|
|
|
|
|
|
info!("Starting server on: http://{}", ip);
|
|
|
|
HttpServer::new(move || {
|
|
|
|
App::new()
|
|
|
|
.wrap(TracingLogger::default())
|
|
|
|
.wrap(actix_middleware::Compress::default())
|
|
|
|
.app_data(ctx.clone())
|
|
|
|
.app_data(get_json_err())
|
|
|
|
.wrap(
|
|
|
|
actix_middleware::DefaultHeaders::new()
|
|
|
|
.add(("Permissions-Policy", "interest-cohort=()")),
|
|
|
|
)
|
|
|
|
.wrap(actix_middleware::NormalizePath::new(
|
|
|
|
actix_middleware::TrailingSlash::Trim,
|
|
|
|
))
|
|
|
|
.configure(services)
|
|
|
|
})
|
|
|
|
.workers(workers)
|
|
|
|
.bind(ip)
|
|
|
|
.unwrap()
|
|
|
|
.run()
|
2023-09-29 19:18:33 +05:30
|
|
|
.await?;
|
|
|
|
scheduler.stop().await;
|
|
|
|
Ok(())
|
2023-09-05 19:21:30 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(tarpaulin_include))]
|
|
|
|
pub fn get_json_err() -> JsonConfig {
|
|
|
|
JsonConfig::default().error_handler(|err, _| {
|
|
|
|
//debug!("JSON deserialization error: {:?}", &err);
|
|
|
|
InternalError::new(err, StatusCode::BAD_REQUEST).into()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn services(cfg: &mut actix_web::web::ServiceConfig) {
|
2023-09-29 19:18:33 +05:30
|
|
|
crate::api::v1::services(cfg);
|
2023-09-05 19:21:30 +05:30
|
|
|
}
|