2021-10-04 21:21:10 +05:30
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 Aravinth Manivannan <realaravinth@batsense.net>
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
use std::env;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
2023-03-12 20:10:13 +05:30
|
|
|
use actix_files::Files;
|
2021-10-04 21:21:10 +05:30
|
|
|
use actix_identity::{CookieIdentityPolicy, IdentityService};
|
2022-03-26 12:45:36 +05:30
|
|
|
use actix_session::{storage::CookieSessionStore, SessionMiddleware};
|
2021-10-04 21:21:10 +05:30
|
|
|
use actix_web::{
|
|
|
|
error::InternalError, http::StatusCode, middleware as actix_middleware,
|
|
|
|
web::JsonConfig, App, HttpServer,
|
|
|
|
};
|
|
|
|
use lazy_static::lazy_static;
|
|
|
|
use log::info;
|
|
|
|
|
|
|
|
mod api;
|
2023-02-02 21:55:13 +05:30
|
|
|
mod archive;
|
2021-10-04 21:21:10 +05:30
|
|
|
mod data;
|
|
|
|
mod errors;
|
2021-10-13 14:11:39 +05:30
|
|
|
mod pages;
|
2021-10-04 21:21:10 +05:30
|
|
|
mod settings;
|
2021-10-11 10:32:19 +05:30
|
|
|
mod static_assets;
|
2021-10-11 10:25:45 +05:30
|
|
|
#[cfg(test)]
|
|
|
|
#[macro_use]
|
|
|
|
mod tests;
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
pub use crate::data::Data;
|
|
|
|
pub use api::v1::ROUTES as V1_API_ROUTES;
|
2023-01-24 19:22:19 +05:30
|
|
|
pub use pages::routes::PAGES;
|
2021-10-04 21:21:10 +05:30
|
|
|
pub use settings::Settings;
|
2021-10-11 10:32:19 +05:30
|
|
|
pub use static_assets::static_files::assets;
|
|
|
|
|
|
|
|
use static_assets::FileMap;
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
lazy_static! {
|
2021-10-11 10:32:19 +05:30
|
|
|
pub static ref FILES: FileMap = FileMap::new();
|
2021-10-13 14:11:39 +05:30
|
|
|
pub static ref CSS: &'static str =
|
|
|
|
FILES.get("./static/cache/bundle/css/main.css").unwrap();
|
2021-10-27 11:39:37 +05:30
|
|
|
pub static ref MOBILE_CSS: &'static str =
|
|
|
|
FILES.get("./static/cache/bundle/css/mobile.css").unwrap();
|
2021-10-12 14:02:34 +05:30
|
|
|
pub static ref JS: &'static str =
|
|
|
|
FILES.get("./static/cache/bundle/bundle.js").unwrap();
|
2021-10-12 14:54:51 +05:30
|
|
|
pub static ref GLUE: &'static str =
|
|
|
|
FILES.get("./static/cache/bundle/glue.js").unwrap();
|
2021-10-04 21:21:10 +05:30
|
|
|
}
|
|
|
|
|
2023-03-14 15:51:46 +05:30
|
|
|
pub const DOWNLOAD_SCOPE: &str = "/download";
|
|
|
|
|
2021-10-04 21:21:10 +05:30
|
|
|
pub const CACHE_AGE: u32 = 604800;
|
|
|
|
|
|
|
|
pub const COMPILED_DATE: &str = env!("COMPILED_DATE");
|
|
|
|
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 AppData = actix_web::web::Data<Arc<crate::data::Data>>;
|
|
|
|
|
|
|
|
#[cfg(not(tarpaulin_include))]
|
|
|
|
#[actix_web::main]
|
|
|
|
async fn main() -> std::io::Result<()> {
|
2023-03-12 20:11:06 +05:30
|
|
|
if env::var("RUST_LOG").is_err() {
|
|
|
|
env::set_var("RUST_LOG", "info");
|
|
|
|
}
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
pretty_env_logger::init();
|
|
|
|
|
|
|
|
info!(
|
|
|
|
"{}: {}.\nFor more information, see: {}\nBuild info:\nVersion: {} commit: {}",
|
|
|
|
PKG_NAME, PKG_DESCRIPTION, PKG_HOMEPAGE, VERSION, GIT_COMMIT_HASH
|
|
|
|
);
|
|
|
|
|
2023-01-24 19:22:19 +05:30
|
|
|
let settings = Settings::new().unwrap();
|
|
|
|
let data = Data::new(settings.clone()).await;
|
2021-10-04 21:21:10 +05:30
|
|
|
sqlx::migrate!("./migrations/").run(&data.db).await.unwrap();
|
|
|
|
let data = actix_web::web::Data::new(data);
|
|
|
|
|
2023-02-02 21:55:13 +05:30
|
|
|
let arch = archive::Archiver::new(&data.settings);
|
2023-03-12 20:11:06 +05:30
|
|
|
let (archive_kiler, archive_job) =
|
|
|
|
arch.init_archive_job(data.clone()).await.unwrap();
|
2023-02-02 21:55:13 +05:30
|
|
|
|
2023-01-24 19:22:19 +05:30
|
|
|
let ip = settings.server.get_ip();
|
|
|
|
println!("Starting server on: http://{}", ip);
|
2021-10-04 21:21:10 +05:30
|
|
|
|
|
|
|
HttpServer::new(move || {
|
|
|
|
App::new()
|
|
|
|
.wrap(actix_middleware::Logger::default())
|
|
|
|
.wrap(actix_middleware::Compress::default())
|
|
|
|
.app_data(get_json_err())
|
|
|
|
.wrap(
|
|
|
|
actix_middleware::DefaultHeaders::new()
|
2023-01-24 19:22:19 +05:30
|
|
|
.add(("Permissions-Policy", "interest-cohort=()")),
|
2021-10-04 21:21:10 +05:30
|
|
|
)
|
2023-01-24 19:22:19 +05:30
|
|
|
.wrap(get_survey_session(&settings))
|
|
|
|
.wrap(get_identity_service(&settings))
|
2021-10-04 21:21:10 +05:30
|
|
|
.wrap(actix_middleware::NormalizePath::new(
|
|
|
|
actix_middleware::TrailingSlash::Trim,
|
|
|
|
))
|
2023-03-14 15:51:46 +05:30
|
|
|
.service(
|
|
|
|
Files::new(DOWNLOAD_SCOPE, &settings.publish.dir).show_files_listing(),
|
|
|
|
)
|
2023-03-12 20:11:06 +05:30
|
|
|
.configure(services)
|
2021-10-04 21:21:10 +05:30
|
|
|
.app_data(data.clone())
|
|
|
|
})
|
2023-01-24 19:22:19 +05:30
|
|
|
.bind(ip)
|
2021-10-04 21:21:10 +05:30
|
|
|
.unwrap()
|
|
|
|
.run()
|
|
|
|
.await
|
2023-03-12 20:11:06 +05:30
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
archive_kiler.send(true).unwrap();
|
|
|
|
archive_job.await;
|
|
|
|
Ok(())
|
2021-10-04 21:21:10 +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()
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(tarpaulin_include))]
|
2023-01-24 19:22:19 +05:30
|
|
|
pub fn get_survey_session(
|
|
|
|
settings: &Settings,
|
|
|
|
) -> actix_session::SessionMiddleware<CookieSessionStore> {
|
2022-03-26 12:45:36 +05:30
|
|
|
use actix_web::cookie::Key;
|
2023-01-24 19:22:19 +05:30
|
|
|
let cookie_secret = &settings.server.cookie_secret2;
|
2022-03-26 12:45:36 +05:30
|
|
|
let key = Key::from(cookie_secret.as_bytes());
|
|
|
|
SessionMiddleware::builder(CookieSessionStore::default(), key)
|
2023-01-24 19:22:19 +05:30
|
|
|
.cookie_domain(Some(settings.server.domain.clone()))
|
2022-03-26 12:45:36 +05:30
|
|
|
.cookie_name("survey-id".into())
|
|
|
|
.cookie_path("/".to_string())
|
|
|
|
.cookie_secure(false)
|
|
|
|
.cookie_http_only(true)
|
|
|
|
.build()
|
2021-10-11 09:56:15 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(not(tarpaulin_include))]
|
2023-01-24 19:22:19 +05:30
|
|
|
pub fn get_identity_service(
|
|
|
|
settings: &Settings,
|
|
|
|
) -> IdentityService<CookieIdentityPolicy> {
|
|
|
|
let cookie_secret = &settings.server.cookie_secret;
|
2021-10-11 09:56:15 +05:30
|
|
|
IdentityService::new(
|
|
|
|
CookieIdentityPolicy::new(cookie_secret.as_bytes())
|
2021-10-13 17:02:49 +05:30
|
|
|
.path("/admin/")
|
|
|
|
.name("survey-admin-auth")
|
|
|
|
.max_age_secs(60 * 60 * 24 * 365)
|
2023-01-24 19:22:19 +05:30
|
|
|
.domain(&settings.server.domain)
|
2021-10-04 21:21:10 +05:30
|
|
|
.secure(false),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn services(cfg: &mut actix_web::web::ServiceConfig) {
|
|
|
|
api::v1::services(cfg);
|
2021-10-13 17:02:49 +05:30
|
|
|
pages::services(cfg);
|
2021-10-11 10:32:19 +05:30
|
|
|
static_assets::services(cfg);
|
2021-10-04 21:21:10 +05:30
|
|
|
}
|