libreddit/src/utils.rs

462 lines
13 KiB
Rust
Raw Normal View History

2020-11-21 07:05:27 +01:00
//
// CRATES
//
2021-01-09 02:50:03 +01:00
use actix_web::{cookie::Cookie, HttpRequest, HttpResponse, Result};
2021-01-01 06:03:44 +01:00
use askama::Template;
2021-01-03 05:50:23 +01:00
use base64::encode;
2021-01-02 19:58:21 +01:00
use regex::Regex;
2021-01-12 22:43:03 +01:00
use serde_json::{from_str, Value};
2021-01-09 02:35:04 +01:00
use std::collections::HashMap;
2021-01-13 21:52:00 +01:00
use time::{Duration, OffsetDateTime};
2021-01-01 00:54:13 +01:00
use url::Url;
2020-11-21 07:05:27 +01:00
2020-11-20 05:42:18 +01:00
//
// STRUCTS
//
2021-01-17 00:02:24 +01:00
2021-01-12 22:43:03 +01:00
// Post flair with content, background color and foreground color
2021-01-13 21:52:00 +01:00
pub struct Flair {
pub flair_parts: Vec<FlairPart>,
2021-01-12 22:43:03 +01:00
pub background_color: String,
pub foreground_color: String,
}
2021-01-15 00:13:52 +01:00
// Part of flair, either emoji or text
2021-01-13 21:52:00 +01:00
pub struct FlairPart {
pub flair_part_type: String,
2021-01-12 22:43:03 +01:00
pub value: String,
}
2021-01-17 00:02:24 +01:00
pub struct Author {
pub name: String,
pub flair: Flair,
pub distinguished: String,
}
2020-12-30 04:01:02 +01:00
// Post flags with nsfw and stickied
pub struct Flags {
pub nsfw: bool,
2021-01-01 00:54:13 +01:00
pub stickied: bool,
2020-12-30 04:01:02 +01:00
}
2020-11-17 20:37:40 +01:00
// Post containing content, metadata and media
pub struct Post {
pub id: String,
2020-11-17 20:37:40 +01:00
pub title: String,
pub community: String,
pub body: String,
2021-01-17 00:02:24 +01:00
pub author: Author,
pub permalink: String,
2020-11-17 20:37:40 +01:00
pub score: String,
pub upvote_ratio: i64,
pub post_type: String,
2020-12-23 03:29:43 +01:00
pub flair: Flair,
2020-12-30 04:01:02 +01:00
pub flags: Flags,
2021-01-06 03:04:49 +01:00
pub thumbnail: String,
2020-11-17 20:37:40 +01:00
pub media: String,
2021-01-11 23:08:12 +01:00
pub domain: String,
pub rel_time: String,
pub created: String,
2020-11-17 20:37:40 +01:00
}
// Comment with content, post, score and data/time that it was posted
pub struct Comment {
pub id: String,
2020-11-17 20:37:40 +01:00
pub body: String,
2021-01-17 00:02:24 +01:00
pub author: Author,
2020-11-17 20:37:40 +01:00
pub score: String,
pub rel_time: String,
pub created: String,
2020-12-20 04:54:46 +01:00
pub replies: Vec<Comment>,
2020-11-17 20:37:40 +01:00
}
2021-01-09 05:55:40 +01:00
#[derive(Default)]
2020-11-17 20:37:40 +01:00
// User struct containing metadata about user
pub struct User {
pub name: String,
pub title: String,
2020-11-17 20:37:40 +01:00
pub icon: String,
pub karma: i64,
2020-12-24 07:16:04 +01:00
pub created: String,
2020-11-17 20:37:40 +01:00
pub banner: String,
2020-11-30 03:50:29 +01:00
pub description: String,
2020-11-17 20:37:40 +01:00
}
2020-12-29 03:42:46 +01:00
#[derive(Default)]
2020-11-17 20:37:40 +01:00
// Subreddit struct containing metadata about community
pub struct Subreddit {
pub name: String,
pub title: String,
pub description: String,
2020-12-29 03:42:46 +01:00
pub info: String,
2020-11-17 20:37:40 +01:00
pub icon: String,
2020-11-23 01:43:23 +01:00
pub members: String,
2020-11-30 03:50:29 +01:00
pub active: String,
2021-01-02 07:21:43 +01:00
pub wiki: bool,
2020-11-17 20:37:40 +01:00
}
2020-11-19 22:49:32 +01:00
// Parser for query params, used in sorting (eg. /r/rust/?sort=hot)
#[derive(serde::Deserialize)]
pub struct Params {
2020-12-30 02:11:47 +01:00
pub t: Option<String>,
2021-01-01 00:54:13 +01:00
pub q: Option<String>,
2020-11-19 22:49:32 +01:00
pub sort: Option<String>,
pub after: Option<String>,
2020-11-30 03:50:29 +01:00
pub before: Option<String>,
2020-11-19 22:49:32 +01:00
}
2020-11-20 05:42:18 +01:00
// Error template
2021-01-01 06:03:44 +01:00
#[derive(Template)]
2020-11-20 05:42:18 +01:00
#[template(path = "error.html", escape = "none")]
pub struct ErrorTemplate {
2021-01-14 18:53:54 +01:00
pub msg: String,
2021-01-11 03:15:34 +01:00
pub prefs: Preferences,
2020-11-20 05:42:18 +01:00
}
2021-01-11 03:15:34 +01:00
#[derive(Default)]
2021-01-09 02:35:04 +01:00
pub struct Preferences {
2021-01-11 03:15:34 +01:00
pub theme: String,
2021-01-09 05:55:40 +01:00
pub front_page: String,
2021-01-09 02:35:04 +01:00
pub layout: String,
2021-01-10 22:08:36 +01:00
pub wide: String,
2021-01-09 02:35:04 +01:00
pub hide_nsfw: String,
2021-01-09 02:50:03 +01:00
pub comment_sort: String,
2021-01-09 02:35:04 +01:00
}
2020-12-01 06:10:08 +01:00
//
2020-12-07 19:53:22 +01:00
// FORMATTING
2020-12-01 06:10:08 +01:00
//
2021-01-09 02:35:04 +01:00
// Build preferences from cookies
2021-01-09 02:50:03 +01:00
pub fn prefs(req: HttpRequest) -> Preferences {
2021-01-09 02:35:04 +01:00
Preferences {
2021-01-11 03:15:34 +01:00
theme: cookie(&req, "theme"),
2021-01-09 05:55:40 +01:00
front_page: cookie(&req, "front_page"),
2021-01-09 02:50:03 +01:00
layout: cookie(&req, "layout"),
2021-01-10 22:08:36 +01:00
wide: cookie(&req, "wide"),
2021-01-09 02:50:03 +01:00
hide_nsfw: cookie(&req, "hide_nsfw"),
comment_sort: cookie(&req, "comment_sort"),
2021-01-09 02:35:04 +01:00
}
}
2021-01-01 00:54:13 +01:00
// Grab a query param from a url
2021-01-01 21:33:57 +01:00
pub fn param(path: &str, value: &str) -> String {
2021-01-14 23:56:28 +01:00
match Url::parse(format!("https://libredd.it/{}", path).as_str()) {
Ok(url) => url.query_pairs().into_owned().collect::<HashMap<_, _>>().get(value).unwrap_or(&String::new()).to_owned(),
_ => String::new(),
}
2021-01-01 00:54:13 +01:00
}
2021-01-07 06:27:24 +01:00
// Parse Cookie value from request
2021-01-09 02:50:03 +01:00
pub fn cookie(req: &HttpRequest, name: &str) -> String {
actix_web::HttpMessage::cookie(req, name).unwrap_or_else(|| Cookie::new(name, "")).value().to_string()
2021-01-06 03:04:49 +01:00
}
2021-01-03 05:50:23 +01:00
2020-12-26 03:06:33 +01:00
// Direct urls to proxy if proxy is enabled
2021-01-12 02:47:14 +01:00
pub fn format_url(url: &str) -> String {
2021-01-09 02:35:04 +01:00
if url.is_empty() || url == "self" || url == "default" || url == "nsfw" || url == "spoiler" {
2021-01-05 04:26:41 +01:00
String::new()
} else {
format!("/proxy/{}", encode(url).as_str())
}
2020-12-01 06:10:08 +01:00
}
2021-01-02 19:58:21 +01:00
// Rewrite Reddit links to Libreddit in body of text
2021-01-02 20:09:26 +01:00
pub fn rewrite_url(text: &str) -> String {
2021-01-02 19:58:21 +01:00
let re = Regex::new(r#"href="(https://|http://|)(www.|)(reddit).(com)/"#).unwrap();
re.replace_all(text, r#"href="/"#).to_string()
}
2020-12-26 03:06:33 +01:00
// Append `m` and `k` for millions and thousands respectively
2020-12-07 19:53:22 +01:00
pub fn format_num(num: i64) -> String {
2021-01-09 02:35:04 +01:00
if num > 1_000_000 {
format!("{}m", num / 1_000_000)
2020-12-07 20:36:05 +01:00
} else if num > 1000 {
2021-01-09 02:35:04 +01:00
format!("{}k", num / 1_000)
2020-12-07 20:36:05 +01:00
} else {
num.to_string()
}
2020-12-07 19:53:22 +01:00
}
2021-01-14 18:53:54 +01:00
pub async fn media(data: &Value) -> (String, String) {
2021-01-06 03:04:49 +01:00
let post_type: &str;
2021-01-15 00:13:52 +01:00
// If post is a video, return the video
let url = if data["preview"]["reddit_video_preview"]["fallback_url"].is_string() {
2021-01-06 03:04:49 +01:00
post_type = "video";
2021-01-12 02:47:14 +01:00
format_url(data["preview"]["reddit_video_preview"]["fallback_url"].as_str().unwrap_or_default())
2021-01-15 00:13:52 +01:00
} else if data["secure_media"]["reddit_video"]["fallback_url"].is_string() {
2021-01-06 03:04:49 +01:00
post_type = "video";
2021-01-12 02:47:14 +01:00
format_url(data["secure_media"]["reddit_video"]["fallback_url"].as_str().unwrap_or_default())
2021-01-15 00:13:52 +01:00
// Handle images, whether GIFs or pics
2021-01-06 03:04:49 +01:00
} else if data["post_hint"].as_str().unwrap_or("") == "image" {
2021-01-12 02:47:14 +01:00
let preview = data["preview"]["images"][0].clone();
match preview["variants"]["mp4"].as_object() {
2021-01-15 00:13:52 +01:00
// Return the mp4 if the media is a gif
2021-01-13 04:52:02 +01:00
Some(gif) => {
post_type = "gif";
format_url(gif["source"]["url"].as_str().unwrap_or_default())
2021-01-13 21:52:00 +01:00
}
2021-01-15 00:13:52 +01:00
// Return the picture if the media is an image
2021-01-13 04:52:02 +01:00
None => {
post_type = "image";
format_url(preview["source"]["url"].as_str().unwrap_or_default())
2021-01-13 21:52:00 +01:00
}
2021-01-12 02:47:14 +01:00
}
2021-01-12 01:35:50 +01:00
} else if data["is_self"].as_bool().unwrap_or_default() {
2021-01-11 23:08:12 +01:00
post_type = "self";
data["permalink"].as_str().unwrap_or_default().to_string()
2021-01-06 03:04:49 +01:00
} else {
post_type = "link";
data["url"].as_str().unwrap_or_default().to_string()
};
2021-01-12 03:05:13 +01:00
(post_type.to_string(), url)
2021-01-06 03:04:49 +01:00
}
2021-01-13 08:23:48 +01:00
pub fn parse_rich_flair(flair_type: String, rich_flair: Option<&Vec<Value>>, text_flair: Option<&str>) -> Vec<FlairPart> {
2021-01-15 00:13:52 +01:00
// Parse type of flair
2021-01-14 03:19:40 +01:00
match flair_type.as_str() {
2021-01-15 00:13:52 +01:00
// If flair contains emojis and text
"richtext" => match rich_flair {
Some(rich) => rich
.iter()
2021-01-15 00:13:52 +01:00
// For each part of the flair, extract text and emojis
.map(|part| {
let value = |name: &str| part[name].as_str().unwrap_or_default();
FlairPart {
flair_part_type: value("e").to_string(),
value: match value("e") {
"text" => value("t").to_string(),
"emoji" => format_url(value("u")),
_ => String::new(),
},
2021-01-14 03:19:40 +01:00
}
})
.collect::<Vec<FlairPart>>(),
None => Vec::new(),
2021-01-14 03:19:40 +01:00
},
2021-01-15 00:13:52 +01:00
// If flair contains only text
"text" => match text_flair {
2021-01-14 03:19:40 +01:00
Some(text) => vec![FlairPart {
flair_part_type: "text".to_string(),
value: text.to_string(),
}],
None => Vec::new(),
2021-01-14 03:19:40 +01:00
},
_ => Vec::new(),
2021-01-12 22:43:03 +01:00
}
}
pub fn time(created: f64) -> (String, String) {
let time = OffsetDateTime::from_unix_timestamp(created.round() as i64);
2021-01-12 19:59:32 +01:00
let time_delta = OffsetDateTime::now_utc() - time;
2021-01-15 00:13:52 +01:00
// If the time difference is more than a month, show full date
let rel_time = if time_delta > Duration::days(30) {
2021-01-15 00:13:52 +01:00
time.format("%b %d '%y")
// Otherwise, show relative date/time
2021-01-14 01:31:24 +01:00
} else if time_delta.whole_days() > 0 {
format!("{}d ago", time_delta.whole_days())
2021-01-12 19:59:32 +01:00
} else if time_delta.whole_hours() > 0 {
format!("{}h ago", time_delta.whole_hours())
} else {
format!("{}m ago", time_delta.whole_minutes())
};
(rel_time, time.format("%b %d %Y, %H:%M UTC"))
2021-01-12 19:59:32 +01:00
}
2020-11-20 05:42:18 +01:00
//
// JSON PARSING
//
2020-11-17 20:37:40 +01:00
// val() function used to parse JSON from Reddit APIs
2021-01-14 18:53:54 +01:00
pub fn val(j: &Value, k: &str) -> String {
2021-01-02 07:21:43 +01:00
String::from(j["data"][k].as_str().unwrap_or_default())
2020-11-17 20:37:40 +01:00
}
2021-01-07 06:27:24 +01:00
// Fetch posts of a user or subreddit and return a vector of posts and the "after" value
2021-01-14 18:53:54 +01:00
pub async fn fetch_posts(path: &str, fallback_title: String) -> Result<(Vec<Post>, String), String> {
2021-01-02 00:28:13 +01:00
let res;
let post_list;
// Send a request to the url
match request(&path).await {
// If success, receive JSON in response
2021-01-07 17:38:05 +01:00
Ok(response) => {
res = response;
}
2021-01-02 00:28:13 +01:00
// If the Reddit API returns an error, exit this function
2021-01-02 07:21:43 +01:00
Err(msg) => return Err(msg),
2020-11-21 07:05:27 +01:00
}
// Fetch the list of posts from the JSON response
2021-01-02 00:28:13 +01:00
match res["data"]["children"].as_array() {
2021-01-02 07:21:43 +01:00
Some(list) => post_list = list,
2021-01-14 18:53:54 +01:00
None => return Err("No posts found".to_string()),
2021-01-02 00:28:13 +01:00
}
2020-11-21 07:05:27 +01:00
let mut posts: Vec<Post> = Vec::new();
2021-01-05 04:26:41 +01:00
// For each post from posts list
2020-12-23 03:29:43 +01:00
for post in post_list {
let (rel_time, created) = time(post["data"]["created_utc"].as_f64().unwrap_or_default());
2021-01-02 00:28:13 +01:00
let score = post["data"]["score"].as_i64().unwrap_or_default();
let ratio: f64 = post["data"]["upvote_ratio"].as_f64().unwrap_or(1.0) * 100.0;
2021-01-01 21:33:57 +01:00
let title = val(post, "title");
2020-11-21 07:05:27 +01:00
2021-01-06 03:04:49 +01:00
// Determine the type of media along with the media URL
2021-01-07 06:27:24 +01:00
let (post_type, media) = media(&post["data"]).await;
2021-01-06 03:04:49 +01:00
2020-11-21 07:05:27 +01:00
posts.push(Post {
id: val(post, "id"),
2020-11-21 07:05:27 +01:00
title: if title.is_empty() { fallback_title.to_owned() } else { title },
2021-01-01 21:33:57 +01:00
community: val(post, "subreddit"),
2021-01-02 20:09:26 +01:00
body: rewrite_url(&val(post, "body_html")),
2021-01-17 00:02:24 +01:00
author: Author {
name: val(post, "author"),
flair: Flair {
flair_parts: parse_rich_flair(
val(post, "author_flair_type"),
post["data"]["author_flair_richtext"].as_array(),
post["data"]["author_flair_text"].as_str(),
),
background_color: val(post, "author_flair_background_color"),
foreground_color: val(post, "author_flair_text_color"),
},
distinguished: val(post, "distinguished"),
2021-01-12 22:43:03 +01:00
},
2020-12-07 19:53:22 +01:00
score: format_num(score),
upvote_ratio: ratio as i64,
2021-01-07 06:27:24 +01:00
post_type,
2021-01-12 02:47:14 +01:00
thumbnail: format_url(val(post, "thumbnail").as_str()),
2021-01-07 06:27:24 +01:00
media,
2021-01-11 23:08:12 +01:00
domain: val(post, "domain"),
2021-01-13 21:52:00 +01:00
flair: Flair {
flair_parts: parse_rich_flair(
val(post, "link_flair_type"),
post["data"]["link_flair_richtext"].as_array(),
post["data"]["link_flair_text"].as_str(),
),
2021-01-12 22:43:03 +01:00
background_color: val(post, "link_flair_background_color"),
foreground_color: if val(post, "link_flair_text_color") == "dark" {
2020-11-21 07:05:27 +01:00
"black".to_string()
} else {
"white".to_string()
},
2021-01-12 22:43:03 +01:00
},
2020-12-30 04:01:02 +01:00
flags: Flags {
2021-01-05 04:26:41 +01:00
nsfw: post["data"]["over_18"].as_bool().unwrap_or_default(),
stickied: post["data"]["stickied"].as_bool().unwrap_or_default(),
2020-12-30 04:01:02 +01:00
},
permalink: val(post, "permalink"),
rel_time,
2021-01-16 20:50:12 +01:00
created,
2020-11-21 07:05:27 +01:00
});
}
2021-01-05 04:26:41 +01:00
Ok((posts, res["data"]["after"].as_str().unwrap_or_default().to_string()))
2020-11-21 07:05:27 +01:00
}
2020-11-20 05:42:18 +01:00
//
// NETWORKING
//
2021-01-14 18:53:54 +01:00
pub async fn error(msg: String) -> HttpResponse {
2021-01-11 03:15:34 +01:00
let body = ErrorTemplate {
2021-01-14 18:53:54 +01:00
msg,
2021-01-11 03:15:34 +01:00
prefs: Preferences::default(),
}
.render()
.unwrap_or_default();
2021-01-03 05:50:23 +01:00
HttpResponse::NotFound().content_type("text/html").body(body)
2021-01-01 06:03:44 +01:00
}
2020-11-19 03:50:59 +01:00
// Make a request to a Reddit API and parse the JSON response
2021-01-14 18:53:54 +01:00
pub async fn request(path: &str) -> Result<Value, String> {
2021-01-11 19:33:48 +01:00
let url = format!("https://www.reddit.com{}", path);
2021-01-14 18:53:54 +01:00
// Send request using awc
2021-01-16 06:26:51 +01:00
// async fn send(url: &str) -> Result<String, (bool, String)> {
// let client = actix_web::client::Client::default();
// let response = client.get(url).header("User-Agent", format!("web:libreddit:{}", env!("CARGO_PKG_VERSION"))).send().await;
// match response {
// Ok(mut payload) => {
// // Get first number of response HTTP status code
// match payload.status().to_string().chars().next() {
// // If success
// Some('2') => Ok(String::from_utf8(payload.body().limit(20_000_000).await.unwrap_or_default().to_vec()).unwrap_or_default()),
// // If redirection
// Some('3') => match payload.headers().get("location") {
// Some(location) => Err((true, location.to_str().unwrap_or_default().to_string())),
// None => Err((false, "Page not found".to_string())),
// },
// // Otherwise
// _ => Err((false, "Page not found".to_string())),
2021-01-16 05:29:34 +01:00
// }
// }
2021-01-16 06:26:51 +01:00
// Err(e) => { dbg!(e); Err((false, "Couldn't send request to Reddit, this instance may be being rate-limited. Try another.".to_string())) },
2021-01-16 05:29:34 +01:00
// }
2021-01-16 06:26:51 +01:00
// }
// // Print error if debugging then return error based on error message
// fn err(url: String, msg: String) -> Result<Value, String> {
// // #[cfg(debug_assertions)]
// dbg!(format!("{} - {}", url, msg));
// Err(msg)
// };
// // Parse JSON from body. If parsing fails, return error
// fn json(url: String, body: String) -> Result<Value, String> {
// match from_str(body.as_str()) {
// Ok(json) => Ok(json),
// Err(_) => err(url, "Failed to parse page JSON data".to_string()),
2021-01-16 05:29:34 +01:00
// }
// }
2021-01-16 06:26:51 +01:00
// // Make request to Reddit using send function
// match send(&url).await {
// // If success, parse and return body
// Ok(body) => json(url, body),
// // Follow any redirects
// Err((true, location)) => match send(location.as_str()).await {
// // If success, parse and return body
// Ok(body) => json(url, body),
// // Follow any redirects again
// Err((true, location)) => err(url, location),
// // Return errors if request fails
// Err((_, msg)) => err(url, msg),
// },
// // Return errors if request fails
// Err((_, msg)) => err(url, msg),
// }
// Send request using ureq
match ureq::get(&url).call() {
// If response is success
Ok(response) => {
// Parse the response from Reddit as JSON
match from_str(&response.into_string().unwrap()) {
Ok(json) => Ok(json),
Err(_) => {
#[cfg(debug_assertions)]
dbg!(format!("{} - Failed to parse page JSON data", url));
Err("Failed to parse page JSON data".to_string())
}
}
}
// If response is error
Err(ureq::Error::Status(_, _)) => {
#[cfg(debug_assertions)]
dbg!(format!("{} - Page not found", url));
Err("Page not found".to_string())
}
// If failed to send request
Err(e) => {
dbg!(format!("{} - {}", url, e));
Err("Couldn't send request to Reddit, this instance may be being rate-limited. Try another.".to_string())
}
}
2020-11-19 03:50:59 +01:00
}