feat(rss): conditionally add RSS feeds to user and sub pages

This commit is contained in:
Matthew Esposito 2024-07-21 11:15:36 -04:00
parent f83f9c1d7d
commit ee364bb1c8
4 changed files with 1437 additions and 1165 deletions

View file

@ -1082,6 +1082,16 @@ pub fn sfw_only() -> bool {
}
}
/// Returns true if the config/env variable REDLIB_ENABLE_RSS is set to "on".
/// If this variable is set as such, the instance will enable RSS feeds.
/// Otherwise, the instance will not provide RSS feeds.
pub fn enable_rss() -> bool {
match get_setting("REDLIB_ENABLE_RSS") {
Some(val) => val == "on",
None => false,
}
}
// Determines if a request shoud redirect to a nsfw landing gate.
pub fn should_be_nsfw_gated(req: &Request<Body>, req_url: &str) -> bool {
let sfw_instance = sfw_only();