* WIP Switch to Postgres * feat(postgres): more work on porting to postgres, now compiles * feat(docker-compose): Changed the docker-compose.yml file to use postgres. * Update docker, documentation, gh actions... * Remove bson dependency * Remove bson import * feat: move mock filehost to trait rather than cargo feature * feat(postgres): transactions for mod creation, multipart refactor * fix: Add Cargo.lock so that sqlx functions * Update sqlx offline build data * fix: Use SQLX_OFFLINE to force sqlx into offline mode for CI * Default release channels * feat(postgres): refactor database models to fit postgres models * fix: Fix sqlx prepare, fix double allocation in indexing * Add dockerfile (#40) Co-authored-by: Charalampos Fanoulis <charalampos.fanoulis@gmail.com> Co-authored-by: Aeledfyr <aeledfyr@gmail.com> Co-authored-by: redblueflame <contact@redblueflame.com> Co-authored-by: Jai A <jai.a@tuta.io> Co-authored-by: Valentin Ricard <redblueflame1@gmail.Com> Co-authored-by: Charalampos Fanoulis <charalampos.fanoulis@gmail.com>
114 lines
3.3 KiB
Rust
114 lines
3.3 KiB
Rust
use crate::search::indexing::index_mods;
|
|
use actix_web::middleware::Logger;
|
|
use actix_web::{web, App, HttpServer};
|
|
use env_logger::Env;
|
|
use log::info;
|
|
use std::env;
|
|
use std::fs::File;
|
|
use std::sync::Arc;
|
|
|
|
mod database;
|
|
mod file_hosting;
|
|
mod models;
|
|
mod routes;
|
|
mod search;
|
|
|
|
#[actix_rt::main]
|
|
async fn main() -> std::io::Result<()> {
|
|
env_logger::from_env(Env::default().default_filter_or("info")).init();
|
|
dotenv::dotenv().ok();
|
|
|
|
check_env_vars();
|
|
|
|
// Database Connector
|
|
let pool = database::connect()
|
|
.await
|
|
.expect("Database connection failed");
|
|
let client_ref = pool.clone();
|
|
|
|
let backblaze_enabled = dotenv::var("BACKBLAZE_ENABLED")
|
|
.ok()
|
|
.and_then(|s| s.parse::<bool>().ok())
|
|
.unwrap_or(false);
|
|
|
|
let file_host: Arc<dyn file_hosting::FileHost + Send + Sync> = if backblaze_enabled {
|
|
Arc::new(
|
|
file_hosting::BackblazeHost::new(
|
|
&dotenv::var("BACKBLAZE_KEY_ID").unwrap(),
|
|
&dotenv::var("BACKBLAZE_KEY").unwrap(),
|
|
&dotenv::var("BACKBLAZE_BUCKET_ID").unwrap(),
|
|
)
|
|
.await,
|
|
)
|
|
} else {
|
|
Arc::new(file_hosting::MockHost::new())
|
|
};
|
|
|
|
// Get executable path
|
|
let mut exe_path = env::current_exe()?.parent().unwrap().to_path_buf();
|
|
// Create the path to the index lock file
|
|
exe_path.push("index.v1.lock");
|
|
|
|
// Indexing mods if not already done
|
|
if env::args().any(|x| x == "regen") {
|
|
// User forced regen of indexing
|
|
info!("Forced regeneration of indexes!");
|
|
index_mods(pool).await.expect("Mod indexing failed");
|
|
} else if !exe_path.exists() {
|
|
// The indexes were not created, or the version was upgraded
|
|
info!("Indexing of mods for first time...");
|
|
index_mods(pool).await.expect("Mod indexing failed");
|
|
// Create the lock file
|
|
File::create(exe_path)?;
|
|
}
|
|
|
|
info!("Starting Actix HTTP server!");
|
|
|
|
// Init App
|
|
HttpServer::new(move || {
|
|
App::new()
|
|
.wrap(Logger::default())
|
|
.wrap(Logger::new("%a %{User-Agent}i"))
|
|
.data(client_ref.clone())
|
|
.data(file_host.clone())
|
|
.service(routes::index_get)
|
|
.service(routes::mod_search)
|
|
.service(routes::mod_create)
|
|
.default_service(web::get().to(routes::not_found))
|
|
})
|
|
.bind(dotenv::var("BIND_ADDR").unwrap())?
|
|
.run()
|
|
.await
|
|
}
|
|
|
|
// This is so that env vars not used immediately don't panic at runtime
|
|
fn check_env_vars() {
|
|
fn check_var<T: std::str::FromStr>(var: &str) {
|
|
if dotenv::var(var)
|
|
.ok()
|
|
.and_then(|s| s.parse::<T>().ok())
|
|
.is_none()
|
|
{
|
|
log::warn!(
|
|
"Variable `{}` missing in dotenv or not of type `{}`",
|
|
var,
|
|
std::any::type_name::<T>()
|
|
)
|
|
}
|
|
}
|
|
check_var::<bool>("INDEX_CURSEFORGE");
|
|
check_var::<String>("DATABASE_URL");
|
|
check_var::<String>("MEILISEARCH_ADDR");
|
|
check_var::<String>("BIND_ADDR");
|
|
|
|
if dotenv::var("BACKBLAZE_ENABLED")
|
|
.ok()
|
|
.and_then(|s| s.parse::<bool>().ok())
|
|
.unwrap_or(false)
|
|
{
|
|
check_var::<String>("BACKBLAZE_KEY_ID");
|
|
check_var::<String>("BACKBLAZE_KEY");
|
|
check_var::<String>("BACKBLAZE_BUCKET_ID");
|
|
}
|
|
}
|