From bd413060c6aa687b4fa0c65d48ff63424d58bdc8 Mon Sep 17 00:00:00 2001
From: Diego Magdaleno <38844659+DiegoMagdaleno@users.noreply.github.com>
Date: Wed, 24 Nov 2021 20:08:27 -0600
Subject: [PATCH] Support displaying awards (#168)
* Initial implementation of award parsing
* Posts: Implement awards as part of post
* Posts: remove parse_awards dead code
* Posts: initial implementation of displaying Awards at the post title
* Posts: Proxy static award images
* Client: i.redd.it should take path as argument not ID
* Posts: Just like Reddit make award size 16px
* Templates: limit the awards to 4 awards to increase performance
* Comments: Make awards a property of comments and display them
* Format and correct /img/:id
* Update comment.html
* [Optimization] Awards is not longer async
* [Revert] Posts can now display more than 4 awards again
* [Implementation] Awards not display on the frontpage
* [Implementation] Display count on awards
* Post: Start working on awards css
* Awards: Move the image size to css
* Awards: Start implementing tooltips
* Refactor awards code and tweak CSS indentation
* Unify Awards::new and Awards::parse
* Use native tooltips and brighten awards background
Co-authored-by: Spike <19519553+spikecodes@users.noreply.github.com>
---
CODEOWNERS | 1 -
src/main.rs | 2 +-
src/post.rs | 11 ++++++--
src/utils.rs | 60 +++++++++++++++++++++++++++++++++++++++++-
static/style.css | 25 ++++++++++++++++--
templates/comment.html | 8 ++++++
templates/post.html | 11 ++++++++
templates/utils.html | 7 +++++
8 files changed, 118 insertions(+), 7 deletions(-)
delete mode 100644 CODEOWNERS
diff --git a/CODEOWNERS b/CODEOWNERS
deleted file mode 100644
index 8d1ba42..0000000
--- a/CODEOWNERS
+++ /dev/null
@@ -1 +0,0 @@
-* @spikecodes
diff --git a/src/main.rs b/src/main.rs
index f311d3e..611c0c9 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -180,7 +180,7 @@ async fn main() {
// Proxy media through Libreddit
app.at("/vid/:id/:size").get(|r| proxy(r, "https://v.redd.it/{id}/DASH_{size}").boxed());
app.at("/hls/:id/*path").get(|r| proxy(r, "https://v.redd.it/{id}/{path}").boxed());
- app.at("/img/:id").get(|r| proxy(r, "https://i.redd.it/{id}").boxed());
+ app.at("/img/*path").get(|r| proxy(r, "https://i.redd.it/{path}").boxed());
app.at("/thumb/:point/:id").get(|r| proxy(r, "https://{point}.thumbs.redditmedia.com/{id}").boxed());
app.at("/emoji/:id/:name").get(|r| proxy(r, "https://emoji.redditmedia.com/{id}/{name}").boxed());
app.at("/preview/:loc/:id").get(|r| proxy(r, "https://{loc}view.redd.it/{id}").boxed());
diff --git a/src/post.rs b/src/post.rs
index bde5c5b..6bdf409 100644
--- a/src/post.rs
+++ b/src/post.rs
@@ -3,8 +3,9 @@ use crate::client::json;
use crate::esc;
use crate::server::RequestExt;
use crate::subreddit::{can_access_quarantine, quarantine};
-use crate::utils::{error, format_num, format_url, param, rewrite_urls, setting, template, time, val, Author, Comment, Flags, Flair, FlairPart, Media, Post, Preferences};
-
+use crate::utils::{
+ error, format_num, format_url, param, rewrite_urls, setting, template, time, val, Author, Awards, Comment, Flags, Flair, FlairPart, Media, Post, Preferences,
+};
use hyper::{Body, Request, Response};
use askama::Template;
@@ -93,6 +94,8 @@ async fn parse_post(json: &serde_json::Value) -> Post {
// Determine the type of media along with the media URL
let (post_type, media, gallery) = Media::parse(&post["data"]).await;
+ let awards: Awards = Awards::parse(&post["data"]["all_awardings"]);
+
// Build a post using data parsed from Reddit post API
Post {
id: val(post, "id"),
@@ -148,6 +151,7 @@ async fn parse_post(json: &serde_json::Value) -> Post {
created,
comments: format_num(post["data"]["num_comments"].as_i64().unwrap_or_default()),
gallery,
+ awards,
}
}
@@ -178,6 +182,8 @@ fn parse_comments(json: &serde_json::Value, post_link: &str, post_author: &str,
Vec::new()
};
+ let awards: Awards = Awards::parse(&data["all_awardings"]);
+
let parent_kind_and_id = val(&comment, "parent_id");
let parent_info = parent_kind_and_id.split('_').collect::
+
+ {% endfor %}
+ {% endif %}
{% for c in replies -%}{{ c.render().unwrap() }}{%- endfor %}
diff --git a/templates/post.html b/templates/post.html
index 60d37aa..99a4065 100644
--- a/templates/post.html
+++ b/templates/post.html
@@ -43,6 +43,17 @@
{% endif %}
•
{{ post.rel_time }}
+ {% if !post.awards.is_empty() %}
+ •
+
+ {% for award in post.awards.clone() %}
+
+
+ {{ award.count }}
+
+ {% endfor %}
+
+ {% endif %}
{{ post.title }}
diff --git a/templates/utils.html b/templates/utils.html
index 3745dea..e50b785 100644
--- a/templates/utils.html
+++ b/templates/utils.html
@@ -75,6 +75,13 @@
u/{{ post.author.name }}
•
{{ post.rel_time }}
+ {% if !post.awards.is_empty() %}
+ {% for award in post.awards.clone() %}
+
+
+
+ {% endfor %}
+ {% endif %}
{% if post.flair.flair_parts.len() > 0 %}