2019-07-17 11:11:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel_migrations;
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
use crate::diesel_migrations::MigrationHarness;
|
2020-01-16 03:01:14 +00:00
|
|
|
use actix::prelude::*;
|
2021-07-06 13:26:46 +00:00
|
|
|
use actix_web::{web::Data, *};
|
2020-05-16 14:04:08 +00:00
|
|
|
use diesel::{
|
|
|
|
r2d2::{ConnectionManager, Pool},
|
|
|
|
PgConnection,
|
|
|
|
};
|
2022-09-26 14:09:32 +00:00
|
|
|
use diesel_migrations::EmbeddedMigrations;
|
2021-10-08 15:07:24 +00:00
|
|
|
use doku::json::{AutoComments, Formatting};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_api::match_websocket_operation;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_api_common::{
|
2022-10-27 09:24:07 +00:00
|
|
|
lemmy_db_views::structs::SiteView,
|
2022-05-03 17:44:13 +00:00
|
|
|
request::build_user_agent,
|
2022-10-27 09:24:07 +00:00
|
|
|
utils::{
|
|
|
|
blocking,
|
|
|
|
check_private_instance_and_federation_enabled,
|
|
|
|
local_site_rate_limit_to_rate_limit_config,
|
|
|
|
},
|
2022-05-03 17:44:13 +00:00
|
|
|
};
|
2021-03-25 19:30:15 +00:00
|
|
|
use lemmy_api_crud::match_websocket_operation_crud;
|
2022-05-03 17:44:13 +00:00
|
|
|
use lemmy_db_schema::{source::secret::Secret, utils::get_database_url_from_env};
|
2021-02-09 18:26:06 +00:00
|
|
|
use lemmy_routes::{feeds, images, nodeinfo, webfinger};
|
2021-11-23 12:16:47 +00:00
|
|
|
use lemmy_server::{
|
|
|
|
api_routes,
|
|
|
|
code_migrations::run_advanced_migrations,
|
2022-05-10 12:06:32 +00:00
|
|
|
init_logging,
|
2021-12-06 14:54:47 +00:00
|
|
|
root_span_builder::QuieterRootSpanBuilder,
|
2021-11-23 12:16:47 +00:00
|
|
|
scheduled_tasks,
|
|
|
|
};
|
2020-12-21 23:27:42 +00:00
|
|
|
use lemmy_utils::{
|
2022-06-02 14:33:41 +00:00
|
|
|
error::LemmyError,
|
2020-12-21 23:27:42 +00:00
|
|
|
rate_limit::{rate_limiter::RateLimiter, RateLimit},
|
2022-06-22 20:24:54 +00:00
|
|
|
settings::{structs::Settings, SETTINGS},
|
2020-12-21 23:27:42 +00:00
|
|
|
};
|
2020-09-24 13:53:21 +00:00
|
|
|
use lemmy_websocket::{chat_server::ChatServer, LemmyContext};
|
2020-08-31 13:48:02 +00:00
|
|
|
use reqwest::Client;
|
2021-12-06 22:54:34 +00:00
|
|
|
use reqwest_middleware::ClientBuilder;
|
2022-06-02 14:33:41 +00:00
|
|
|
use reqwest_retry::{policies::ExponentialBackoff, RetryTransientMiddleware};
|
2021-12-06 22:54:34 +00:00
|
|
|
use reqwest_tracing::TracingMiddleware;
|
2022-07-11 17:12:12 +00:00
|
|
|
use std::{
|
|
|
|
env,
|
|
|
|
sync::{Arc, Mutex},
|
|
|
|
thread,
|
|
|
|
time::Duration,
|
|
|
|
};
|
2021-11-23 12:16:47 +00:00
|
|
|
use tracing_actix_web::TracingLogger;
|
2019-04-06 05:29:20 +00:00
|
|
|
|
2022-09-26 14:09:32 +00:00
|
|
|
pub const MIGRATIONS: EmbeddedMigrations = embed_migrations!();
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2022-06-02 14:33:41 +00:00
|
|
|
/// Max timeout for http requests
|
|
|
|
pub const REQWEST_TIMEOUT: Duration = Duration::from_secs(10);
|
|
|
|
|
2020-09-12 01:37:25 +00:00
|
|
|
#[actix_web::main]
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn main() -> Result<(), LemmyError> {
|
2021-10-08 15:07:24 +00:00
|
|
|
let args: Vec<String> = env::args().collect();
|
|
|
|
if args.len() == 2 && args[1] == "--print-config-docs" {
|
|
|
|
let fmt = Formatting {
|
|
|
|
auto_comments: AutoComments::none(),
|
|
|
|
..Default::default()
|
|
|
|
};
|
|
|
|
println!("{}", doku::to_json_fmt_val(&fmt, &Settings::default()));
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
2022-06-22 20:24:54 +00:00
|
|
|
let settings = SETTINGS.to_owned();
|
2020-01-12 15:31:51 +00:00
|
|
|
|
2022-07-11 20:38:37 +00:00
|
|
|
init_logging(&settings.opentelemetry_url)?;
|
2022-01-06 19:10:20 +00:00
|
|
|
|
2020-01-12 15:31:51 +00:00
|
|
|
// Set up the r2d2 connection pool
|
2020-07-10 18:15:41 +00:00
|
|
|
let db_url = match get_database_url_from_env() {
|
|
|
|
Ok(url) => url,
|
|
|
|
Err(_) => settings.get_database_url(),
|
|
|
|
};
|
|
|
|
let manager = ConnectionManager::<PgConnection>::new(&db_url);
|
2020-01-12 15:31:51 +00:00
|
|
|
let pool = Pool::builder()
|
2021-08-04 21:13:51 +00:00
|
|
|
.max_size(settings.database.pool_size)
|
2022-08-16 11:52:04 +00:00
|
|
|
.min_idle(Some(1))
|
2022-11-05 00:53:46 +00:00
|
|
|
.build(manager)?;
|
2019-07-20 02:56:40 +00:00
|
|
|
|
|
|
|
// Run the migrations from code
|
2022-10-27 09:24:07 +00:00
|
|
|
let settings_cloned = settings.to_owned();
|
2020-07-01 12:54:29 +00:00
|
|
|
blocking(&pool, move |conn| {
|
2022-09-26 14:09:32 +00:00
|
|
|
let _ = conn
|
|
|
|
.run_pending_migrations(MIGRATIONS)
|
|
|
|
.map_err(|_| LemmyError::from_message("Couldn't run migrations"))?;
|
2022-10-27 09:24:07 +00:00
|
|
|
run_advanced_migrations(conn, &settings_cloned)?;
|
2020-07-01 12:54:29 +00:00
|
|
|
Ok(()) as Result<(), LemmyError>
|
|
|
|
})
|
|
|
|
.await??;
|
2019-07-20 02:56:40 +00:00
|
|
|
|
2022-02-01 18:19:07 +00:00
|
|
|
// Schedules various cleanup tasks for the DB
|
2021-01-29 16:38:27 +00:00
|
|
|
let pool2 = pool.clone();
|
|
|
|
thread::spawn(move || {
|
2021-11-09 22:31:28 +00:00
|
|
|
scheduled_tasks::setup(pool2).expect("Couldn't set up scheduled_tasks");
|
2021-01-29 16:38:27 +00:00
|
|
|
});
|
|
|
|
|
2022-10-27 09:24:07 +00:00
|
|
|
// Initialize the secrets
|
|
|
|
let conn = &mut pool.get()?;
|
|
|
|
let secret = Secret::init(conn).expect("Couldn't initialize secrets.");
|
|
|
|
|
|
|
|
// Make sure the local site is set up.
|
|
|
|
let site_view = SiteView::read_local(conn).expect("local site not set up");
|
|
|
|
let local_site = site_view.local_site;
|
|
|
|
let federation_enabled = local_site.federation_enabled;
|
|
|
|
|
|
|
|
if federation_enabled {
|
|
|
|
println!("federation enabled, host is {}", &settings.hostname);
|
|
|
|
}
|
|
|
|
|
|
|
|
check_private_instance_and_federation_enabled(&local_site)?;
|
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
// Set up the rate limiter
|
2022-10-27 09:24:07 +00:00
|
|
|
let rate_limit_config =
|
|
|
|
local_site_rate_limit_to_rate_limit_config(&site_view.local_site_rate_limit);
|
|
|
|
|
|
|
|
// TODO this isn't live-updating
|
|
|
|
// https://github.com/LemmyNet/lemmy/issues/2508
|
2020-04-20 17:51:42 +00:00
|
|
|
let rate_limiter = RateLimit {
|
|
|
|
rate_limiter: Arc::new(Mutex::new(RateLimiter::default())),
|
2022-10-27 09:24:07 +00:00
|
|
|
rate_limit_config,
|
2020-04-20 17:51:42 +00:00
|
|
|
};
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-01-11 12:30:45 +00:00
|
|
|
println!(
|
|
|
|
"Starting http server at {}:{}",
|
2021-08-04 21:13:51 +00:00
|
|
|
settings.bind, settings.port
|
2020-01-11 12:30:45 +00:00
|
|
|
);
|
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
let reqwest_client = Client::builder()
|
2021-09-29 20:05:38 +00:00
|
|
|
.user_agent(build_user_agent(&settings))
|
2022-03-24 16:33:23 +00:00
|
|
|
.timeout(REQWEST_TIMEOUT)
|
2021-09-29 20:05:38 +00:00
|
|
|
.build()?;
|
|
|
|
|
2022-06-02 14:33:41 +00:00
|
|
|
let retry_policy = ExponentialBackoff {
|
|
|
|
max_n_retries: 3,
|
|
|
|
max_retry_interval: REQWEST_TIMEOUT,
|
|
|
|
min_retry_interval: Duration::from_millis(100),
|
|
|
|
backoff_exponent: 2,
|
|
|
|
};
|
2021-11-23 12:20:01 +00:00
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
let client = ClientBuilder::new(reqwest_client.clone())
|
2022-09-26 14:09:32 +00:00
|
|
|
.with(TracingMiddleware::default())
|
2022-06-02 14:33:41 +00:00
|
|
|
.with(RetryTransientMiddleware::new_with_policy(retry_policy))
|
|
|
|
.build();
|
2021-08-19 14:12:49 +00:00
|
|
|
|
2022-06-13 19:15:04 +00:00
|
|
|
// Pictrs cannot use the retry middleware
|
|
|
|
let pictrs_client = ClientBuilder::new(reqwest_client.clone())
|
2022-09-26 14:09:32 +00:00
|
|
|
.with(TracingMiddleware::default())
|
2022-06-13 19:15:04 +00:00
|
|
|
.build();
|
|
|
|
|
2020-08-31 13:48:02 +00:00
|
|
|
let chat_server = ChatServer::startup(
|
|
|
|
pool.clone(),
|
|
|
|
rate_limiter.clone(),
|
2020-09-24 13:53:21 +00:00
|
|
|
|c, i, o, d| Box::pin(match_websocket_operation(c, i, o, d)),
|
2021-03-25 19:30:15 +00:00
|
|
|
|c, i, o, d| Box::pin(match_websocket_operation_crud(c, i, o, d)),
|
2021-09-29 20:05:38 +00:00
|
|
|
client.clone(),
|
2021-09-22 15:57:09 +00:00
|
|
|
settings.clone(),
|
|
|
|
secret.clone(),
|
2020-08-31 13:48:02 +00:00
|
|
|
)
|
|
|
|
.start();
|
2020-08-24 11:58:24 +00:00
|
|
|
|
2019-12-06 19:36:56 +00:00
|
|
|
// Create Http server with websocket support
|
2021-09-22 15:57:09 +00:00
|
|
|
let settings_bind = settings.clone();
|
2019-07-20 02:56:40 +00:00
|
|
|
HttpServer::new(move || {
|
2020-09-24 13:53:21 +00:00
|
|
|
let context = LemmyContext::create(
|
2020-08-31 13:48:02 +00:00
|
|
|
pool.clone(),
|
|
|
|
chat_server.to_owned(),
|
2021-09-29 20:05:38 +00:00
|
|
|
client.clone(),
|
2021-09-22 15:57:09 +00:00
|
|
|
settings.to_owned(),
|
|
|
|
secret.to_owned(),
|
2020-08-31 13:48:02 +00:00
|
|
|
);
|
2020-04-20 03:59:07 +00:00
|
|
|
let rate_limiter = rate_limiter.clone();
|
2019-12-31 12:55:33 +00:00
|
|
|
App::new()
|
2021-12-06 14:54:47 +00:00
|
|
|
.wrap(actix_web::middleware::Logger::default())
|
|
|
|
.wrap(TracingLogger::<QuieterRootSpanBuilder>::new())
|
2021-07-06 13:26:46 +00:00
|
|
|
.app_data(Data::new(context))
|
2022-03-27 00:29:05 +00:00
|
|
|
.app_data(Data::new(rate_limiter.clone()))
|
2020-01-12 15:31:51 +00:00
|
|
|
// The routes
|
2021-03-25 19:30:15 +00:00
|
|
|
.configure(|cfg| api_routes::config(cfg, &rate_limiter))
|
2022-10-27 09:24:07 +00:00
|
|
|
.configure(|cfg| {
|
|
|
|
if federation_enabled {
|
|
|
|
lemmy_apub::http::routes::config(cfg);
|
|
|
|
webfinger::config(cfg);
|
|
|
|
}
|
|
|
|
})
|
2019-12-31 12:55:33 +00:00
|
|
|
.configure(feeds::config)
|
2022-06-13 19:15:04 +00:00
|
|
|
.configure(|cfg| images::config(cfg, pictrs_client.clone(), &rate_limiter))
|
2019-12-31 12:55:33 +00:00
|
|
|
.configure(nodeinfo::config)
|
2019-07-20 02:56:40 +00:00
|
|
|
})
|
2021-09-22 15:57:09 +00:00
|
|
|
.bind((settings_bind.bind, settings_bind.port))?
|
2020-01-11 12:30:45 +00:00
|
|
|
.run()
|
2020-07-01 12:54:29 +00:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|