function parse_release($url,$p_source, $gettorrent)
{
switch ($p_source){
case "free-rutor": $p_release = parse_freerutor($url, $gettorrent);break;
}
return $p_release;
}
function parse_freerutor($url, $gettorrent)
{
$ch = curl_init($url);
curl_setopt($ch, CURLOPT_USERAGENT, 'IE20');
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, '1');
$copy_page = curl_exec($ch);
curl_close($ch);
preg_match("#\<table id=\"details\"\>.*?<br />(.*?)\<tr\>\<td class=\"header\"\>#si", $copy_page, $copy_post);
preg_match ("#<title>free-rutor.org :: (.*?)</title>#si", $copy_page, $r_title);
$copy_release = @$copy_post[1];
$text = preg_replace("#<a href=\"(.*?)\".*?>(.*?)</a>#si", "[url=\\1]\\2[/url]", $copy_release);
$text = preg_replace("#<img src=\"(\S*?)\" style=\"float:(.*?);\" />#si", "[img=\\2]\\1[/img]", $text);
$text = preg_replace("#<img src=\"(\S*?)\" />#si", "[img]\\1[/img]", $text);
$text = preg_replace("#<hr />#si", "[hr]", $text);
//hide
while (preg_match("#<div class=\"hidewrap\">.*?this\)\)\">(.*?)</div>.*?<textarea class=\"hidearea\">(.*?)</textarea></div>#sie", $text, $match))
{
$replace = "[spoiler=\"".strip_tags($match[1])."\"]".$match[2]."[/spoiler]";
$search = "|".preg_quote($match[0])."|si";
$text = preg_replace($search, $replace, $text);
}
//u i b center
while (preg_match("#<(.*?)>(.*?)<\/\\1>#sie", $text, $match))
{
switch ($match[1])
{
case "center": $replace = "[align=".$match[1]."]".$match[2]."[/align]"; break;
default: $replace = "[".$match[1]."]".$match[2]."[/".$match[1]."]";break;
}
$search = "|".preg_quote($match[0])."|si";
$text = preg_replace($search, $replace, $text);
}
//size
while (preg_match("#<font size=\"(\d+)\">(.*?)<\/font>#sie", $text, $match))
{
$replace = "[size=".(intval($match[1])+10)."]".$match[2]."[/size]";
$search = "|".preg_quote($match[0])."|si";
$text = preg_replace($search, $replace, $text);
}
//color font
while (preg_match("#<(?:span) (?:(?:style=\"((?:[^>]*?)):((?:[^>]*?));\">))((?:(?!<(?:span) ).)*?)</(?:span)>#sie", $text, $match))
{
switch ($match[1]){
case "font-family": $replace = "[font=\"".$match[2]."\"]".$match[3]."[/font]";break;
case "color": $replace = "[".$match[1]."=".$match[2]."]".$match[3]."[/".$match[1]."]";break;
}
$search = "|".preg_quote($match[0])."|si";
$text = preg_replace($search, $replace, $text);
}
if ($gettorrent === 1) {
preg_match ("#<a href=\"(http:\/\/d\.free-rutor\.org\/download\/\d+)\"#si", $copy_page, $r_torrent);
$torrent_url = @$r_torrent[1];
$options_torrent = array(CURLOPT_URL => $torrent_url);
$torrent_hidden = get_torrent($options_torrent);
}else {
$torrent_hidden = '';
}
$pars_data = array("title" => @$r_title[1], "bbcode" => strip_tags($text), "hidden" => $torrent_hidden);
return $pars_data;
}