libreddit/src/search.rs

184 lines
5.4 KiB
Rust
Raw Permalink Normal View History

2021-01-01 00:54:13 +01:00
// CRATES
use crate::utils::{self, catch_random, error, filter_posts, format_num, format_url, get_filters, param, redirect, setting, template, val, Post, Preferences};
use crate::{
client::json,
subreddit::{can_access_quarantine, quarantine},
RequestExt,
};
2021-01-01 00:54:13 +01:00
use askama::Template;
2021-03-17 23:30:33 +01:00
use hyper::{Body, Request, Response};
use once_cell::sync::Lazy;
use regex::Regex;
2021-01-01 00:54:13 +01:00
// STRUCTS
2021-01-03 07:37:54 +01:00
struct SearchParams {
q: String,
sort: String,
t: String,
before: String,
after: String,
restrict_sr: String,
2021-11-24 07:24:23 +01:00
typed: String,
2021-01-03 07:37:54 +01:00
}
2021-01-14 19:22:50 +01:00
// STRUCTS
struct Subreddit {
name: String,
url: String,
icon: String,
2021-01-14 19:22:50 +01:00
description: String,
subscribers: (String, String),
2021-01-14 19:22:50 +01:00
}
2021-01-01 00:54:13 +01:00
#[derive(Template)]
2022-05-21 07:28:31 +02:00
#[template(path = "search.html")]
2021-01-01 00:54:13 +01:00
struct SearchTemplate {
posts: Vec<Post>,
2021-01-14 19:22:50 +01:00
subreddits: Vec<Subreddit>,
2021-01-01 00:54:13 +01:00
sub: String,
2021-01-03 07:37:54 +01:00
params: SearchParams,
2021-01-09 02:35:04 +01:00
prefs: Preferences,
url: String,
/// Whether the subreddit itself is filtered.
is_filtered: bool,
/// Whether all fetched posts are filtered (to differentiate between no posts fetched in the first place,
/// and all fetched posts being filtered).
all_posts_filtered: bool,
/// Whether all posts were hidden because they are NSFW (and user has disabled show NSFW)
all_posts_hidden_nsfw: bool,
no_posts: bool,
2021-01-01 00:54:13 +01:00
}
// Regex matched against search queries to determine if they are reddit urls.
static REDDIT_URL_MATCH: Lazy<Regex> = Lazy::new(|| Regex::new(r"^https?://([^\./]+\.)*reddit.com/").unwrap());
2021-01-01 00:54:13 +01:00
// SERVICES
2021-03-17 23:30:33 +01:00
pub async fn find(req: Request<Body>) -> Result<Response<Body>, String> {
// This ensures that during a search, no NSFW posts are fetched at all
let nsfw_results = if setting(&req, "show_nsfw") == "on" && !utils::sfw_only() {
"&include_over_18=on"
} else {
""
};
2021-11-30 07:29:41 +01:00
let path = format!("{}.json?{}{}&raw_json=1", req.uri().path(), req.uri().query().unwrap_or_default(), nsfw_results);
let mut query = param(&path, "q").unwrap_or_default();
query = REDDIT_URL_MATCH.replace(&query, "").to_string();
2021-09-10 02:28:55 +02:00
if query.is_empty() {
return Ok(redirect("/".to_string()));
}
if query.starts_with("r/") {
return Ok(redirect(format!("/{}", query)));
}
2021-03-17 23:30:33 +01:00
let sub = req.param("sub").unwrap_or_default();
let quarantined = can_access_quarantine(&req, &sub);
// Handle random subreddits
if let Ok(random) = catch_random(&sub, "/find").await {
return Ok(random);
}
2021-01-14 20:45:04 +01:00
2021-11-24 07:24:23 +01:00
let typed = param(&path, "type").unwrap_or_default();
2021-05-16 18:11:38 +02:00
let sort = param(&path, "sort").unwrap_or_else(|| "relevance".to_string());
let filters = get_filters(&req);
2021-01-14 19:22:50 +01:00
2021-05-20 21:24:06 +02:00
// If search is not restricted to this subreddit, show other subreddits in search results
let subreddits = if param(&path, "restrict_sr").is_none() {
let mut subreddits = search_subreddits(&query, &typed).await;
subreddits.retain(|s| !filters.contains(s.name.as_str()));
subreddits
} else {
Vec::new()
};
2021-01-01 00:54:13 +01:00
let url = String::from(req.uri().path_and_query().map_or("", |val| val.as_str()));
// If all requested subs are filtered, we don't need to fetch posts.
if sub.split('+').all(|s| filters.contains(s)) {
template(SearchTemplate {
posts: Vec::new(),
subreddits,
sub,
params: SearchParams {
2021-02-20 22:59:16 +01:00
q: query.replace('"', "&quot;"),
sort,
t: param(&path, "t").unwrap_or_default(),
before: param(&path, "after").unwrap_or_default(),
after: "".to_string(),
restrict_sr: param(&path, "restrict_sr").unwrap_or_default(),
2021-11-24 07:24:23 +01:00
typed,
},
2023-01-02 03:39:38 +01:00
prefs: Preferences::new(&req),
url,
is_filtered: true,
all_posts_filtered: false,
all_posts_hidden_nsfw: false,
no_posts: false,
})
} else {
match Post::fetch(&path, quarantined).await {
Ok((mut posts, after)) => {
2022-11-09 17:16:51 +01:00
let (_, all_posts_filtered) = filter_posts(&mut posts, &filters);
let no_posts = posts.is_empty();
let all_posts_hidden_nsfw = !no_posts && (posts.iter().all(|p| p.flags.nsfw) && setting(&req, "show_nsfw") != "on");
template(SearchTemplate {
posts,
subreddits,
sub,
params: SearchParams {
q: query.replace('"', "&quot;"),
sort,
t: param(&path, "t").unwrap_or_default(),
before: param(&path, "after").unwrap_or_default(),
after,
restrict_sr: param(&path, "restrict_sr").unwrap_or_default(),
typed,
},
2023-01-02 03:39:38 +01:00
prefs: Preferences::new(&req),
url,
is_filtered: false,
all_posts_filtered,
all_posts_hidden_nsfw,
no_posts,
})
}
Err(msg) => {
if msg == "quarantined" || msg == "gated" {
let sub = req.param("sub").unwrap_or_default();
quarantine(req, sub, msg)
} else {
error(req, msg).await
}
}
}
2021-01-01 00:54:13 +01:00
}
}
2021-01-14 20:45:04 +01:00
2021-11-24 07:24:23 +01:00
async fn search_subreddits(q: &str, typed: &str) -> Vec<Subreddit> {
let limit = if typed == "sr_user" { "50" } else { "3" };
let subreddit_search_path = format!("/subreddits/search.json?q={}&limit={}", q.replace(' ', "+"), limit);
2021-01-14 20:45:04 +01:00
// Send a request to the url
2021-05-20 21:24:06 +02:00
json(subreddit_search_path, false).await.unwrap_or_default()["data"]["children"]
.as_array()
.map(ToOwned::to_owned)
.unwrap_or_default()
.iter()
.map(|subreddit| {
// For each subreddit from subreddit list
// Fetch subreddit icon either from the community_icon or icon_img value
2021-11-24 07:24:23 +01:00
let icon = subreddit["data"]["community_icon"].as_str().map_or_else(|| val(subreddit, "icon_img"), ToString::to_string);
2021-05-20 21:24:06 +02:00
Subreddit {
name: val(subreddit, "display_name"),
2021-05-20 21:24:06 +02:00
url: val(subreddit, "url"),
icon: format_url(&icon),
description: val(subreddit, "public_description"),
subscribers: format_num(subreddit["data"]["subscribers"].as_f64().unwrap_or_default() as i64),
2021-01-14 20:45:04 +01:00
}
2021-05-20 21:24:06 +02:00
})
.collect::<Vec<Subreddit>>()
2021-01-14 20:45:04 +01:00
}