freshporno

This commit is contained in:
Simon
2025-09-02 09:58:19 +00:00
parent 9caec79427
commit c3f994ccbb
5 changed files with 244 additions and 1 deletions

View File

@@ -757,6 +757,40 @@ async fn status(req: HttpRequest) -> Result<impl web::Responder, web::Error> {
nsfw: true,
});
// porn00
status.add_channel(Channel {
id: "freshporno".to_string(),
name: "Freshporno".to_string(),
description: "Only Fresh Free HD Porn Videos Online".to_string(),
premium: false,
favicon: "https://www.google.com/s2/favicons?sz=64&domain=freshporno.net".to_string(),
status: "active".to_string(),
categories: vec![],
options: vec![ChannelOption {
id: "sort".to_string(),
title: "Sort".to_string(),
description: "Sort the Videos".to_string(), //"Sort the videos by Date or Name.".to_string(),
systemImage: "list.number".to_string(),
colorName: "blue".to_string(),
options: vec![
FilterOption {
id: "new".to_string(),
title: "New".to_string(),
},
FilterOption {
id: "popular".to_string(),
title: "Popular".to_string(),
},
FilterOption {
id: "top-rated".to_string(),
title: "Top Rated".to_string(),
},
],
multiSelect: false,
}],
nsfw: true,
});
// porn00
// status.add_channel(Channel {
// id: "noodlemagazine".to_string(),
@@ -1047,6 +1081,7 @@ pub fn get_provider(channel: &str) -> Option<AnyProvider> {
"sxyprn" => Some(AnyProvider::Sxyprn(crate::providers::sxyprn::SxyprnProvider::new())),
"porn00" => Some(AnyProvider::Porn00(crate::providers::porn00::Porn00Provider::new())),
// "noodlemagazine" => Some(AnyProvider::Noodlemagazine(crate::providers::noodlemagazine::NoodlemagazineProvider::new())),
"freshporno" => Some(AnyProvider::Freshporno(crate::providers::freshporno::FreshpornoProvider::new())),
_ => Some(AnyProvider::Perverzija(PerverzijaProvider::new())),
}
}