2020-10-26 09:25:59 +13:00
|
|
|
// CRATES
|
2021-01-17 12:13:34 +13:00
|
|
|
use crate::utils::*;
|
2021-01-30 20:00:00 +13:00
|
|
|
use actix_web::{cookie::Cookie, HttpRequest, HttpResponse, Result};
|
2020-10-26 09:25:59 +13:00
|
|
|
use askama::Template;
|
2021-01-30 20:00:00 +13:00
|
|
|
use time::{Duration, OffsetDateTime};
|
2020-11-18 08:37:40 +13:00
|
|
|
|
2020-10-26 09:25:59 +13:00
|
|
|
// STRUCTS
|
|
|
|
#[derive(Template)]
|
|
|
|
#[template(path = "subreddit.html", escape = "none")]
|
|
|
|
struct SubredditTemplate {
|
|
|
|
sub: Subreddit,
|
|
|
|
posts: Vec<Post>,
|
2020-12-30 14:11:47 +13:00
|
|
|
sort: (String, String),
|
2020-11-30 15:50:29 +13:00
|
|
|
ends: (String, String),
|
2021-01-09 14:35:04 +13:00
|
|
|
prefs: Preferences,
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
#[derive(Template)]
|
|
|
|
#[template(path = "wiki.html", escape = "none")]
|
|
|
|
struct WikiTemplate {
|
|
|
|
sub: String,
|
|
|
|
wiki: String,
|
2021-01-03 07:58:21 +13:00
|
|
|
page: String,
|
2021-01-11 10:08:36 +13:00
|
|
|
prefs: Preferences,
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
|
2020-11-20 10:49:32 +13:00
|
|
|
// SERVICES
|
2021-01-03 17:50:23 +13:00
|
|
|
pub async fn page(req: HttpRequest) -> HttpResponse {
|
2021-01-31 17:18:57 +13:00
|
|
|
let subscribed = cookie(&req, "subscriptions");
|
|
|
|
let front_page = cookie(&req, "front_page");
|
|
|
|
let sort = req.match_info().get("sort").unwrap_or("hot").to_string();
|
|
|
|
|
2021-01-31 15:10:38 +13:00
|
|
|
let sub = req
|
2021-01-09 17:55:40 +13:00
|
|
|
.match_info()
|
|
|
|
.get("sub")
|
2021-01-31 17:18:57 +13:00
|
|
|
.map(String::from)
|
|
|
|
.unwrap_or(if front_page == "default" || front_page.is_empty() {
|
|
|
|
if subscribed.is_empty() {
|
|
|
|
"popular".to_string()
|
|
|
|
} else {
|
|
|
|
subscribed.to_owned()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
front_page.to_owned()
|
|
|
|
});
|
|
|
|
|
2021-01-31 18:46:35 +13:00
|
|
|
let path = format!("/r/{}/{}.json?{}", sub, sort, req.query_string());
|
2021-01-01 12:54:13 +13:00
|
|
|
|
2021-01-02 12:28:13 +13:00
|
|
|
match fetch_posts(&path, String::new()).await {
|
2021-01-08 05:38:05 +13:00
|
|
|
Ok((posts, after)) => {
|
2021-01-16 12:05:55 +13:00
|
|
|
// If you can get subreddit posts, also request subreddit metadata
|
2021-01-31 17:18:57 +13:00
|
|
|
let sub = if !sub.contains('+') && sub != subscribed && sub != "popular" && sub != "all" {
|
|
|
|
// Regular subreddit
|
2021-01-31 15:10:38 +13:00
|
|
|
subreddit(&sub).await.unwrap_or_default()
|
2021-01-31 17:18:57 +13:00
|
|
|
} else if sub == subscribed {
|
2021-01-31 17:24:09 +13:00
|
|
|
// Subscription feed
|
2021-01-31 17:18:57 +13:00
|
|
|
if req.path().starts_with("/r/") {
|
|
|
|
subreddit(&sub).await.unwrap_or_default()
|
|
|
|
} else {
|
|
|
|
Subreddit::default()
|
|
|
|
}
|
2021-01-31 17:24:09 +13:00
|
|
|
} else if sub.contains('+') {
|
|
|
|
// Multireddit
|
|
|
|
Subreddit {
|
|
|
|
name: sub,
|
|
|
|
..Subreddit::default()
|
|
|
|
}
|
2021-01-16 12:05:55 +13:00
|
|
|
} else {
|
|
|
|
Subreddit::default()
|
|
|
|
};
|
|
|
|
|
2021-01-02 12:28:13 +13:00
|
|
|
let s = SubredditTemplate {
|
2021-01-08 05:38:05 +13:00
|
|
|
sub,
|
|
|
|
posts,
|
2021-01-02 12:28:13 +13:00
|
|
|
sort: (sort, param(&path, "t")),
|
2021-01-07 18:27:24 +13:00
|
|
|
ends: (param(&path, "after"), after),
|
2021-01-09 14:35:04 +13:00
|
|
|
prefs: prefs(req),
|
2021-01-02 12:28:13 +13:00
|
|
|
}
|
|
|
|
.render()
|
|
|
|
.unwrap();
|
2021-01-03 17:50:23 +13:00
|
|
|
HttpResponse::Ok().content_type("text/html").body(s)
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
2021-01-14 16:53:52 +13:00
|
|
|
Err(msg) => error(msg).await,
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-30 20:18:53 +13:00
|
|
|
// Sub or unsub by setting subscription cookie using response "Set-Cookie" header
|
2021-01-30 21:33:38 +13:00
|
|
|
pub async fn subscriptions(req: HttpRequest) -> HttpResponse {
|
2021-01-30 20:00:00 +13:00
|
|
|
let mut res = HttpResponse::Found();
|
|
|
|
|
2021-01-31 15:10:38 +13:00
|
|
|
let sub = req.match_info().get("sub").unwrap_or_default().to_string();
|
|
|
|
let action = req.match_info().get("action").unwrap_or_default().to_string();
|
2021-01-30 20:18:53 +13:00
|
|
|
let mut sub_list = prefs(req.to_owned()).subs;
|
2021-01-30 20:00:00 +13:00
|
|
|
|
2021-01-30 20:18:53 +13:00
|
|
|
// Modify sub list based on action
|
2021-01-31 15:10:38 +13:00
|
|
|
if action == "subscribe" && !sub_list.contains(&sub) {
|
|
|
|
sub_list.push(sub.to_owned());
|
2021-02-08 14:56:06 +13:00
|
|
|
sub_list.sort_by_key(|a| a.to_lowercase());
|
2021-01-31 14:45:19 +13:00
|
|
|
} else if action == "unsubscribe" {
|
2021-01-31 15:10:38 +13:00
|
|
|
sub_list.retain(|s| s != &sub);
|
2021-01-30 20:00:00 +13:00
|
|
|
}
|
|
|
|
|
2021-01-30 20:18:53 +13:00
|
|
|
// Delete cookie if empty, else set
|
|
|
|
if sub_list.is_empty() {
|
2021-01-31 14:17:43 +13:00
|
|
|
res.del_cookie(&Cookie::build("subscriptions", "").path("/").finish());
|
2021-01-30 20:18:53 +13:00
|
|
|
} else {
|
2021-01-31 17:18:57 +13:00
|
|
|
res.cookie(
|
|
|
|
Cookie::build("subscriptions", sub_list.join("+"))
|
|
|
|
.path("/")
|
|
|
|
.http_only(true)
|
|
|
|
.expires(OffsetDateTime::now_utc() + Duration::weeks(52))
|
|
|
|
.finish(),
|
|
|
|
);
|
2021-01-30 20:18:53 +13:00
|
|
|
}
|
2021-01-30 20:00:00 +13:00
|
|
|
|
2021-01-30 20:18:53 +13:00
|
|
|
// Redirect back to subreddit
|
2021-01-31 00:27:49 +13:00
|
|
|
// check for redirect parameter if unsubscribing from outside sidebar
|
2021-01-31 14:38:47 +13:00
|
|
|
let redirect_path = param(&req.uri().to_string(), "redirect");
|
2021-01-31 14:50:26 +13:00
|
|
|
let path = if !redirect_path.is_empty() && redirect_path.starts_with('/') {
|
|
|
|
redirect_path
|
2021-01-31 00:27:49 +13:00
|
|
|
} else {
|
2021-01-31 14:50:26 +13:00
|
|
|
format!("/r/{}", sub)
|
|
|
|
};
|
2021-01-31 00:27:49 +13:00
|
|
|
|
2021-01-30 20:00:00 +13:00
|
|
|
res
|
|
|
|
.content_type("text/html")
|
2021-01-31 14:50:26 +13:00
|
|
|
.set_header("Location", path.to_owned())
|
|
|
|
.body(format!("Redirecting to <a href=\"{0}\">{0}</a>...", path))
|
2021-01-30 20:00:00 +13:00
|
|
|
}
|
|
|
|
|
2021-01-03 17:50:23 +13:00
|
|
|
pub async fn wiki(req: HttpRequest) -> HttpResponse {
|
2021-01-14 16:53:52 +13:00
|
|
|
let sub = req.match_info().get("sub").unwrap_or("reddit.com").to_string();
|
|
|
|
let page = req.match_info().get("page").unwrap_or("index").to_string();
|
2021-01-12 07:33:42 +13:00
|
|
|
let path: String = format!("/r/{}/wiki/{}.json?raw_json=1", sub, page);
|
2021-01-02 19:21:43 +13:00
|
|
|
|
2021-01-23 22:48:33 +13:00
|
|
|
match request(path).await {
|
2021-01-02 19:21:43 +13:00
|
|
|
Ok(res) => {
|
|
|
|
let s = WikiTemplate {
|
2021-01-14 16:53:52 +13:00
|
|
|
sub,
|
2021-01-04 18:31:21 +13:00
|
|
|
wiki: rewrite_url(res["data"]["content_html"].as_str().unwrap_or_default()),
|
2021-01-14 16:53:52 +13:00
|
|
|
page,
|
2021-01-11 10:08:36 +13:00
|
|
|
prefs: prefs(req),
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
|
|
|
.render()
|
|
|
|
.unwrap();
|
2021-01-03 17:50:23 +13:00
|
|
|
HttpResponse::Ok().content_type("text/html").body(s)
|
2021-01-02 19:21:43 +13:00
|
|
|
}
|
2021-01-14 16:53:52 +13:00
|
|
|
Err(msg) => error(msg).await,
|
2020-11-18 13:03:28 +13:00
|
|
|
}
|
2020-10-26 09:25:59 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
// SUBREDDIT
|
2021-01-15 06:53:54 +13:00
|
|
|
async fn subreddit(sub: &str) -> Result<Subreddit, String> {
|
2020-11-19 15:50:59 +13:00
|
|
|
// Build the Reddit JSON API url
|
2021-01-12 13:44:31 +13:00
|
|
|
let path: String = format!("/r/{}/about.json?raw_json=1", sub);
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2021-01-02 12:28:13 +13:00
|
|
|
// Send a request to the url
|
2021-01-23 22:48:33 +13:00
|
|
|
match request(path).await {
|
2021-01-02 12:28:13 +13:00
|
|
|
// If success, receive JSON in response
|
2021-01-02 19:21:43 +13:00
|
|
|
Ok(res) => {
|
|
|
|
// Metadata regarding the subreddit
|
|
|
|
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 17:42:18 +13:00
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
// Fetch subreddit icon either from the community_icon or icon_img value
|
2021-01-22 18:25:51 +13:00
|
|
|
let community_icon: &str = res["data"]["community_icon"].as_str().map_or("", |s| s.split('?').collect::<Vec<&str>>()[0]);
|
2021-01-02 19:21:43 +13:00
|
|
|
let icon = if community_icon.is_empty() { val(&res, "icon_img") } else { community_icon.to_string() };
|
2020-10-26 09:25:59 +13:00
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
let sub = Subreddit {
|
|
|
|
name: val(&res, "display_name"),
|
|
|
|
title: val(&res, "title"),
|
|
|
|
description: val(&res, "public_description"),
|
2021-01-03 08:09:26 +13:00
|
|
|
info: rewrite_url(&val(&res, "description_html").replace("\\", "")),
|
2021-01-12 14:47:14 +13:00
|
|
|
icon: format_url(icon.as_str()),
|
2021-01-02 19:21:43 +13:00
|
|
|
members: format_num(members),
|
|
|
|
active: format_num(active),
|
|
|
|
wiki: res["data"]["wiki_enabled"].as_bool().unwrap_or_default(),
|
|
|
|
};
|
2020-12-24 17:36:49 +13:00
|
|
|
|
2021-01-02 19:21:43 +13:00
|
|
|
Ok(sub)
|
|
|
|
}
|
|
|
|
// If the Reddit API returns an error, exit this function
|
|
|
|
Err(msg) => return Err(msg),
|
|
|
|
}
|
2020-11-30 15:50:29 +13:00
|
|
|
}
|