core/st/rob2.php

94 lines
3.0 KiB
PHP
Executable File

<?php
//$_SERVER['SERVER_NAME']='tk-ligat.ru';
//require_once('tk-ligat.ru.php');
require_once('/home/cloud/core/st/db.php');
//require_once('/home/cloud/core/api/php/json.php');
function leopak ($text) {
$old1 = array("https://new.yurecnt.ru");
$new1 = array("");
$text = str_replace($old1, $new1, $text);
return $text;
}
function add_link($html){
preg_match_all("/<[Aa][\s]{1}[^>]*[Hh][Rr][Ee][Ff][^=]*=[ '\"\s]*([^ \"'>\s#]+)[^>]*>/", $html, $matches);
$urls = $matches[1]; // Берём то место, где сама ссылка (благодаря группирующим скобкам в регулярном выражении)
/* Выводим все ссылки */
for ($j = 0; $j < count($urls); $j++){
$link=$urls[$j];
$id=DB::getValue("SELECT `id` FROM `st` WHERE `link`='" . $link . "' LIMIT 1");
if (!$id)DB::add("INSERT INTO `st` (`link`, `status`) VALUES (?, ?)", array($link, 1));
}
}
/* ищет str в txt если находит, возвращает единичку */
function findtxt($txt, $str){
$pos1 = stripos($txt, $str);
if ($pos1 === false) return 0;
else
return 1;
}
function get_page($link){
//if (findtxt($link, 'http://market.leopak.ru')==0) $link='http://market.leopak.ru' . $link;
$agent = 'Mozilla/5.0 (compatible; YandexBot/3.0)';
// echo $link . "\n\r";
$ch = curl_init($link);
//curl_setopt($ch, CURLOPT_REFERER, 'https://www.samsonopt.ru');
curl_setopt($ch, CURLOPT_USERAGENT, $agent);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$dir = dirname(__FILE__);
$config['cookie_file'] = $dir . '/cookies/' . md5(@$_SERVER['REMOTE_ADDR']) . '.txt';
curl_setopt($ch, CURLOPT_COOKIEFILE, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIEJAR, $config['cookie_file']);
curl_setopt($ch, CURLOPT_COOKIE, "PMBC=96152e8e9a0168a731539c5e52c6b39a; PHPSESSID=jl0i13pn3157qca807jgp0jqa7; ServerName=WoW+Circle+3.3.5a+x5; serverId=1");
// curl_setopt($ch, CURLOPT_PROXY, 'localhost:9050'); // Use if proxy have username and password
// curl_setopt($ch, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
$response_data = curl_exec($ch);
if (curl_errno($ch) > 0) {
DB::set("UPDATE `st` SET `status`=0 WHERE `link`=?",$link);
// die('Ошибка curl: ' . curl_error($ch));
}
curl_close($ch);
echo $response_data;
return $response_data;
}
$LinkList = DB::getAll( 'SELECT * FROM `st` WHERE `status`=1 AND `link` LIKE "https://stroykabaza%" ORDER BY RAND() LIMIT 6000');
//print_r($LinkList);
for ($i=0; $i<count( $LinkList ); $i++){
$html=get_page($LinkList[$i]['link']);
// $html=base64_decode($LinkList[$i]['html']);
if ($html) add_link($html);
DB::set("UPDATE `st` SET `html`=?, `status`=2 WHERE `id`=?", array($html, $LinkList[$i]['id']));
unset($html);
}
DB::set("DELETE FROM `st` WHERE `link` NOT LIKE 'https://stroykabaza.ru%' LIMIT 1000");
?>