2020-10-26 09:25:59 +13:00
|
|
|
// Import Crates
|
2021-01-13 17:18:20 +13:00
|
|
|
use actix_web::{middleware, web, App, HttpResponse, HttpServer}; // dev::Service
|
2020-10-26 09:25:59 +13:00
|
|
|
|
|
|
|
// Reference local files
|
|
|
|
mod post;
|
2020-11-30 15:50:29 +13:00
|
|
|
mod proxy;
|
2021-01-01 12:54:13 +13:00
|
|
|
mod search;
|
2021-01-06 15:04:49 +13:00
|
|
|
mod settings;
|
2020-10-26 09:25:59 +13:00
|
|
|
mod subreddit;
|
2020-10-26 16:57:19 +13:00
|
|
|
mod user;
|
2020-11-26 10:53:30 +13:00
|
|
|
mod utils;
|
2020-10-26 09:25:59 +13:00
|
|
|
|
|
|
|
// Create Services
|
2020-11-19 13:31:46 +13:00
|
|
|
async fn style() -> HttpResponse {
|
2020-11-30 10:46:53 +13:00
|
|
|
HttpResponse::Ok().content_type("text/css").body(include_str!("../static/style.css"))
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2020-11-21 16:33:38 +13:00
|
|
|
async fn robots() -> HttpResponse {
|
2021-01-07 11:19:10 +13:00
|
|
|
HttpResponse::Ok()
|
|
|
|
.header("Cache-Control", "public, max-age=1209600, s-maxage=86400")
|
|
|
|
.body(include_str!("../static/robots.txt"))
|
2020-11-21 16:33:38 +13:00
|
|
|
}
|
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
async fn favicon() -> HttpResponse {
|
2021-01-13 17:18:20 +13:00
|
|
|
HttpResponse::Ok()
|
|
|
|
.header("Cache-Control", "public, max-age=1209600, s-maxage=86400")
|
|
|
|
.body(include_bytes!("../static/favicon.ico").as_ref())
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
#[actix_web::main]
|
|
|
|
async fn main() -> std::io::Result<()> {
|
2020-11-23 16:21:07 +13:00
|
|
|
let mut address = "0.0.0.0:8080".to_string();
|
2021-01-11 10:08:36 +13:00
|
|
|
// let mut https = false;
|
2020-11-23 16:21:07 +13:00
|
|
|
|
2021-01-11 10:08:36 +13:00
|
|
|
for arg in std::env::args().collect::<Vec<String>>() {
|
|
|
|
match arg.split('=').collect::<Vec<&str>>()[0] {
|
|
|
|
"--address" | "-a" => address = arg.split('=').collect::<Vec<&str>>()[1].to_string(),
|
|
|
|
// "--redirect-https" | "-r" => https = true,
|
|
|
|
_ => {}
|
2020-11-23 16:21:07 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-26 16:57:19 +13:00
|
|
|
// start http server
|
2021-01-02 09:55:09 +13:00
|
|
|
println!("Running Libreddit v{} on {}!", env!("CARGO_PKG_VERSION"), &address);
|
2020-11-19 15:50:59 +13:00
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
HttpServer::new(|| {
|
2020-10-26 16:57:19 +13:00
|
|
|
App::new()
|
2021-01-11 10:08:36 +13:00
|
|
|
// REDIRECT TO HTTPS
|
|
|
|
// .wrap(middleware::DefaultHeaders::new().header("Strict-Transport-Security", "max-age=31536000"))
|
|
|
|
// .wrap_fn(|req, srv| {
|
|
|
|
// let fut = srv.call(req);
|
|
|
|
// async {
|
|
|
|
// let mut res = fut.await?;
|
|
|
|
// if https {
|
|
|
|
// res.headers_mut().insert(
|
|
|
|
// actix_web::http::header::STRICT_TRANSPORT_SECURITY, actix_web::http::HeaderValue::from_static("max-age=31536000;"),
|
|
|
|
// );
|
|
|
|
// }
|
|
|
|
// Ok(res)
|
|
|
|
// }
|
|
|
|
// })
|
2020-12-15 13:35:04 +13:00
|
|
|
// TRAILING SLASH MIDDLEWARE
|
2021-01-11 10:20:47 +13:00
|
|
|
.wrap(middleware::NormalizePath::default())
|
2021-01-01 18:03:44 +13:00
|
|
|
// DEFAULT SERVICE
|
2021-01-09 18:11:20 +13:00
|
|
|
.default_service(web::get().to(|| utils::error("Nothing here".to_string())))
|
2020-10-26 16:57:19 +13:00
|
|
|
// GENERAL SERVICES
|
2020-12-15 13:35:04 +13:00
|
|
|
.route("/style.css/", web::get().to(style))
|
2021-01-13 17:18:20 +13:00
|
|
|
.route("/favicon.ico/", web::get().to(favicon))
|
2020-12-15 13:35:04 +13:00
|
|
|
.route("/robots.txt/", web::get().to(robots))
|
2021-01-03 17:50:23 +13:00
|
|
|
// SETTINGS SERVICE
|
2021-01-06 15:04:49 +13:00
|
|
|
.route("/settings/", web::get().to(settings::get))
|
|
|
|
.route("/settings/", web::post().to(settings::set))
|
2020-11-23 17:22:51 +13:00
|
|
|
// PROXY SERVICE
|
2020-12-15 13:35:04 +13:00
|
|
|
.route("/proxy/{url:.*}/", web::get().to(proxy::handler))
|
2021-01-01 12:54:13 +13:00
|
|
|
// SEARCH SERVICES
|
2021-01-01 18:03:44 +13:00
|
|
|
.route("/search/", web::get().to(search::find))
|
|
|
|
.route("r/{sub}/search/", web::get().to(search::find))
|
2020-12-15 13:35:04 +13:00
|
|
|
// USER SERVICES
|
2021-01-01 12:54:13 +13:00
|
|
|
.route("/u/{username}/", web::get().to(user::profile))
|
|
|
|
.route("/user/{username}/", web::get().to(user::profile))
|
2021-01-02 19:21:43 +13:00
|
|
|
// WIKI SERVICES
|
2021-01-03 07:58:21 +13:00
|
|
|
.route("/wiki/", web::get().to(subreddit::wiki))
|
|
|
|
.route("/wiki/{page}/", web::get().to(subreddit::wiki))
|
2021-01-02 19:21:43 +13:00
|
|
|
.route("/r/{sub}/wiki/", web::get().to(subreddit::wiki))
|
|
|
|
.route("/r/{sub}/wiki/{page}/", web::get().to(subreddit::wiki))
|
2020-10-26 16:57:19 +13:00
|
|
|
// SUBREDDIT SERVICES
|
2020-12-15 13:35:04 +13:00
|
|
|
.route("/r/{sub}/", web::get().to(subreddit::page))
|
2021-01-04 18:00:36 +13:00
|
|
|
.route("/r/{sub}/{sort:hot|new|top|rising|controversial}/", web::get().to(subreddit::page))
|
2020-10-26 16:57:19 +13:00
|
|
|
// POPULAR SERVICES
|
2021-01-01 12:54:13 +13:00
|
|
|
.route("/", web::get().to(subreddit::page))
|
2021-01-04 18:00:36 +13:00
|
|
|
.route("/{sort:best|hot|new|top|rising|controversial}/", web::get().to(subreddit::page))
|
2020-12-15 13:35:04 +13:00
|
|
|
// POST SERVICES
|
2021-01-01 12:54:13 +13:00
|
|
|
.route("/{id:.{5,6}}/", web::get().to(post::item))
|
|
|
|
.route("/r/{sub}/comments/{id}/{title}/", web::get().to(post::item))
|
|
|
|
.route("/r/{sub}/comments/{id}/{title}/{comment_id}/", web::get().to(post::item))
|
2020-10-26 16:57:19 +13:00
|
|
|
})
|
2021-01-02 09:55:09 +13:00
|
|
|
.bind(&address)
|
2021-01-11 10:08:36 +13:00
|
|
|
.unwrap_or_else(|e| panic!("Cannot bind to the address {}: {}", address, e))
|
2020-10-26 16:57:19 +13:00
|
|
|
.run()
|
|
|
|
.await
|
|
|
|
}
|