libreddit/src/settings.rs

143 lines
3.4 KiB
Rust
Raw Permalink Normal View History

2021-03-17 23:30:33 +01:00
use std::collections::HashMap;
2021-01-06 03:04:49 +01:00
// CRATES
2021-03-17 23:30:33 +01:00
use crate::server::ResponseExt;
2021-02-25 06:29:23 +01:00
use crate::utils::{redirect, template, Preferences};
2021-01-06 03:04:49 +01:00
use askama::Template;
2021-03-17 23:30:33 +01:00
use cookie::Cookie;
use futures_lite::StreamExt;
use hyper::{Body, Request, Response};
2021-01-06 03:04:49 +01:00
use time::{Duration, OffsetDateTime};
// STRUCTS
#[derive(Template)]
2021-01-07 17:38:05 +01:00
#[template(path = "settings.html")]
2021-01-06 03:04:49 +01:00
struct SettingsTemplate {
2021-01-09 02:50:03 +01:00
prefs: Preferences,
url: String,
2021-01-06 03:04:49 +01:00
}
// CONSTANTS
2023-02-08 08:22:37 +01:00
const PREFS: [&str; 13] = [
"theme",
"front_page",
"layout",
"wide",
"comment_sort",
"post_sort",
"show_nsfw",
"blur_nsfw",
"use_hls",
"hide_hls_notification",
2021-10-26 06:27:55 +02:00
"autoplay_videos",
2023-01-02 03:39:38 +01:00
"hide_awards",
2023-01-12 09:46:56 +01:00
"disable_visit_reddit_confirmation",
];
2021-01-06 03:04:49 +01:00
// FUNCTIONS
// Retrieve cookies from request "Cookie" header
2021-03-17 23:30:33 +01:00
pub async fn get(req: Request<Body>) -> Result<Response<Body>, String> {
let url = req.uri().to_string();
template(SettingsTemplate {
2023-01-02 03:39:38 +01:00
prefs: Preferences::new(&req),
2021-11-15 03:51:36 +01:00
url,
})
2021-01-06 03:04:49 +01:00
}
// Set cookies using response "Set-Cookie" header
2021-03-17 23:30:33 +01:00
pub async fn set(req: Request<Body>) -> Result<Response<Body>, String> {
// Split the body into parts
let (parts, mut body) = req.into_parts();
// Grab existing cookies
2021-05-20 21:24:06 +02:00
let _cookies: Vec<Cookie> = parts
.headers
.get_all("Cookie")
.iter()
.filter_map(|header| Cookie::parse(header.to_str().unwrap_or_default()).ok())
.collect();
2021-03-17 23:30:33 +01:00
// Aggregate the body...
// let whole_body = hyper::body::aggregate(req).await.map_err(|e| e.to_string())?;
let body_bytes = body
.try_fold(Vec::new(), |mut data, chunk| {
data.extend_from_slice(&chunk);
Ok(data)
})
.await
.map_err(|e| e.to_string())?;
let form = url::form_urlencoded::parse(&body_bytes).collect::<HashMap<_, _>>();
2021-05-20 21:24:06 +02:00
let mut response = redirect("/settings".to_string());
2021-01-06 03:04:49 +01:00
for &name in &PREFS {
2021-03-17 23:30:33 +01:00
match form.get(name) {
2021-05-20 21:24:06 +02:00
Some(value) => response.insert_cookie(
Cookie::build(name.to_owned(), value.clone())
2021-01-09 02:35:04 +01:00
.path("/")
.http_only(true)
.expires(OffsetDateTime::now_utc() + Duration::weeks(52))
.finish(),
),
2021-05-20 21:24:06 +02:00
None => response.remove_cookie(name.to_string()),
2021-01-09 02:35:04 +01:00
};
}
2021-01-07 17:38:05 +01:00
2021-05-20 21:24:06 +02:00
Ok(response)
2021-01-06 03:04:49 +01:00
}
fn set_cookies_method(req: Request<Body>, remove_cookies: bool) -> Response<Body> {
2021-03-17 23:30:33 +01:00
// Split the body into parts
let (parts, _) = req.into_parts();
// Grab existing cookies
2021-05-20 21:24:06 +02:00
let _cookies: Vec<Cookie> = parts
.headers
.get_all("Cookie")
.iter()
.filter_map(|header| Cookie::parse(header.to_str().unwrap_or_default()).ok())
.collect();
2021-03-17 23:30:33 +01:00
let query = parts.uri.query().unwrap_or_default().as_bytes();
2021-03-17 23:30:33 +01:00
let form = url::form_urlencoded::parse(query).collect::<HashMap<_, _>>();
let path = match form.get("redirect") {
Some(value) => format!("/{}", value.replace("%26", "&").replace("%23", "#")),
2021-02-14 00:02:38 +01:00
None => "/".to_string(),
};
2021-05-20 21:24:06 +02:00
let mut response = redirect(path);
for name in [PREFS.to_vec(), vec!["subscriptions", "filters"]].concat() {
2021-03-17 23:30:33 +01:00
match form.get(name) {
2021-05-20 21:24:06 +02:00
Some(value) => response.insert_cookie(
Cookie::build(name.to_owned(), value.clone())
.path("/")
.http_only(true)
.expires(OffsetDateTime::now_utc() + Duration::weeks(52))
.finish(),
),
None => {
if remove_cookies {
2021-09-10 02:28:55 +02:00
response.remove_cookie(name.to_string());
}
}
};
}
2021-05-20 21:24:06 +02:00
response
}
// Set cookies using response "Set-Cookie" header
pub async fn restore(req: Request<Body>) -> Result<Response<Body>, String> {
Ok(set_cookies_method(req, true))
}
pub async fn update(req: Request<Body>) -> Result<Response<Body>, String> {
Ok(set_cookies_method(req, false))
}