From 921b999ded7c81a043c09b74d999c220accb59eb Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:49:36 +0100 Subject: [PATCH 1/6] Add ihsoyct as pushshift api --- src/config.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config.rs b/src/config.rs index 7b1c95c..0108889 100644 --- a/src/config.rs +++ b/src/config.rs @@ -267,8 +267,8 @@ fn test_default_filters() { #[test] #[sealed_test] fn test_pushshift() { - let config_to_write = r#"REDLIB_PUSHSHIFT_FRONTEND = "https://api.pushshift.io""#; + let config_to_write = r#"REDLIB_PUSHSHIFT_FRONTEND = "https://ihsoyct.github.io""#; write("redlib.toml", config_to_write).unwrap(); assert!(get_setting("REDLIB_PUSHSHIFT_FRONTEND").is_some()); - assert_eq!(get_setting("REDLIB_PUSHSHIFT_FRONTEND"), Some("https://api.pushshift.io".into())); + assert_eq!(get_setting("REDLIB_PUSHSHIFT_FRONTEND"), Some("https://ihsoyct.github.io".into())); } From 79ad9beff078ebca3d22947d5e85141e04e0e729 Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:56:41 +0100 Subject: [PATCH 2/6] Add ihsoyct as pushshift api --- src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.rs b/src/config.rs index 0108889..268b757 100644 --- a/src/config.rs +++ b/src/config.rs @@ -11,7 +11,7 @@ pub static CONFIG: Lazy = Lazy::new(Config::load); // This serves as the frontend for an archival API - on removed comments, this URL // will be the base of a link, to display removed content (on another site). -pub const DEFAULT_PUSHSHIFT_FRONTEND: &str = "undelete.pullpush.io"; +pub const DEFAULT_PUSHSHIFT_FRONTEND: &str = "ihsoyct.github.io"; /// Stores the configuration parsed from the environment variables and the /// config file. `Config::Default()` contains None for each setting. From 7c2c609f9d5ac262bd3098d3ad821ce4d09d266b Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 20:59:37 +0100 Subject: [PATCH 3/6] Update post.rs to use ihsoyct --- src/post.rs | 21 ++++++++++++--------- 1 file changed, 12 insertions(+), 9 deletions(-) diff --git a/src/post.rs b/src/post.rs index 20b917d..84fc485 100644 --- a/src/post.rs +++ b/src/post.rs @@ -54,7 +54,7 @@ pub async fn item(req: Request) -> Result, String> { // Log the post ID being fetched in debug mode #[cfg(debug_assertions)] - req.param("id").unwrap_or_default(); + let post_id = req.param("id").unwrap_or_default(); let single_thread = req.param("comment_id").is_some(); let highlighted_comment = &req.param("comment_id").unwrap_or_default(); @@ -84,10 +84,11 @@ pub async fn item(req: Request) -> Result, String> { let query = form.get("q").unwrap().clone().to_string(); let comments = match query.as_str() { - "" => parse_comments(&response[1], &post.permalink, &post.author.name, highlighted_comment, &get_filters(&req), &req), - _ => query_comments(&response[1], &post.permalink, &post.author.name, highlighted_comment, &get_filters(&req), &query, &req), + "" => parse_comments(&response[1], &post.permalink, &post.author.name, highlighted_comment, &get_filters(&req), &req, post_id.clone()), + _ => query_comments(&response[1], &post.permalink, &post.author.name, highlighted_comment, &get_filters(&req), &query, &req, post_id.clone()), }; + // Use the Post and Comment structs to generate a website to show users Ok(template(&PostTemplate { comments, @@ -114,7 +115,7 @@ pub async fn item(req: Request) -> Result, String> { // COMMENTS -fn parse_comments(json: &serde_json::Value, post_link: &str, post_author: &str, highlighted_comment: &str, filters: &HashSet, req: &Request) -> Vec { +fn parse_comments(json: &serde_json::Value, post_link: &str, post_author: &str, highlighted_comment: &str, filters: &HashSet, req: &Request, post_id: String) -> Vec { // Parse the comment JSON into a Vector of Comments let comments = json["data"]["children"].as_array().map_or(Vec::new(), std::borrow::ToOwned::to_owned); @@ -124,11 +125,11 @@ fn parse_comments(json: &serde_json::Value, post_link: &str, post_author: &str, .map(|comment| { let data = &comment["data"]; let replies: Vec = if data["replies"].is_object() { - parse_comments(&data["replies"], post_link, post_author, highlighted_comment, filters, req) + parse_comments(&data["replies"], post_link, post_author, highlighted_comment, filters, req, post_id.clone()) } else { Vec::new() }; - build_comment(&comment, data, replies, post_link, post_author, highlighted_comment, filters, req) + build_comment(&comment, data, replies, post_link, post_author, highlighted_comment, filters, req, post_id.clone()) }) .collect() } @@ -141,6 +142,7 @@ fn query_comments( filters: &HashSet, query: &str, req: &Request, + post_id: String, ) -> Vec { let comments = json["data"]["children"].as_array().map_or(Vec::new(), std::borrow::ToOwned::to_owned); let mut results = Vec::new(); @@ -150,10 +152,10 @@ fn query_comments( // If this comment contains replies, handle those too if data["replies"].is_object() { - results.append(&mut query_comments(&data["replies"], post_link, post_author, highlighted_comment, filters, query, req)); + results.append(&mut query_comments(&data["replies"], post_link, post_author, highlighted_comment, filters, query, req, post_id.clone())); } - let c = build_comment(&comment, data, Vec::new(), post_link, post_author, highlighted_comment, filters, req); + let c = build_comment(&comment, data, Vec::new(), post_link, post_author, highlighted_comment, filters, req, post_id.clone()); if c.body.to_lowercase().contains(&query.to_lowercase()) { results.push(c); } @@ -171,12 +173,13 @@ fn build_comment( highlighted_comment: &str, filters: &HashSet, req: &Request, + post_id: String, ) -> Comment { let id = val(comment, "id"); let body = if (val(comment, "author") == "[deleted]" && val(comment, "body") == "[removed]") || val(comment, "body") == "[ Removed by Reddit ]" { format!( - "

[removed] — view removed comment

", + "

[removed] — view removed comment

", get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else { From 7ca3fc7fa631e11ca5478909e5ce604a9cfb1cbb Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 21:12:31 +0100 Subject: [PATCH 4/6] Update utils.rs to use ihsoyct --- src/utils.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index f5046cb..68bee9e 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -804,11 +804,13 @@ pub async fn parse_post(post: &Value) -> Post { let permalink = val(post, "permalink"); + let post_id = val(post, "id"); + let poll = Poll::parse(&post["data"]["poll_data"]); let body = if val(post, "removed_by_category") == "moderator" { format!( - "

[removed] — view removed post

", + "

[removed] — view removed post

", get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else { From 98ba6d0c3a5eccbc9abc80991b4cffaa86fd16b3 Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 21:57:40 +0100 Subject: [PATCH 5/6] Make link open in new page --- src/post.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/post.rs b/src/post.rs index 84fc485..3704268 100644 --- a/src/post.rs +++ b/src/post.rs @@ -179,7 +179,7 @@ fn build_comment( let body = if (val(comment, "author") == "[deleted]" && val(comment, "body") == "[removed]") || val(comment, "body") == "[ Removed by Reddit ]" { format!( - "

[removed] — view removed comment

", + "

[removed] — view removed comment

", get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else { From 594cb695c55b30259a660f02808568f6d39667b4 Mon Sep 17 00:00:00 2001 From: gongchandang49 <170948611+gongchandang49@users.noreply.github.com> Date: Sun, 23 Mar 2025 21:58:59 +0100 Subject: [PATCH 6/6] Make link open in new page --- src/utils.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils.rs b/src/utils.rs index 68bee9e..de40bb2 100644 --- a/src/utils.rs +++ b/src/utils.rs @@ -810,7 +810,7 @@ pub async fn parse_post(post: &Value) -> Post { let body = if val(post, "removed_by_category") == "moderator" { format!( - "

[removed] — view removed post

", + "

[removed] — view removed post

", get_setting("REDLIB_PUSHSHIFT_FRONTEND").unwrap_or_else(|| String::from(crate::config::DEFAULT_PUSHSHIFT_FRONTEND)), ) } else {