2024-08-08 13:32:27 +03:00
|
|
|
|
<?php
|
|
|
|
|
namespace App;
|
|
|
|
|
|
2024-08-13 16:05:24 +03:00
|
|
|
|
use App\Library\ContingentManager;
|
2024-08-13 13:15:21 +03:00
|
|
|
|
use App\Library\DatabaseConfig;
|
2024-08-16 15:00:37 +03:00
|
|
|
|
use App\Library\Logger;
|
2024-08-12 15:14:49 +03:00
|
|
|
|
use GuzzleHttp\Exception\ClientException;
|
|
|
|
|
use GuzzleHttp\Exception\ConnectException;
|
|
|
|
|
use GuzzleHttp\Exception\RequestException;
|
|
|
|
|
use GuzzleHttp\Exception\ServerException;
|
2024-08-08 16:38:54 +03:00
|
|
|
|
use App\Library\ContingentParser;
|
2024-08-08 13:32:27 +03:00
|
|
|
|
use App\Library\Database;
|
|
|
|
|
use GuzzleHttp\Client;
|
|
|
|
|
|
2024-08-16 15:00:37 +03:00
|
|
|
|
$pathLogErrorHtml = 'error-html.log';
|
2024-08-19 10:17:54 +03:00
|
|
|
|
$pathLogErrorHttp = 'error-http-curl.log';
|
2024-08-16 15:00:37 +03:00
|
|
|
|
|
2024-08-13 13:15:21 +03:00
|
|
|
|
$dbOpendata = new Database(new DatabaseConfig('opendata'));
|
|
|
|
|
$dbNiimko = new Database(new DatabaseConfig('niimko'));
|
2024-08-19 10:17:54 +03:00
|
|
|
|
|
2024-08-13 16:05:24 +03:00
|
|
|
|
$sites = ContingentManager::getInstance()->getSites($dbNiimko);
|
|
|
|
|
$specializations = ContingentManager::getInstance()->getSpecializations($dbNiimko);
|
2024-08-19 10:17:54 +03:00
|
|
|
|
$orgs = ContingentManager::getInstance()->getOrgs($dbOpendata);
|
|
|
|
|
// print_r($sites);
|
2024-08-12 16:58:12 +03:00
|
|
|
|
// print_r($specializations);
|
2024-08-16 13:44:49 +03:00
|
|
|
|
// print_r($org);
|
2024-08-12 16:58:12 +03:00
|
|
|
|
|
2024-08-19 10:17:54 +03:00
|
|
|
|
// $errorSites = [];
|
|
|
|
|
// $filename = 'error-html.log';
|
|
|
|
|
// $array = file($filename);
|
|
|
|
|
// for ($i = 0; $i < count($array); $i++) {
|
|
|
|
|
// $arr = explode(' ', $array[$i]);
|
|
|
|
|
// if (!in_array($arr[2], $orgs)) {
|
|
|
|
|
// $errorSites[] = $arr[2];
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// $filename = 'error-http.log';
|
|
|
|
|
// $array = file($filename);
|
|
|
|
|
// for ($i = 0; $i < count($array); $i++) {
|
|
|
|
|
// $arr = explode(' ', $array[$i]);
|
|
|
|
|
// if (!in_array($arr[2], $orgs)) {
|
|
|
|
|
// $errorSites[] = $arr[2];
|
|
|
|
|
// }
|
|
|
|
|
// }
|
2024-08-16 13:44:49 +03:00
|
|
|
|
|
2024-08-20 11:47:27 +03:00
|
|
|
|
$start = 999;
|
2024-08-16 13:44:49 +03:00
|
|
|
|
|
|
|
|
|
for ($i = $start; $i < count($sites); $i++) {
|
|
|
|
|
// Нет URL сайта вуза
|
|
|
|
|
if (empty($sites[$i]['site'])) {
|
2024-08-16 15:00:37 +03:00
|
|
|
|
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
|
|
|
|
Logger::log($pathLogErrorHttp, $message);
|
2024-08-16 13:44:49 +03:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// Уже в базе
|
|
|
|
|
if (in_array($sites[$i]['org_id'], $orgs)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
// С ошибками разметки игнорируем
|
2024-08-19 10:17:54 +03:00
|
|
|
|
// if (in_array($sites[$i]['org_id'], $errorSites)) {
|
|
|
|
|
// continue;
|
|
|
|
|
// }
|
2024-08-12 15:14:49 +03:00
|
|
|
|
try {
|
2024-08-12 16:58:12 +03:00
|
|
|
|
$client = new Client([
|
2024-08-19 10:17:54 +03:00
|
|
|
|
'allow_directs' => true,
|
|
|
|
|
'track_redirects' => true,
|
2024-08-21 14:51:01 +03:00
|
|
|
|
'connect_timeout' => 300.0,
|
2024-08-19 10:17:54 +03:00
|
|
|
|
'verify' => false,
|
|
|
|
|
// 'http_errors' => false,
|
|
|
|
|
'headers' => [
|
|
|
|
|
'User-Agent' => 'Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/124.0.0.0 YaBrowser/24.6.0.0 Safari/537.36',
|
2024-08-21 14:51:01 +03:00
|
|
|
|
'Content-Type' => 'text/html;charset=utf-8'
|
2024-08-13 16:05:24 +03:00
|
|
|
|
]
|
2024-08-12 16:58:12 +03:00
|
|
|
|
]);
|
2024-08-16 13:44:49 +03:00
|
|
|
|
|
|
|
|
|
$url = $sites[$i]['site'];
|
|
|
|
|
$url = ContingentManager::getInstance()->buildURL($url);
|
2024-08-13 16:05:24 +03:00
|
|
|
|
print(($i+1).". Current url: $url\n");
|
2024-08-08 16:38:54 +03:00
|
|
|
|
|
2024-08-19 10:17:54 +03:00
|
|
|
|
$response = $client->get($url);
|
|
|
|
|
echo $response->getStatusCode() .PHP_EOL;
|
2024-08-12 15:14:49 +03:00
|
|
|
|
|
|
|
|
|
$html = $response->getBody()->getContents();
|
2024-08-20 11:47:27 +03:00
|
|
|
|
if (empty($html)) {
|
|
|
|
|
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
|
|
|
|
Logger::log($pathLogErrorHtml, $message);
|
|
|
|
|
continue;
|
|
|
|
|
}
|
2024-08-12 15:14:49 +03:00
|
|
|
|
$parser = new ContingentParser($html, '//tr[@itemprop="eduChislen"]//');
|
|
|
|
|
$contingent = $parser->getDataTable();
|
2024-08-12 16:58:12 +03:00
|
|
|
|
|
|
|
|
|
// Добавляем поле spec_id по spec_code
|
2024-08-13 16:05:24 +03:00
|
|
|
|
ContingentManager::getInstance()->addSpecId($contingent, $specializations);
|
2024-08-12 16:58:12 +03:00
|
|
|
|
|
|
|
|
|
// Добавляем поле org_id
|
2024-08-13 16:05:24 +03:00
|
|
|
|
ContingentManager::getInstance()->addOrgId($contingent, $sites[$i]['org_id']);
|
2024-08-12 15:14:49 +03:00
|
|
|
|
print_r($contingent);
|
2024-08-19 10:17:54 +03:00
|
|
|
|
if (empty($contingent)) {
|
2024-08-16 15:00:37 +03:00
|
|
|
|
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
|
|
|
|
Logger::log($pathLogErrorHtml, $message);
|
2024-08-13 16:05:24 +03:00
|
|
|
|
} else {
|
2024-08-16 13:44:49 +03:00
|
|
|
|
$set = ContingentManager::getInstance()->checkContingent($contingent);
|
|
|
|
|
if ($set) {
|
|
|
|
|
// Заносим в базу
|
2024-08-19 10:17:54 +03:00
|
|
|
|
ContingentManager::getInstance()->insertContingent($dbOpendata, $contingent);
|
2024-08-16 13:44:49 +03:00
|
|
|
|
} else {
|
2024-08-16 15:00:37 +03:00
|
|
|
|
$message = $sites[$i]['org_id'] . ' ' . $sites[$i]['site'];
|
|
|
|
|
Logger::log($pathLogErrorHtml, $message);
|
2024-08-16 13:44:49 +03:00
|
|
|
|
}
|
|
|
|
|
unset($contingent);
|
2024-08-13 16:05:24 +03:00
|
|
|
|
}
|
2024-08-21 14:51:01 +03:00
|
|
|
|
} catch (ClientException
|
|
|
|
|
| RequestException
|
|
|
|
|
| ConnectException
|
|
|
|
|
| ServerException $e
|
|
|
|
|
) {
|
2024-08-19 10:17:54 +03:00
|
|
|
|
$message = implode(' ', $sites[$i]) . "\t" . $e->getCode() . "\t" . $e->getMessage();
|
|
|
|
|
Logger::log($pathLogErrorHttp, $message);
|
2024-08-21 14:51:01 +03:00
|
|
|
|
}
|
2024-08-16 15:00:37 +03:00
|
|
|
|
}
|