2019-07-17 11:11:01 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate diesel_migrations;
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2020-01-16 03:01:14 +00:00
|
|
|
use actix::prelude::*;
|
2022-11-19 04:33:54 +00:00
|
|
|
use actix_web::{middleware, web::Data, App, HttpServer, Result};
|
2022-09-26 14:09:32 +00:00
|
|
|
use diesel_migrations::EmbeddedMigrations;
|
2022-11-11 21:01:29 +00:00
|
|
|
use doku::json::{AutoComments, CommentsStyle, Formatting, ObjectsStyle};
|
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::{
|
|
|
|
check_private_instance_and_federation_enabled,
|
|
|
|
local_site_rate_limit_to_rate_limit_config,
|
|
|
|
},
|
2022-11-26 02:04:46 +00:00
|
|
|
websocket::chat_server::ChatServer,
|
|
|
|
LemmyContext,
|
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-11-09 10:05:00 +00:00
|
|
|
use lemmy_db_schema::{
|
|
|
|
source::secret::Secret,
|
|
|
|
utils::{build_db_pool, get_database_url, run_migrations},
|
|
|
|
};
|
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,
|
2022-11-16 19:06:22 +00:00
|
|
|
rate_limit::RateLimitCell,
|
2022-06-22 20:24:54 +00:00
|
|
|
settings::{structs::Settings, SETTINGS},
|
2020-12-21 23:27:42 +00:00
|
|
|
};
|
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-11-16 19:06:22 +00:00
|
|
|
use std::{env, 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(),
|
2022-11-11 21:01:29 +00:00
|
|
|
comments_style: CommentsStyle {
|
|
|
|
separator: "#".to_owned(),
|
|
|
|
},
|
|
|
|
objects_style: ObjectsStyle {
|
|
|
|
surround_keys_with_quotes: false,
|
|
|
|
use_comma_as_separator: false,
|
|
|
|
},
|
2021-10-08 15:07:24 +00:00
|
|
|
..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
|
|
|
|
2022-11-09 10:05:00 +00:00
|
|
|
// Set up the bb8 connection pool
|
|
|
|
let db_url = get_database_url(Some(&settings));
|
|
|
|
run_migrations(&db_url);
|
2019-07-20 02:56:40 +00:00
|
|
|
|
|
|
|
// Run the migrations from code
|
2022-11-09 10:05:00 +00:00
|
|
|
let pool = build_db_pool(&settings).await?;
|
|
|
|
run_advanced_migrations(&pool, &settings).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
|
|
|
thread::spawn(move || {
|
2022-11-09 10:05:00 +00:00
|
|
|
scheduled_tasks::setup(db_url).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
|
2022-11-09 10:05:00 +00:00
|
|
|
let secret = Secret::init(&pool)
|
|
|
|
.await
|
|
|
|
.expect("Couldn't initialize secrets.");
|
2022-10-27 09:24:07 +00:00
|
|
|
|
|
|
|
// Make sure the local site is set up.
|
2022-11-09 10:05:00 +00:00
|
|
|
let site_view = SiteView::read_local(&pool)
|
|
|
|
.await
|
|
|
|
.expect("local site not set up");
|
2022-10-27 09:24:07 +00:00
|
|
|
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);
|
2022-11-16 19:06:22 +00:00
|
|
|
let rate_limit_cell = RateLimitCell::new(rate_limit_config).await;
|
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(),
|
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(),
|
2022-11-16 19:06:22 +00:00
|
|
|
rate_limit_cell.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(),
|
2022-11-19 04:33:54 +00:00
|
|
|
chat_server.clone(),
|
2021-09-29 20:05:38 +00:00
|
|
|
client.clone(),
|
2022-11-19 04:33:54 +00:00
|
|
|
settings.clone(),
|
|
|
|
secret.clone(),
|
2022-11-16 19:06:22 +00:00
|
|
|
rate_limit_cell.clone(),
|
2020-08-31 13:48:02 +00:00
|
|
|
);
|
2019-12-31 12:55:33 +00:00
|
|
|
App::new()
|
2022-11-16 19:06:22 +00:00
|
|
|
.wrap(middleware::Logger::default())
|
2021-12-06 14:54:47 +00:00
|
|
|
.wrap(TracingLogger::<QuieterRootSpanBuilder>::new())
|
2021-07-06 13:26:46 +00:00
|
|
|
.app_data(Data::new(context))
|
2022-11-16 19:06:22 +00:00
|
|
|
.app_data(Data::new(rate_limit_cell.clone()))
|
2020-01-12 15:31:51 +00:00
|
|
|
// The routes
|
2022-11-16 19:06:22 +00:00
|
|
|
.configure(|cfg| api_routes::config(cfg, rate_limit_cell))
|
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-11-16 19:06:22 +00:00
|
|
|
.configure(|cfg| images::config(cfg, pictrs_client.clone(), rate_limit_cell))
|
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
|
|
|
}
|