use crate::agent::{AgentBase, YaydlAgent};
use crate::definitions::SiteDefinition;
use crate::VIDEO;
use anyhow::Result;
use cienli::ciphers::rot::{Rot, RotType};
use regex::Regex;
use scraper::{Html, Selector};
use url::Url;
use urlencoding::decode;
fn get_video_info(video: &mut VIDEO, url: &str) -> Result<Html> {
if video.info.is_empty() {
let url_p = Url::parse(&url)?;
let agent = YaydlAgent::init(url_p);
let body = agent
.get(url)
.call()
.expect("Could not go to the url")
.body_mut()
.read_to_string()
.expect("Could not read the site source");
video.info.push_str(body.as_str());
}
let d = Html::parse_document(&video.info);
Ok(d)
}
struct VivoHandler;
impl SiteDefinition for VivoHandler {
fn can_handle_url<'a>(
&'a self,
_video: &mut VIDEO,
url: &'a str,
_webdriver_port: u16,
) -> Result<bool> {
Ok(Regex::new(r"vivo.sx/.+").unwrap().is_match(url))
}
fn is_playlist<'a>(&'a self, _url: &'a str, _webdriver_port: u16) -> Result<bool> {
Ok(false)
}
fn find_video_title<'a>(
&'a self,
video: &'a mut VIDEO,
url: &'a str,
_webdriver_port: u16,
) -> Result<String> {
let video_info = get_video_info(video, url)?;
let title_selector = Selector::parse("div.stream-content").unwrap();
let title_elem = video_info.select(&title_selector).next().unwrap();
let title_contents = title_elem.value().attr("data-name").unwrap();
Ok(title_contents.to_string())
}
fn find_video_direct_url<'a>(
&'a self,
video: &'a mut VIDEO,
_url: &'a str,
_webdriver_port: u16,
_onlyaudio: bool,
) -> Result<String> {
let src_re = Regex::new("source: '(?P<SOURCE>.+?)',").unwrap();
let src_search = src_re.captures(&video.info).unwrap();
let video_src = src_search.name("SOURCE").map_or("", |t| t.as_str());
let url_decoded = match decode(video_src) {
Ok(u) => u,
_ => unreachable!(),
};
let unrotated = Rot::new(&url_decoded, RotType::Rot47);
Ok(unrotated.decipher().to_string())
}
fn does_video_exist<'a>(
&'a self,
video: &'a mut VIDEO,
url: &'a str,
_webdriver_port: u16,
) -> Result<bool> {
let _video_info = get_video_info(video, url);
Ok(!video.info.is_empty())
}
fn display_name<'a>(&'a self) -> String {
"VIVO".to_string()
}
fn find_video_file_extension<'a>(
&'a self,
_video: &'a mut VIDEO,
_url: &'a str,
_webdriver_port: u16,
_onlyaudio: bool,
) -> Result<String> {
Ok("mp4".to_string())
}
fn web_driver_required<'a>(&'a self) -> bool {
false
}
}
inventory::submit! {
&VivoHandler as &dyn SiteDefinition
}