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::*;
|
2020-06-09 12:01:26 +00:00
|
|
|
use actix_web::{
|
|
|
|
body::Body,
|
2020-08-12 12:30:52 +00:00
|
|
|
dev::{Service, ServiceRequest, ServiceResponse},
|
2020-06-09 12:01:26 +00:00
|
|
|
http::{
|
|
|
|
header::{CACHE_CONTROL, CONTENT_TYPE},
|
|
|
|
HeaderValue,
|
|
|
|
},
|
|
|
|
*,
|
|
|
|
};
|
2020-05-16 14:04:08 +00:00
|
|
|
use diesel::{
|
|
|
|
r2d2::{ConnectionManager, Pool},
|
|
|
|
PgConnection,
|
|
|
|
};
|
2020-09-03 19:45:12 +00:00
|
|
|
use lazy_static::lazy_static;
|
2020-07-10 18:15:41 +00:00
|
|
|
use lemmy_db::get_database_url_from_env;
|
2020-09-01 14:25:34 +00:00
|
|
|
use lemmy_rate_limit::{rate_limiter::RateLimiter, RateLimit};
|
2020-04-19 22:08:25 +00:00
|
|
|
use lemmy_server::{
|
2020-08-31 13:48:02 +00:00
|
|
|
apub::activity_queue::create_activity_queue,
|
2020-07-10 18:15:41 +00:00
|
|
|
code_migrations::run_advanced_migrations,
|
2020-08-05 16:00:00 +00:00
|
|
|
routes::*,
|
2020-08-31 15:20:13 +00:00
|
|
|
websocket::chat_server::ChatServer,
|
2020-08-18 13:43:50 +00:00
|
|
|
LemmyContext,
|
2020-04-19 22:08:25 +00:00
|
|
|
};
|
2020-09-16 13:31:30 +00:00
|
|
|
use lemmy_structs::blocking;
|
2020-09-01 14:25:34 +00:00
|
|
|
use lemmy_utils::{settings::Settings, LemmyError, CACHE_CONTROL_REGEX};
|
2020-08-31 13:48:02 +00:00
|
|
|
use reqwest::Client;
|
2020-07-01 12:54:29 +00:00
|
|
|
use std::sync::Arc;
|
2020-04-20 03:59:07 +00:00
|
|
|
use tokio::sync::Mutex;
|
2019-04-06 05:29:20 +00:00
|
|
|
|
2020-05-31 12:40:31 +00:00
|
|
|
lazy_static! {
|
2020-06-03 16:11:40 +00:00
|
|
|
// static ref CACHE_CONTROL_VALUE: String = format!("public, max-age={}", 365 * 24 * 60 * 60);
|
|
|
|
// Test out 1 hour here, this is breaking some things
|
|
|
|
static ref CACHE_CONTROL_VALUE: String = format!("public, max-age={}", 60 * 60);
|
2020-05-31 12:40:31 +00:00
|
|
|
}
|
|
|
|
|
2019-04-06 05:29:20 +00:00
|
|
|
embed_migrations!();
|
2019-03-21 01:22:31 +00:00
|
|
|
|
2020-09-12 01:37:25 +00:00
|
|
|
#[actix_web::main]
|
2020-07-01 12:54:29 +00:00
|
|
|
async fn main() -> Result<(), LemmyError> {
|
2020-01-02 11:30:00 +00:00
|
|
|
env_logger::init();
|
2020-01-12 15:31:51 +00:00
|
|
|
let settings = Settings::get();
|
|
|
|
|
|
|
|
// 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()
|
|
|
|
.max_size(settings.database.pool_size)
|
|
|
|
.build(manager)
|
2020-07-10 18:15:41 +00:00
|
|
|
.unwrap_or_else(|_| panic!("Error connecting to {}", db_url));
|
2019-07-20 02:56:40 +00:00
|
|
|
|
|
|
|
// Run the migrations from code
|
2020-07-01 12:54:29 +00:00
|
|
|
blocking(&pool, move |conn| {
|
|
|
|
embedded_migrations::run(conn)?;
|
|
|
|
run_advanced_migrations(conn)?;
|
|
|
|
Ok(()) as Result<(), LemmyError>
|
|
|
|
})
|
|
|
|
.await??;
|
2019-07-20 02:56:40 +00:00
|
|
|
|
2020-04-19 22:08:25 +00:00
|
|
|
// Set up the rate limiter
|
2020-04-20 17:51:42 +00:00
|
|
|
let rate_limiter = RateLimit {
|
|
|
|
rate_limiter: Arc::new(Mutex::new(RateLimiter::default())),
|
|
|
|
};
|
2020-04-19 22:08:25 +00:00
|
|
|
|
2020-01-11 12:30:45 +00:00
|
|
|
println!(
|
|
|
|
"Starting http server at {}:{}",
|
|
|
|
settings.bind, settings.port
|
|
|
|
);
|
|
|
|
|
2020-08-31 13:48:02 +00:00
|
|
|
let activity_queue = create_activity_queue();
|
|
|
|
let chat_server = ChatServer::startup(
|
|
|
|
pool.clone(),
|
|
|
|
rate_limiter.clone(),
|
|
|
|
Client::default(),
|
|
|
|
activity_queue.clone(),
|
|
|
|
)
|
|
|
|
.start();
|
2020-08-24 11:58:24 +00:00
|
|
|
|
2019-12-06 19:36:56 +00:00
|
|
|
// Create Http server with websocket support
|
2019-07-20 02:56:40 +00:00
|
|
|
HttpServer::new(move || {
|
2020-09-18 14:37:46 +00:00
|
|
|
let context = LemmyContext::new(
|
2020-08-31 13:48:02 +00:00
|
|
|
pool.clone(),
|
|
|
|
chat_server.to_owned(),
|
|
|
|
Client::default(),
|
|
|
|
activity_queue.to_owned(),
|
|
|
|
);
|
2020-04-20 03:59:07 +00:00
|
|
|
let rate_limiter = rate_limiter.clone();
|
2019-12-31 12:55:33 +00:00
|
|
|
App::new()
|
2020-05-31 12:40:31 +00:00
|
|
|
.wrap_fn(add_cache_headers)
|
2020-01-12 15:31:51 +00:00
|
|
|
.wrap(middleware::Logger::default())
|
2020-08-18 13:43:50 +00:00
|
|
|
.data(context)
|
2020-01-12 15:31:51 +00:00
|
|
|
// The routes
|
2020-08-05 16:00:00 +00:00
|
|
|
.configure(|cfg| api::config(cfg, &rate_limiter))
|
2019-12-31 12:55:33 +00:00
|
|
|
.configure(federation::config)
|
|
|
|
.configure(feeds::config)
|
2020-08-05 16:00:00 +00:00
|
|
|
.configure(|cfg| images::config(cfg, &rate_limiter))
|
2019-12-31 12:55:33 +00:00
|
|
|
.configure(nodeinfo::config)
|
|
|
|
.configure(webfinger::config)
|
2020-09-15 19:26:47 +00:00
|
|
|
.service(actix_files::Files::new("/docs", "/app/documentation"))
|
2019-07-20 02:56:40 +00:00
|
|
|
})
|
2020-01-11 12:30:45 +00:00
|
|
|
.bind((settings.bind, settings.port))?
|
|
|
|
.run()
|
2020-07-01 12:54:29 +00:00
|
|
|
.await?;
|
|
|
|
|
|
|
|
Ok(())
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
2020-05-31 12:40:31 +00:00
|
|
|
|
|
|
|
fn add_cache_headers<S>(
|
|
|
|
req: ServiceRequest,
|
|
|
|
srv: &mut S,
|
|
|
|
) -> impl Future<Output = Result<ServiceResponse, Error>>
|
|
|
|
where
|
|
|
|
S: Service<Request = ServiceRequest, Response = ServiceResponse<Body>, Error = Error>,
|
|
|
|
{
|
|
|
|
let fut = srv.call(req);
|
|
|
|
async move {
|
|
|
|
let mut res = fut.await?;
|
|
|
|
if let Some(content_type) = res.headers().get(CONTENT_TYPE) {
|
|
|
|
if CACHE_CONTROL_REGEX.is_match(content_type.to_str().unwrap()) {
|
|
|
|
let header_val = HeaderValue::from_static(&CACHE_CONTROL_VALUE);
|
|
|
|
res.headers_mut().insert(CACHE_CONTROL, header_val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(res)
|
|
|
|
}
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|