2024-05-11 22:47:29 +02:00
|
|
|
use std::path::PathBuf;
|
2024-03-16 03:29:06 +01:00
|
|
|
use clap::{Parser, Subcommand};
|
2024-04-30 16:48:28 +02:00
|
|
|
use sea_orm::{ConnectOptions, Database};
|
2024-03-16 03:29:06 +01:00
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
#[cfg(feature = "cli")]
|
|
|
|
use upub_cli as cli;
|
|
|
|
|
|
|
|
#[cfg(feature = "migrate")]
|
|
|
|
use upub_migrations as migrations;
|
|
|
|
|
|
|
|
#[cfg(feature = "serve")]
|
|
|
|
use upub_routes as routes;
|
2024-03-28 04:52:17 +01:00
|
|
|
|
2024-06-06 02:21:36 +02:00
|
|
|
#[cfg(feature = "worker")]
|
|
|
|
use upub_worker as worker;
|
|
|
|
|
2024-03-25 05:02:20 +01:00
|
|
|
|
2024-03-16 03:29:06 +01:00
|
|
|
#[derive(Parser)]
|
|
|
|
/// all names were taken
|
2024-05-06 01:09:14 +02:00
|
|
|
struct Args {
|
2024-03-16 03:29:06 +01:00
|
|
|
#[clap(subcommand)]
|
|
|
|
/// command to run
|
2024-05-06 01:09:14 +02:00
|
|
|
command: Mode,
|
2024-03-16 03:29:06 +01:00
|
|
|
|
2024-05-11 22:47:29 +02:00
|
|
|
/// path to config file, leave empty to not use any
|
|
|
|
#[arg(short, long)]
|
|
|
|
config: Option<PathBuf>,
|
|
|
|
|
|
|
|
#[arg(long = "db")]
|
|
|
|
/// database connection uri, overrides config value
|
|
|
|
database: Option<String>,
|
2024-03-16 03:29:06 +01:00
|
|
|
|
2024-05-11 22:47:29 +02:00
|
|
|
#[arg(long)]
|
|
|
|
/// instance base domain, for AP ids, overrides config value
|
|
|
|
domain: Option<String>,
|
2024-03-20 08:56:35 +01:00
|
|
|
|
2024-03-16 03:29:06 +01:00
|
|
|
#[arg(long, default_value_t=false)]
|
|
|
|
/// run with debug level tracing
|
|
|
|
debug: bool,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Clone, Subcommand)]
|
2024-05-06 01:09:14 +02:00
|
|
|
enum Mode {
|
2024-05-11 22:47:29 +02:00
|
|
|
/// print current or default configuration
|
|
|
|
Config,
|
2024-03-16 03:29:06 +01:00
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
#[cfg(feature = "migrate")]
|
2024-03-16 03:29:06 +01:00
|
|
|
/// apply database migrations
|
|
|
|
Migrate,
|
2024-03-16 05:46:14 +01:00
|
|
|
|
2024-05-06 01:09:14 +02:00
|
|
|
#[cfg(feature = "cli")]
|
|
|
|
/// run maintenance CLI tasks
|
|
|
|
Cli {
|
|
|
|
#[clap(subcommand)]
|
|
|
|
/// task to run
|
|
|
|
command: cli::CliCommand,
|
2024-04-29 20:53:19 +02:00
|
|
|
},
|
2024-05-31 04:07:39 +02:00
|
|
|
|
2024-06-06 02:21:36 +02:00
|
|
|
#[cfg(all(feature = "serve", feature = "worker"))]
|
|
|
|
/// start both api routes and background workers
|
|
|
|
Monolith {
|
|
|
|
#[arg(short, long, default_value="127.0.0.1:3000")]
|
|
|
|
/// addr to bind and serve onto
|
|
|
|
bind: String,
|
|
|
|
|
|
|
|
#[arg(short, long, default_value_t = 4)]
|
|
|
|
/// how many concurrent jobs to process with this worker
|
|
|
|
tasks: usize,
|
|
|
|
|
|
|
|
#[arg(short, long, default_value_t = 20)]
|
|
|
|
/// interval for polling new tasks
|
|
|
|
poll: u64,
|
|
|
|
},
|
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
#[cfg(feature = "serve")]
|
2024-06-06 02:21:36 +02:00
|
|
|
/// start api routes server
|
2024-05-31 04:07:39 +02:00
|
|
|
Serve {
|
|
|
|
#[arg(short, long, default_value="127.0.0.1:3000")]
|
|
|
|
/// addr to bind and serve onto
|
|
|
|
bind: String,
|
|
|
|
},
|
2024-06-06 02:21:36 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "worker")]
|
|
|
|
/// start background job worker
|
|
|
|
Work {
|
|
|
|
/// only run tasks of this type, run all if not given
|
|
|
|
filter: Filter,
|
|
|
|
|
|
|
|
/// how many concurrent jobs to process with this worker
|
|
|
|
#[arg(short, long, default_value_t = 4)]
|
|
|
|
tasks: usize,
|
|
|
|
|
|
|
|
#[arg(short, long, default_value_t = 20)]
|
|
|
|
/// interval for polling new tasks
|
|
|
|
poll: u64,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Debug, Clone, clap::ValueEnum)]
|
|
|
|
enum Filter {
|
|
|
|
All,
|
|
|
|
Local,
|
|
|
|
Inbound,
|
|
|
|
Outbound,
|
2024-03-16 03:29:06 +01:00
|
|
|
}
|
2024-02-09 17:07:55 +01:00
|
|
|
|
|
|
|
#[tokio::main]
|
|
|
|
async fn main() {
|
2024-03-15 19:43:29 +01:00
|
|
|
|
2024-05-06 01:09:14 +02:00
|
|
|
let args = Args::parse();
|
2024-03-16 03:29:06 +01:00
|
|
|
|
|
|
|
tracing_subscriber::fmt()
|
|
|
|
.compact()
|
|
|
|
.with_max_level(if args.debug { tracing::Level::DEBUG } else { tracing::Level::INFO })
|
|
|
|
.init();
|
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
let config = upub::Config::load(args.config);
|
2024-05-11 22:47:29 +02:00
|
|
|
|
|
|
|
let database = args.database.unwrap_or(config.datasource.connection_string.clone());
|
|
|
|
let domain = args.domain.unwrap_or(config.instance.domain.clone());
|
|
|
|
|
2024-03-22 17:54:49 +01:00
|
|
|
// TODO can i do connectoptions.into() or .connect() and skip these ugly bindings?
|
2024-05-11 22:47:29 +02:00
|
|
|
let mut opts = ConnectOptions::new(&database);
|
2024-03-22 17:54:49 +01:00
|
|
|
|
2024-03-16 05:45:58 +01:00
|
|
|
opts
|
2024-05-31 01:44:29 +02:00
|
|
|
.sqlx_logging(true)
|
2024-05-11 22:47:29 +02:00
|
|
|
.sqlx_logging_level(tracing::log::LevelFilter::Debug)
|
|
|
|
.max_connections(config.datasource.max_connections)
|
|
|
|
.min_connections(config.datasource.min_connections)
|
|
|
|
.acquire_timeout(std::time::Duration::from_secs(config.datasource.acquire_timeout_seconds))
|
|
|
|
.connect_timeout(std::time::Duration::from_secs(config.datasource.connect_timeout_seconds))
|
|
|
|
.sqlx_slow_statements_logging_settings(
|
2024-05-31 01:34:55 +02:00
|
|
|
if config.datasource.slow_query_warn_enable { tracing::log::LevelFilter::Warn } else { tracing::log::LevelFilter::Debug },
|
2024-05-11 22:47:29 +02:00
|
|
|
std::time::Duration::from_secs(config.datasource.slow_query_warn_seconds)
|
|
|
|
);
|
2024-03-16 05:45:58 +01:00
|
|
|
|
|
|
|
let db = Database::connect(opts)
|
2024-03-16 03:29:06 +01:00
|
|
|
.await.expect("error connecting to db");
|
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
let ctx = upub::Context::new(db, domain, config.clone())
|
|
|
|
.await.expect("failed creating server context");
|
|
|
|
|
|
|
|
#[cfg(feature = "migrate")]
|
|
|
|
use migrations::MigratorTrait;
|
|
|
|
|
2024-03-16 03:29:06 +01:00
|
|
|
match args.command {
|
2024-05-31 04:07:39 +02:00
|
|
|
Mode::Config => println!("{}", toml::to_string_pretty(&config).expect("failed serializing config")),
|
|
|
|
|
|
|
|
#[cfg(feature = "migrate")]
|
2024-05-06 01:09:14 +02:00
|
|
|
Mode::Migrate =>
|
2024-05-31 04:07:39 +02:00
|
|
|
migrations::Migrator::up(ctx.db(), None)
|
2024-04-30 16:48:28 +02:00
|
|
|
.await.expect("error applying migrations"),
|
2024-03-16 05:46:14 +01:00
|
|
|
|
2024-05-06 01:09:14 +02:00
|
|
|
#[cfg(feature = "cli")]
|
|
|
|
Mode::Cli { command } =>
|
2024-05-31 04:07:39 +02:00
|
|
|
cli::run(ctx, command)
|
2024-05-06 01:09:14 +02:00
|
|
|
.await.expect("failed running cli task"),
|
2024-04-29 20:53:19 +02:00
|
|
|
|
2024-05-31 04:07:39 +02:00
|
|
|
#[cfg(feature = "serve")]
|
|
|
|
Mode::Serve { bind } =>
|
|
|
|
routes::serve(ctx, bind)
|
|
|
|
.await.expect("failed serving api routes"),
|
2024-06-06 02:21:36 +02:00
|
|
|
|
|
|
|
#[cfg(feature = "worker")]
|
|
|
|
Mode::Work { filter, tasks, poll } =>
|
|
|
|
worker::spawn(ctx, tasks, poll, filter.into())
|
|
|
|
.await.expect("failed running worker"),
|
|
|
|
|
|
|
|
#[cfg(all(feature = "serve", feature = "worker"))]
|
|
|
|
Mode::Monolith { bind, tasks, poll } => {
|
|
|
|
worker::spawn(ctx.clone(), tasks, poll, None);
|
|
|
|
|
|
|
|
routes::serve(ctx, bind)
|
|
|
|
.await.expect("failed serving api routes");
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl From<Filter> for Option<upub::model::job::JobType> {
|
|
|
|
fn from(value: Filter) -> Self {
|
|
|
|
match value {
|
|
|
|
Filter::All => None,
|
|
|
|
Filter::Local => Some(upub::model::job::JobType::Local),
|
|
|
|
Filter::Inbound => Some(upub::model::job::JobType::Inbound),
|
|
|
|
Filter::Outbound => Some(upub::model::job::JobType::Outbound),
|
|
|
|
}
|
2024-03-15 19:43:29 +01:00
|
|
|
}
|
|
|
|
}
|