libreddit/src/main.rs

278 lines
8.1 KiB
Rust
Raw Normal View History

2021-03-09 03:49:06 +01:00
// Global specifiers
#![forbid(unsafe_code)]
#![warn(clippy::pedantic, clippy::all)]
2021-03-09 04:22:10 +01:00
#![allow(
2021-03-10 07:13:46 +01:00
clippy::needless_pass_by_value,
2021-03-09 04:22:10 +01:00
clippy::match_wildcard_for_single_variants,
clippy::cast_possible_truncation,
2021-03-10 07:13:46 +01:00
clippy::similar_names,
clippy::cast_possible_wrap
2021-03-09 04:22:10 +01:00
)]
2021-03-09 03:49:06 +01:00
2020-10-25 21:25:59 +01:00
// Reference local files
mod post;
2020-11-30 03:50:29 +01:00
mod proxy;
2021-01-01 00:54:13 +01:00
mod search;
2021-01-06 03:04:49 +01:00
mod settings;
2020-10-25 21:25:59 +01:00
mod subreddit;
2020-10-26 04:57:19 +01:00
mod user;
2020-11-25 22:53:30 +01:00
mod utils;
2020-10-25 21:25:59 +01:00
2021-02-14 00:02:38 +01:00
// Import Crates
2021-02-18 20:40:10 +01:00
use clap::{App, Arg};
use proxy::handler;
2021-02-14 00:02:38 +01:00
use tide::{
utils::{async_trait, After},
Middleware, Next, Request, Response,
};
use utils::{error, redirect};
// Build middleware
struct HttpsRedirect<HttpsOnly>(HttpsOnly);
struct NormalizePath;
#[async_trait]
impl<State, HttpsOnly> Middleware<State> for HttpsRedirect<HttpsOnly>
where
State: Clone + Send + Sync + 'static,
HttpsOnly: Into<bool> + Copy + Send + Sync + 'static,
{
async fn handle(&self, request: Request<State>, next: Next<'_, State>) -> tide::Result {
let secure = request.url().scheme() == "https";
if self.0.into() && !secure {
let mut secured = request.url().to_owned();
secured.set_scheme("https").unwrap_or_default();
2021-02-14 00:02:38 +01:00
Ok(redirect(secured.to_string()))
} else {
Ok(next.run(request).await)
}
}
}
#[async_trait]
impl<State: Clone + Send + Sync + 'static> Middleware<State> for NormalizePath {
async fn handle(&self, request: Request<State>, next: Next<'_, State>) -> tide::Result {
2021-02-27 22:34:02 +01:00
let path = request.url().path();
let query = request.url().query().unwrap_or_default();
if path.ends_with('/') {
Ok(next.run(request).await)
2021-02-27 22:34:02 +01:00
} else {
2021-03-09 03:49:06 +01:00
let normalized = if query.is_empty() {
2021-02-27 22:34:02 +01:00
format!("{}/", path.replace("//", "/"))
2021-03-09 03:49:06 +01:00
} else {
format!("{}/?{}", path.replace("//", "/"), query)
2021-02-27 22:34:02 +01:00
};
Ok(redirect(normalized))
}
}
}
2020-10-25 21:25:59 +01:00
// Create Services
// Required for the manifest to be valid
async fn pwa_logo(_req: Request<()>) -> tide::Result {
2021-02-14 00:02:38 +01:00
Ok(Response::builder(200).content_type("image/png").body(include_bytes!("../static/logo.png").as_ref()).build())
}
// Required for iOS App Icons
async fn iphone_logo(_req: Request<()>) -> tide::Result {
Ok(
Response::builder(200)
.content_type("image/png")
2021-02-25 18:07:45 +01:00
.body(include_bytes!("../static/apple-touch-icon.png").as_ref())
.build(),
)
}
async fn favicon(_req: Request<()>) -> tide::Result {
Ok(
Response::builder(200)
2021-02-26 21:04:11 +01:00
.content_type("image/vnd.microsoft.icon")
.header("Cache-Control", "public, max-age=1209600, s-maxage=86400")
2021-02-26 21:04:11 +01:00
.body(include_bytes!("../static/favicon.ico").as_ref())
.build(),
)
2020-10-25 21:25:59 +01:00
}
2021-02-24 18:26:01 +01:00
async fn resource(body: &str, content_type: &str, cache: bool) -> tide::Result {
let mut res = Response::new(200);
if cache {
res.insert_header("Cache-Control", "public, max-age=1209600, s-maxage=86400");
}
res.set_content_type(content_type);
res.set_body(body);
Ok(res)
}
#[async_std::main]
async fn main() -> tide::Result<()> {
2021-02-18 20:40:10 +01:00
let matches = App::new("Libreddit")
.version(env!("CARGO_PKG_VERSION"))
.about("Private front-end for Reddit written in Rust ")
.arg(
Arg::with_name("address")
.short("a")
.long("address")
.value_name("ADDRESS")
.help("Sets address to listen on")
2021-02-18 20:49:50 +01:00
.default_value("0.0.0.0")
.takes_value(true),
)
.arg(
Arg::with_name("port")
.short("p")
.long("port")
.value_name("PORT")
.help("Port to listen on")
.default_value("8080")
2021-02-18 20:40:10 +01:00
.takes_value(true),
)
.arg(
Arg::with_name("redirect-https")
.short("r")
.long("redirect-https")
.help("Redirect all HTTP requests to HTTPS")
.takes_value(false),
)
.get_matches();
2021-02-18 20:49:50 +01:00
let address = matches.value_of("address").unwrap_or("0.0.0.0");
let port = matches.value_of("port").unwrap_or("8080");
2021-02-18 20:40:10 +01:00
let force_https = matches.is_present("redirect-https");
2021-02-18 20:49:50 +01:00
let listener = format!("{}:{}", address, port);
2020-11-23 04:21:07 +01:00
2021-02-24 20:00:04 +01:00
println!("Starting Libreddit...");
// Start HTTP server
let mut app = tide::new();
// Redirect to HTTPS if "--redirect-https" enabled
app.with(HttpsRedirect(force_https));
// Append trailing slash and remove double slashes
app.with(NormalizePath);
// Apply default headers for security
app.with(After(|mut res: Response| async move {
res.insert_header("Referrer-Policy", "no-referrer");
res.insert_header("X-Content-Type-Options", "nosniff");
res.insert_header("X-Frame-Options", "DENY");
res.insert_header(
"Content-Security-Policy",
"default-src 'none'; manifest-src 'self'; media-src 'self'; style-src 'self' 'unsafe-inline'; base-uri 'none'; img-src 'self' data:; form-action 'self'; frame-ancestors 'none';",
);
Ok(res)
}));
// Read static files
2021-02-24 18:26:01 +01:00
app.at("/style.css/").get(|_| resource(include_str!("../static/style.css"), "text/css", false));
2021-02-25 18:07:45 +01:00
app
.at("/manifest.json/")
.get(|_| resource(include_str!("../static/manifest.json"), "application/json", false));
2021-02-24 18:26:01 +01:00
app.at("/robots.txt/").get(|_| resource("User-agent: *\nAllow: /", "text/plain", true));
2021-02-26 21:04:11 +01:00
app.at("/favicon.ico/").get(favicon);
app.at("/logo.png/").get(pwa_logo);
app.at("/touch-icon-iphone.png/").get(iphone_logo);
2021-02-09 21:08:38 +01:00
app.at("/apple-touch-icon.png/").get(iphone_logo);
// Proxy media through Libreddit
app
.at("/vid/:id/:size/") /* */
.get(|req| handler(req, "https://v.redd.it/{}/DASH_{}", vec!["id", "size"]));
app
.at("/img/:id/") /* */
.get(|req| handler(req, "https://i.redd.it/{}", vec!["id"]));
app
.at("/thumb/:point/:id/") /* */
.get(|req| handler(req, "https://{}.thumbs.redditmedia.com/{}", vec!["point", "id"]));
app
.at("/emoji/:id/:name/") /* */
.get(|req| handler(req, "https://emoji.redditmedia.com/{}/{}", vec!["id", "name"]));
app
.at("/preview/:loc/:id/:query/")
2021-02-20 06:49:02 +01:00
.get(|req| handler(req, "https://{}view.redd.it/{}?{}", vec!["loc", "id", "query"]));
app
.at("/style/*path/") /* */
.get(|req| handler(req, "https://styles.redditmedia.com/{}", vec!["path"]));
app
.at("/static/*path/") /* */
.get(|req| handler(req, "https://www.redditstatic.com/{}", vec!["path"]));
// Browse user profile
app.at("/u/:name/").get(user::profile);
app.at("/u/:name/comments/:id/:title/").get(post::item);
app.at("/u/:name/comments/:id/:title/:comment_id/").get(post::item);
app.at("/user/:name/").get(user::profile);
2021-02-09 19:11:39 +01:00
app.at("/user/:name/comments/:id/").get(post::item);
app.at("/user/:name/comments/:id/:title/").get(post::item);
app.at("/user/:name/comments/:id/:title/:comment_id/").get(post::item);
// Configure settings
app.at("/settings/").get(settings::get).post(settings::set);
app.at("/settings/restore/").get(settings::restore);
// Subreddit services
app.at("/r/:sub/").get(subreddit::community);
2021-02-24 18:26:01 +01:00
app.at("/r/:sub/subscribe/").post(subreddit::subscriptions);
app.at("/r/:sub/unsubscribe/").post(subreddit::subscriptions);
2021-02-24 18:26:01 +01:00
2021-02-09 19:11:39 +01:00
app.at("/r/:sub/comments/:id/").get(post::item);
app.at("/r/:sub/comments/:id/:title/").get(post::item);
app.at("/r/:sub/comments/:id/:title/:comment_id/").get(post::item);
2021-02-24 18:26:01 +01:00
app.at("/r/:sub/search/").get(search::find);
2021-02-24 18:26:01 +01:00
app.at("/r/:sub/wiki/").get(subreddit::wiki);
app.at("/r/:sub/wiki/:page/").get(subreddit::wiki);
2021-02-24 18:26:01 +01:00
app.at("/r/:sub/w/").get(subreddit::wiki);
app.at("/r/:sub/w/:page/").get(subreddit::wiki);
app.at("/r/:sub/:sort/").get(subreddit::community);
2021-03-05 15:24:40 +01:00
// Comments handler
app.at("/comments/:id/").get(post::item);
// Front page
app.at("/").get(subreddit::community);
// View Reddit wiki
app.at("/w/").get(subreddit::wiki);
app.at("/w/:page/").get(subreddit::wiki);
app.at("/wiki/").get(subreddit::wiki);
app.at("/wiki/:page/").get(subreddit::wiki);
// Search all of Reddit
app.at("/search/").get(search::find);
2021-02-21 19:13:20 +01:00
// Handle about pages
app.at("/about/").get(|req| error(req, "About pages aren't here yet".to_string()));
app.at("/:id/").get(|req: Request<()>| async {
2021-02-09 21:08:38 +01:00
match req.param("id") {
// Sort front page
Ok("best") | Ok("hot") | Ok("new") | Ok("top") | Ok("rising") | Ok("controversial") => subreddit::community(req).await,
2021-02-09 21:08:38 +01:00
// Short link for post
Ok(id) if id.len() > 4 && id.len() < 7 => post::item(req).await,
2021-02-24 18:26:01 +01:00
// Error message for unknown pages
2021-02-21 03:36:30 +01:00
_ => error(req, "Nothing here".to_string()).await,
}
});
// Default service in case no routes match
2021-02-21 03:36:30 +01:00
app.at("*").get(|req| error(req, "Nothing here".to_string()));
2021-02-24 20:00:04 +01:00
println!("Running Libreddit v{} on {}!", env!("CARGO_PKG_VERSION"), listener);
2021-02-24 18:26:01 +01:00
app.listen(&listener).await?;
2021-02-24 20:00:04 +01:00
Ok(())
2020-10-26 04:57:19 +01:00
}