use crate::DbPool; use crate::api::ClientVersion; use crate::providers::{Provider, report_provider_error}; use crate::status::*; use crate::util::cache::VideoCache; use crate::util::flaresolverr::{FlareSolverrRequest, Flaresolverr}; use crate::util::parse_abbreviated_number; use crate::util::time::parse_time_to_seconds; use crate::videos::{ServerOptions, VideoItem}; use async_trait::async_trait; use error_chain::error_chain; use htmlentity::entity::{ICodedDataTrait, decode}; use std::collections::HashMap; use std::env; use std::sync::{Arc, RwLock}; use std::vec; use wreq::Client; use wreq_util::Emulation; pub const CHANNEL_METADATA: crate::providers::ProviderChannelMetadata = crate::providers::ProviderChannelMetadata { group_id: "studio-network", tags: &["glamour", "softcore", "solo"], }; error_chain! { foreign_links { Io(std::io::Error); HttpRequest(wreq::Error); } } #[derive(Debug, Clone)] pub struct PerfectgirlsProvider { url: String, tag_map: Arc>>, } impl PerfectgirlsProvider { pub fn new() -> Self { PerfectgirlsProvider { url: "https://www.perfectgirls.xxx".to_string(), tag_map: Arc::new(RwLock::new(HashMap::new())), } } fn normalize_key(value: &str) -> String { value .trim() .to_ascii_lowercase() .replace(['_', '-'], " ") .split_whitespace() .collect::>() .join(" ") } fn humanize_slug(value: &str) -> String { value .trim_matches('/') .replace('-', " ") .split_whitespace() .collect::>() .join(" ") } fn insert_tag_mapping(&self, kind: &str, slug: &str, title: Option<&str>) { let slug = slug.trim().trim_matches('/'); if slug.is_empty() { return; } let path = format!("{kind}/{slug}"); if let Ok(mut map) = self.tag_map.write() { map.insert(Self::normalize_key(slug), path.clone()); let normalized_title = Self::normalize_key(title.unwrap_or(slug)); if !normalized_title.is_empty() { map.insert(normalized_title, path); } } } fn resolve_query_path(&self, query: &str) -> Option { let trimmed = query.trim().trim_start_matches('@'); if let Some((kind, raw_value)) = trimmed.split_once(':') { let kind = kind.trim().to_ascii_lowercase(); let value = raw_value.trim().trim_matches('/').replace(' ', "-"); if !value.is_empty() && matches!(kind.as_str(), "channels" | "pornstars") { return Some(format!("{kind}/{value}")); } } let normalized = Self::normalize_key(trimmed); if normalized.is_empty() { return None; } self.tag_map.read().ok()?.get(&normalized).cloned() } fn build_channel(&self, _clientversion: ClientVersion) -> Channel { Channel { id: "perfectgirls".to_string(), name: "Perfectgirls".to_string(), description: "Perfect Girls Tube".to_string(), premium: false, favicon: "https://www.google.com/s2/favicons?sz=64&domain=perfectgirls.xxx".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(), 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: "trending".to_string(), title: "Trending".to_string(), }, ], multiSelect: false, }], nsfw: true, cacheDuration: Some(1800), ytdlpCommand: Some("yt-dlp --impersonate chrome-120".to_string()) } } async fn get(&self, cache: VideoCache, page: u8, sort: &str) -> Result> { let sort_string = match sort { "trending" => "/trending", "popular" => "/popular", _ => "", }; let video_url = format!("{}{}/{}/", self.url, sort_string, page); let old_items = match cache.get(&video_url) { Some((time, items)) => { if time.elapsed().unwrap_or_default().as_secs() < 60 * 5 { return Ok(items.clone()); } else { items.clone() } } None => { vec![] } }; // let proxy = Proxy::all("http://192.168.0.103:8081").unwrap(); let client = Client::builder() .tls_cert_verification(false) .emulation(Emulation::Firefox136) .build()?; let mut response = client .get(video_url.clone()) // .proxy(proxy.clone()) .send() .await?; if response.status().is_redirection() { let location = match response .headers() .get("Location") .and_then(|h| h.to_str().ok()) { Some(location) => location, None => { report_provider_error( "perfectgirls", "get.redirect_location", &format!("url={video_url}; missing/invalid Location header"), ) .await; return Ok(old_items); } }; println!("Redirection detected, following to: {}", location); response = client .get(location) // .proxy(proxy.clone()) .send() .await?; } if response.status().is_success() { let text = response.text().await?; let video_items: Vec = self.get_video_items_from_html(text.clone()); if !video_items.is_empty() { cache.remove(&video_url); cache.insert(video_url.clone(), video_items.clone()); } else { return Ok(old_items); } Ok(video_items) } else { let flare_url = match env::var("FLARE_URL") { Ok(url) => url, Err(e) => { report_provider_error("perfectgirls", "get.flare_url", &e.to_string()).await; return Ok(old_items); } }; let flare = Flaresolverr::new(flare_url); let result = flare .solve(FlareSolverrRequest { cmd: "request.get".to_string(), url: video_url.clone(), maxTimeout: 60000, }) .await; let video_items = match result { Ok(res) => { // println!("FlareSolverr response: {}", res); self.get_video_items_from_html(res.solution.response) } Err(e) => { println!("Error solving FlareSolverr: {}", e); return Err("Failed to solve FlareSolverr".into()); } }; if !video_items.is_empty() { cache.remove(&video_url); cache.insert(video_url.clone(), video_items.clone()); } else { return Ok(old_items); } Ok(video_items) } } async fn query(&self, cache: VideoCache, page: u8, query: &str) -> Result> { let search_string = query.to_lowercase().trim().replace(" ", "-"); let mut video_url = format!("{}/search/{}/{}/", self.url, search_string, page); if let Some(path) = self.resolve_query_path(query) { video_url = format!("{}/{}/{}/", self.url, path, page); } // Check our Video Cache. If the result is younger than 1 hour, we return it. let old_items = match cache.get(&video_url) { Some((time, items)) => { if time.elapsed().unwrap_or_default().as_secs() < 60 * 5 { return Ok(items.clone()); } else { let _ = cache.check().await; return Ok(items.clone()); } } None => { vec![] } }; // let proxy = Proxy::all("http://192.168.0.103:8081").unwrap(); let client = Client::builder() .tls_cert_verification(false) .emulation(Emulation::Firefox136) .build()?; let mut response = client .get(video_url.clone()) // .proxy(proxy.clone()) .send() .await?; if response.status().is_redirection() { let location = match response .headers() .get("Location") .and_then(|h| h.to_str().ok()) { Some(location) => location, None => { report_provider_error( "perfectgirls", "query.redirect_location", &format!("url={video_url}; missing/invalid Location header"), ) .await; return Ok(old_items); } }; response = client .get(self.url.clone() + location) // .proxy(proxy.clone()) .send() .await?; } if response.status().is_success() { let text = response.text().await?; let video_items: Vec = self.get_video_items_from_html(text.clone()); if !video_items.is_empty() { cache.remove(&video_url); cache.insert(video_url.clone(), video_items.clone()); } else { return Ok(old_items); } Ok(video_items) } else { let flare_url = match env::var("FLARE_URL") { Ok(url) => url, Err(e) => { report_provider_error("perfectgirls", "query.flare_url", &e.to_string()).await; return Ok(old_items); } }; let flare = Flaresolverr::new(flare_url); let result = flare .solve(FlareSolverrRequest { cmd: "request.get".to_string(), url: video_url.clone(), maxTimeout: 60000, }) .await; let video_items = match result { Ok(res) => self.get_video_items_from_html(res.solution.response), Err(e) => { println!("Error solving FlareSolverr: {}", e); return Err("Failed to solve FlareSolverr".into()); } }; if !video_items.is_empty() { cache.remove(&video_url); cache.insert(video_url.clone(), video_items.clone()); } else { return Ok(old_items); } Ok(video_items) } } fn get_video_items_from_html(&self, html: String) -> Vec { if html.is_empty() { println!("HTML is empty"); return vec![]; } let mut items: Vec = Vec::new(); let raw_videos = html .split("
>() .get(0) .copied() .unwrap_or_default() .split("item thumb-bl thumb-bl-video video_") .collect::>()[1..] .to_vec(); for video_segment in &raw_videos { // let vid = video_segment.split("\n").collect::>(); // for (index, line) in vid.iter().enumerate() { // println!("Line {}: {}", index, line); // } let video_url: String = format!( "{}{}", self.url, video_segment .split(">() .get(1) .copied() .unwrap_or_default() .split("\"") .collect::>() .get(0) .copied() .unwrap_or_default() ); let preview_url = video_segment .split("data-preview-custom=\"") .collect::>() .get(1) .copied() .unwrap_or_default() .split("\"") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string(); let mut title = video_segment .split("\" title=\"") .collect::>() .get(1) .copied() .unwrap_or_default() .split("\"") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string(); // html decode title = decode(title.as_bytes()).to_string().unwrap_or(title); let id = video_url .split("/") .collect::>() .get(4) .copied() .unwrap_or_default() .to_string(); let raw_duration = video_segment .split("fa fa-clock-o") .collect::>() .get(1) .copied() .unwrap_or_default() .split("") .collect::>() .get(1) .copied() .unwrap_or_default() .split("<") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string(); let duration = parse_time_to_seconds(&raw_duration).unwrap_or(0) as u32; let mut thumb = video_segment .split(" class=\"thumb lazy-load\"") .collect::>() .get(1) .copied() .unwrap_or_default() .split("data-original=\"") .collect::>() .get(1) .copied() .unwrap_or_default() .split("\"") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string(); if thumb.starts_with("//") { thumb = format!("https:{}", thumb); } let mut tags = vec![]; if video_segment.contains("href=\"/channels/") { let raw_tags = video_segment .split("href=\"/channels/") .collect::>()[1..] .iter() .map(|s| { s.split("/\"") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string() }) .collect::>(); for tag in raw_tags { if !tag.is_empty() { self.insert_tag_mapping("channels", &tag, None); tags.push(Self::humanize_slug(&tag)); } } } if video_segment.contains("href=\"/pornstars/") { let raw_tags = video_segment .split("href=\"/pornstars/") .collect::>()[1..] .iter() .map(|s| { s.split("/\"") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string() }) .collect::>(); for tag in raw_tags { if !tag.is_empty() { self.insert_tag_mapping("pornstars", &tag, None); tags.push(Self::humanize_slug(&tag)); } } } let views_part = video_segment .split("fa fa-eye") .collect::>() .get(1) .copied() .unwrap_or_default() .split("") .collect::>() .get(1) .copied() .unwrap_or_default() .split("<") .collect::>() .get(0) .copied() .unwrap_or_default() .to_string(); let views = parse_abbreviated_number(&views_part).unwrap_or(0) as u32; let video_item = VideoItem::new( id, title, video_url.to_string(), "perfectgirls".to_string(), thumb, duration, ) .preview(preview_url) .views(views) .tags(tags); items.push(video_item); } return items; } } #[async_trait] impl Provider for PerfectgirlsProvider { async fn get_videos( &self, cache: VideoCache, pool: DbPool, sort: String, query: Option, page: String, per_page: String, options: ServerOptions, ) -> Vec { let _ = options; let _ = per_page; let _ = pool; let videos: std::result::Result, Error> = match query { Some(q) => self.query(cache, page.parse::().unwrap_or(1), &q).await, None => { self.get(cache, page.parse::().unwrap_or(1), &sort) .await } }; match videos { Ok(v) => v, Err(e) => { println!("Error fetching videos: {}", e); vec![] } } } fn get_channel(&self, clientversion: ClientVersion) -> Option { Some(self.build_channel(clientversion)) } }