diff --git a/src/main.rs b/src/main.rs index c9f76d2..c60170b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -60,6 +60,7 @@ async fn main() -> std::io::Result<()> { // POST SERVICES .route("/{id:.{5,6}}/", web::get().to(post::short)) .route("/r/{sub}/comments/{id}/{title}/", web::get().to(post::page)) + .route("/r/{sub}/comments/{id}/{title}/{comment_id}/", web::get().to(post::comment)) }) .bind(address.clone()) .expect(format!("Cannot bind to the address: {}", address).as_str()) diff --git a/src/popular.rs b/src/popular.rs index 74d28af..76bbd86 100644 --- a/src/popular.rs +++ b/src/popular.rs @@ -19,10 +19,10 @@ async fn render(sub_name: String, sort: Option, ends: (Option, O // Build the Reddit JSON API url let url = match ends.0 { - Some(val) => format!("https://www.reddit.com/r/{}/{}.json?before={}&count=25", sub_name, sorting, val), + Some(val) => format!("r/{}/{}.json?before={}&count=25", sub_name, sorting, val), None => match ends.1 { - Some(val) => format!("https://www.reddit.com/r/{}/{}.json?after={}&count=25", sub_name, sorting, val), - None => format!("https://www.reddit.com/r/{}/{}.json", sub_name, sorting), + Some(val) => format!("r/{}/{}.json?after={}&count=25", sub_name, sorting, val), + None => format!("r/{}/{}.json", sub_name, sorting), }, }; diff --git a/src/post.rs b/src/post.rs index 92bd862..4746ff7 100644 --- a/src/post.rs +++ b/src/post.rs @@ -17,7 +17,7 @@ struct PostTemplate { sort: String, } -async fn render(id: String, sort: Option) -> Result { +async fn render(id: String, sort: Option, comment_id: Option) -> Result { // Log the post ID being fetched dbg!(&id); @@ -25,7 +25,10 @@ async fn render(id: String, sort: Option) -> Result { let sorting: String = sort.unwrap_or("confidence".to_string()); // Build the Reddit JSON API url - let url: String = format!("https://reddit.com/{}.json?sort={}", id, sorting); + let url: String = match comment_id { + None => format!("{}.json?sort={}", id, sorting), + Some(val) => format!("{}.json?sort={}&comment={}", id, sorting, val) + }; // Send a request to the url, receive JSON in response let req = request(url).await; @@ -60,11 +63,15 @@ async fn render(id: String, sort: Option) -> Result { // SERVICES pub async fn short(web::Path(id): web::Path, params: web::Query) -> Result { - render(id, params.sort.clone()).await + render(id, params.sort.clone(), None).await +} + +pub async fn comment(web::Path((_sub, id, _title, comment_id)): web::Path<(String, String, String, String)>, params: web::Query) -> Result { + render(id, params.sort.clone(), Some(comment_id)).await } pub async fn page(web::Path((_sub, id)): web::Path<(String, String)>, params: web::Query) -> Result { - render(id, params.sort.clone()).await + render(id, params.sort.clone(), None).await } // UTILITIES diff --git a/src/subreddit.rs b/src/subreddit.rs index 013379a..16a58b2 100644 --- a/src/subreddit.rs +++ b/src/subreddit.rs @@ -26,10 +26,10 @@ pub async fn render(sub_name: String, sort: Option, ends: (Option format!("https://www.reddit.com/r/{}/{}.json?before={}&count=25", sub_name, sorting, val), + Some(val) => format!("r/{}/{}.json?before={}&count=25", sub_name, sorting, val), None => match ends.1 { - Some(val) => format!("https://www.reddit.com/r/{}/{}.json?after={}&count=25", sub_name, sorting, val), - None => format!("https://www.reddit.com/r/{}/{}.json", sub_name, sorting), + Some(val) => format!("r/{}/{}.json?after={}&count=25", sub_name, sorting, val), + None => format!("r/{}/{}.json", sub_name, sorting), }, }; @@ -79,7 +79,7 @@ pub async fn render(sub_name: String, sort: Option, ends: (Option Result { // Build the Reddit JSON API url - let url: String = format!("https://www.reddit.com/r/{}/about.json", sub); + let url: String = format!("r/{}/about.json", sub); // Send a request to the url, receive JSON in response let req = request(url).await; diff --git a/src/user.rs b/src/user.rs index f76cb2b..42043c3 100644 --- a/src/user.rs +++ b/src/user.rs @@ -14,7 +14,7 @@ struct UserTemplate { async fn render(username: String, sort: String) -> Result { // Build the Reddit JSON API url - let url: String = format!("https://www.reddit.com/user/{}/.json?sort={}", username, sort); + let url: String = format!("user/{}/.json?sort={}", username, sort); let user = user(&username).await; let posts = fetch_posts(url, "Comment".to_string()).await; @@ -49,7 +49,7 @@ pub async fn page(web::Path(username): web::Path, params: web::Query Result { // Build the Reddit JSON API url - let url: String = format!("https://www.reddit.com/user/{}/about.json", name); + let url: String = format!("user/{}/about.json", name); // Send a request to the url, receive JSON in response let req = request(url).await; diff --git a/src/utils.rs b/src/utils.rs index 148f2e1..b919969 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -181,7 +181,9 @@ pub async fn fetch_posts(url: String, fallback_title: String) -> Result<(Vec Result { +pub async fn request(mut url: String) -> Result { + url = format!("https://www.reddit.com/{}", url); + // --- actix-web::client --- // let client = actix_web::client::Client::default(); // let res = client diff --git a/static/style.css b/static/style.css index 10f460b..087e2c4 100644 --- a/static/style.css +++ b/static/style.css @@ -284,7 +284,6 @@ a:not(.post_right):hover { border-radius: 5px; display: flex; font-size: 15px; - padding: 5px; } .comment_left, .comment_right { @@ -377,12 +376,18 @@ a:not(.post_right):hover { color: aqua; } +.deeper_replies { + color: aqua; + margin-left: 1em; +} + ::marker { color: aqua; } .replies > .comment { margin-left: -20px; + padding: 5px; } .datetime { @@ -456,7 +461,7 @@ td, th { .replies > .comment { margin-left: -25px; - padding: 10px 10px 10px 5px; + padding: 5px 0px; } .datetime { diff --git a/templates/popular.html b/templates/popular.html index e4f4685..62b9fc9 100644 --- a/templates/popular.html +++ b/templates/popular.html @@ -6,7 +6,7 @@ - + {% for post in posts %}
diff --git a/templates/post.html b/templates/post.html index 6ad23b6..6b2a3c8 100644 --- a/templates/post.html +++ b/templates/post.html @@ -61,7 +61,7 @@ - + {% for c in comments -%} @@ -75,7 +75,11 @@ {% call comment(reply2) %}
{% for reply3 in reply2.replies %} - {% call comment(reply3) %}
+ {% call comment(reply3) %} + {% if reply3.replies.len() > 0 %} + → More replies + {% endif %} +
{% endfor %} {% endfor %} diff --git a/templates/subreddit.html b/templates/subreddit.html index 8dfcea0..83377c9 100644 --- a/templates/subreddit.html +++ b/templates/subreddit.html @@ -25,7 +25,7 @@ - + {% for post in posts %}
diff --git a/templates/user.html b/templates/user.html index 6f2cc38..11a9aab 100644 --- a/templates/user.html +++ b/templates/user.html @@ -18,7 +18,7 @@ - + {% for post in posts %} {% if post.title != "Comment" %}