libreddit/src/subreddit.rs

211 lines
6.5 KiB
Rust
Raw Normal View History

2020-10-25 21:25:59 +01:00
// CRATES
2021-03-12 05:15:26 +01:00
use crate::esc;
2021-03-17 23:30:33 +01:00
use crate::utils::{cookie, error, format_num, format_url, param, redirect, rewrite_urls, template, val, Post, Preferences, Subreddit};
use crate::{client::json, server::ResponseExt, RequestExt};
2020-10-25 21:25:59 +01:00
use askama::Template;
2021-03-17 23:30:33 +01:00
use cookie::Cookie;
use hyper::{Body, Request, Response};
2021-01-30 08:00:00 +01:00
use time::{Duration, OffsetDateTime};
2020-11-17 20:37:40 +01:00
2020-10-25 21:25:59 +01:00
// STRUCTS
#[derive(Template)]
#[template(path = "subreddit.html", escape = "none")]
struct SubredditTemplate {
sub: Subreddit,
posts: Vec<Post>,
2020-12-30 02:11:47 +01:00
sort: (String, String),
2020-11-30 03:50:29 +01:00
ends: (String, String),
2021-01-09 02:35:04 +01:00
prefs: Preferences,
2020-10-25 21:25:59 +01:00
}
2021-01-02 07:21:43 +01:00
#[derive(Template)]
#[template(path = "wiki.html", escape = "none")]
struct WikiTemplate {
sub: String,
wiki: String,
2021-01-02 19:58:21 +01:00
page: String,
2021-01-10 22:08:36 +01:00
prefs: Preferences,
2021-01-02 07:21:43 +01:00
}
2020-11-19 22:49:32 +01:00
// SERVICES
2021-03-17 23:30:33 +01:00
pub async fn community(req: Request<Body>) -> Result<Response<Body>, String> {
// Build Reddit API path
let subscribed = cookie(&req, "subscriptions");
let front_page = cookie(&req, "front_page");
2021-03-27 04:00:47 +01:00
let post_sort = req.cookie("post_sort").map_or_else(|| "hot".to_string(), |c| c.value().to_string());
let sort = req.param("sort").unwrap_or_else(|| req.param("id").unwrap_or(post_sort));
2021-03-27 04:00:47 +01:00
let sub = req.param("sub").map_or(
if front_page == "default" || front_page.is_empty() {
if subscribed.is_empty() {
"popular".to_string()
} else {
subscribed.to_owned()
}
} else {
2021-03-27 04:00:47 +01:00
front_page.to_owned()
},
String::from,
);
2021-03-17 23:30:33 +01:00
let path = format!("/r/{}/{}.json?{}&raw_json=1", sub, sort, req.uri().query().unwrap_or_default());
2021-01-01 00:54:13 +01:00
2021-02-25 06:29:23 +01:00
match Post::fetch(&path, String::new()).await {
2021-01-07 17:38:05 +01:00
Ok((posts, after)) => {
2021-01-16 00:05:55 +01:00
// If you can get subreddit posts, also request subreddit metadata
let sub = if !sub.contains('+') && sub != subscribed && sub != "popular" && sub != "all" {
// Regular subreddit
2021-01-31 03:10:38 +01:00
subreddit(&sub).await.unwrap_or_default()
} else if sub == subscribed {
2021-01-31 05:24:09 +01:00
// Subscription feed
2021-03-17 23:30:33 +01:00
if req.uri().path().starts_with("/r/") {
subreddit(&sub).await.unwrap_or_default()
} else {
Subreddit::default()
}
2021-01-31 05:24:09 +01:00
} else if sub.contains('+') {
// Multireddit
Subreddit {
name: sub,
..Subreddit::default()
}
2021-01-16 00:05:55 +01:00
} else {
Subreddit::default()
};
template(SubredditTemplate {
2021-01-07 17:38:05 +01:00
sub,
posts,
2021-01-02 00:28:13 +01:00
sort: (sort, param(&path, "t")),
2021-01-07 06:27:24 +01:00
ends: (param(&path, "after"), after),
2021-02-25 06:29:23 +01:00
prefs: Preferences::new(req),
})
2021-01-02 07:21:43 +01:00
}
Err(msg) => match msg.as_str() {
"quarantined" => error(req, format!("r/{} has been quarantined by Reddit", sub)).await,
"private" => error(req, format!("r/{} is a private community", sub)).await,
"banned" => error(req, format!("r/{} has been banned from Reddit", sub)).await,
_ => error(req, msg).await,
},
2021-01-02 07:21:43 +01:00
}
}
2021-01-30 08:18:53 +01:00
// Sub or unsub by setting subscription cookie using response "Set-Cookie" header
2021-03-17 23:30:33 +01:00
pub async fn subscriptions(req: Request<Body>) -> Result<Response<Body>, String> {
2021-03-27 04:00:47 +01:00
let sub = req.param("sub").unwrap_or_default();
2021-03-17 23:30:33 +01:00
let query = req.uri().query().unwrap_or_default().to_string();
let action: Vec<String> = req.uri().path().split('/').map(String::from).collect();
2021-01-30 08:00:00 +01:00
2021-02-25 06:29:23 +01:00
let mut sub_list = Preferences::new(req).subscriptions;
2021-01-30 08:00:00 +01:00
2021-02-10 06:56:38 +01:00
// Find each subreddit name (separated by '+') in sub parameter
for part in sub.split('+') {
// Modify sub list based on action
if action.contains(&"subscribe".to_string()) && !sub_list.contains(&part.to_owned()) {
// Add each sub name to the subscribed list
sub_list.push(part.to_owned());
// Reorder sub names alphabettically
sub_list.sort_by_key(|a| a.to_lowercase())
} else if action.contains(&"unsubscribe".to_string()) {
// Remove sub name from subscribed list
sub_list.retain(|s| s != part);
}
2021-01-30 08:00:00 +01:00
}
// Redirect back to subreddit
// check for redirect parameter if unsubscribing from outside sidebar
2021-02-20 22:59:16 +01:00
let redirect_path = param(&format!("/?{}", query), "redirect");
2021-03-09 03:49:06 +01:00
let path = if redirect_path.is_empty() {
format!("/r/{}", sub)
2021-03-09 03:49:06 +01:00
} else {
format!("/{}/", redirect_path)
};
2021-02-14 00:02:38 +01:00
let mut res = redirect(path);
2021-01-30 08:18:53 +01:00
// Delete cookie if empty, else set
if sub_list.is_empty() {
2021-03-17 23:30:33 +01:00
res.remove_cookie("subscriptions".to_string());
2021-01-30 08:18:53 +01:00
} else {
res.insert_cookie(
Cookie::build("subscriptions", sub_list.join("+"))
.path("/")
.http_only(true)
.expires(OffsetDateTime::now_utc() + Duration::weeks(52))
.finish(),
);
2021-01-30 08:18:53 +01:00
}
2021-01-30 08:00:00 +01:00
Ok(res)
2021-01-30 08:00:00 +01:00
}
2021-03-17 23:30:33 +01:00
pub async fn wiki(req: Request<Body>) -> Result<Response<Body>, String> {
2021-03-27 04:00:47 +01:00
let sub = req.param("sub").unwrap_or_else(|| "reddit.com".to_string());
let page = req.param("page").unwrap_or_else(|| "index".to_string());
2021-01-11 19:33:42 +01:00
let path: String = format!("/r/{}/wiki/{}.json?raw_json=1", sub, page);
2021-01-02 07:21:43 +01:00
2021-03-17 23:30:33 +01:00
match json(path).await {
2021-03-09 03:49:06 +01:00
Ok(response) => template(WikiTemplate {
sub,
2021-03-09 03:49:06 +01:00
wiki: rewrite_urls(response["data"]["content_html"].as_str().unwrap_or_default()),
page,
2021-02-25 06:29:23 +01:00
prefs: Preferences::new(req),
}),
2021-02-21 03:36:30 +01:00
Err(msg) => error(req, msg).await,
2020-11-18 01:03:28 +01:00
}
2020-10-25 21:25:59 +01:00
}
2021-03-22 03:28:05 +01:00
pub async fn sidebar(req: Request<Body>) -> Result<Response<Body>, String> {
2021-03-27 04:00:47 +01:00
let sub = req.param("sub").unwrap_or_else(|| "reddit.com".to_string());
2021-03-22 03:28:05 +01:00
// Build the Reddit JSON API url
let path: String = format!("/r/{}/about.json?raw_json=1", sub);
// Send a request to the url
match json(path).await {
// If success, receive JSON in response
Ok(response) => template(WikiTemplate {
sub,
wiki: rewrite_urls(&val(&response, "description_html").replace("\\", "")),
page: "Sidebar".to_string(),
prefs: Preferences::new(req),
}),
Err(msg) => error(req, msg).await,
}
}
2020-10-25 21:25:59 +01:00
// SUBREDDIT
2021-01-14 18:53:54 +01:00
async fn subreddit(sub: &str) -> Result<Subreddit, String> {
2020-11-19 03:50:59 +01:00
// Build the Reddit JSON API url
2021-01-12 01:44:31 +01:00
let path: String = format!("/r/{}/about.json?raw_json=1", sub);
2020-10-25 21:25:59 +01:00
2021-01-02 00:28:13 +01:00
// Send a request to the url
2021-03-17 23:30:33 +01:00
match json(path).await {
2021-01-02 00:28:13 +01:00
// If success, receive JSON in response
2021-01-02 07:21:43 +01:00
Ok(res) => {
// Metadata regarding the subreddit
2021-03-09 16:22:17 +01:00
let members: i64 = res["data"]["subscribers"].as_u64().unwrap_or_default() as i64;
let active: i64 = res["data"]["accounts_active"].as_u64().unwrap_or_default() as i64;
2020-11-20 05:42:18 +01:00
2021-01-02 07:21:43 +01:00
// Fetch subreddit icon either from the community_icon or icon_img value
2021-02-14 00:02:38 +01:00
let community_icon: &str = res["data"]["community_icon"].as_str().map_or("", |s| s.split('?').collect::<Vec<&str>>()[0]);
let icon = if community_icon.is_empty() { val(&res, "icon_img") } else { community_icon.to_string() };
2020-10-25 21:25:59 +01:00
2021-01-02 07:21:43 +01:00
let sub = Subreddit {
2021-03-12 05:15:26 +01:00
name: esc!(&res, "display_name"),
title: esc!(&res, "title"),
description: esc!(&res, "public_description"),
2021-02-10 06:56:38 +01:00
info: rewrite_urls(&val(&res, "description_html").replace("\\", "")),
2021-02-20 22:59:16 +01:00
icon: format_url(&icon),
2021-01-02 07:21:43 +01:00
members: format_num(members),
active: format_num(active),
wiki: res["data"]["wiki_enabled"].as_bool().unwrap_or_default(),
};
2020-12-24 05:36:49 +01:00
2021-01-02 07:21:43 +01:00
Ok(sub)
}
// If the Reddit API returns an error, exit this function
Err(msg) => return Err(msg),
}
2020-11-30 03:50:29 +01:00
}