mirror of https://github.com/YGGverse/YGGo.git
phpyggdrasilmysqlcrawlerjs-lessalt-websphinxspiderdistributedwebsearch-engineopen-sourcefederativeweb-archivepdocurlparserfts5privacy-orientedsphinxsearch
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
197 lines
7.0 KiB
197 lines
7.0 KiB
2 years ago
|
<?php
|
||
|
|
||
|
class MySQL {
|
||
|
|
||
|
private PDO $_db;
|
||
|
|
||
|
public function __construct(string $host, int $port, string $database, string $username, string $password) {
|
||
|
|
||
|
$this->_db = new PDO('mysql:dbname=' . $database . ';host=' . $host . ';port=' . $port . ';charset=utf8', $username, $password, [PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8']);
|
||
|
$this->_db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
|
||
|
$this->_db->setAttribute(PDO::ATTR_DEFAULT_FETCH_MODE, PDO::FETCH_OBJ);
|
||
|
$this->_db->setAttribute(PDO::ATTR_TIMEOUT, 600);
|
||
|
}
|
||
|
|
||
|
// System
|
||
|
public function beginTransaction() {
|
||
|
|
||
|
$this->_db->beginTransaction();
|
||
|
}
|
||
|
|
||
|
public function commit() {
|
||
|
|
||
|
$this->_db->commit();
|
||
|
}
|
||
|
|
||
|
public function rollBack() {
|
||
|
|
||
|
$this->_db->rollBack();
|
||
|
}
|
||
|
|
||
|
// Host
|
||
|
public function getHost(int $crc32url) {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT * FROM `host` WHERE `crc32url` = ? LIMIT 1');
|
||
|
|
||
|
$query->execute([$crc32url]);
|
||
|
|
||
|
return $query->fetch();
|
||
|
}
|
||
|
|
||
|
public function addHost(string $scheme, string $name, mixed $port, int $crc32url, int $timeAdded, mixed $timeUpdated, int $crawlPageLimit, string $crawlPageMetaOnly, string $status, mixed $robots) {
|
||
|
|
||
|
$query = $this->_db->prepare('INSERT INTO `host` (`scheme`, `name`, `port`, `crc32url`, `timeAdded`, `timeUpdated`, `crawlPageLimit`, `crawlPageMetaOnly`, `status`, `robots`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?)');
|
||
|
|
||
|
$query->execute([$scheme, $name, $port, $crc32url, $timeAdded, $timeUpdated, $crawlPageLimit, $crawlPageMetaOnly, $status, $robots]);
|
||
|
|
||
|
return $this->_db->lastInsertId();
|
||
|
}
|
||
|
|
||
|
// Pages
|
||
|
public function getTotalHostPages(int $hostId) {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT COUNT(*) AS `total` FROM `hostPage` WHERE `hostId` = ?');
|
||
|
|
||
|
$query->execute([$hostId]);
|
||
|
|
||
|
return $query->fetch()->total;
|
||
|
}
|
||
|
|
||
|
public function getTotalPagesByHttpCode(mixed $httpCode) {
|
||
|
|
||
|
if (is_null($httpCode)) {
|
||
|
|
||
|
$query = $this->_db->query('SELECT COUNT(*) AS `total` FROM `hostPage` WHERE `httpCode` IS NULL');
|
||
|
|
||
|
} else {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT COUNT(*) AS `total` FROM `hostPage` WHERE `httpCode` = ?');
|
||
|
|
||
|
$query->execute([$httpCode]);
|
||
|
|
||
|
}
|
||
|
|
||
|
return $query->fetch()->total;
|
||
|
}
|
||
|
|
||
|
public function getTotalPages() {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT COUNT(*) AS `total` FROM `hostPage`');
|
||
|
|
||
|
$query->execute();
|
||
|
|
||
|
return $query->fetch()->total;
|
||
|
}
|
||
|
|
||
|
public function getHostPage(int $hostId, int $crc32uri) {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT * FROM `hostPage` WHERE `hostId` = ? AND `crc32uri` = ? LIMIT 1');
|
||
|
|
||
|
$query->execute([$hostId, $crc32uri]);
|
||
|
|
||
|
return $query->fetch();
|
||
|
}
|
||
|
|
||
|
public function getFoundHostPage(int $hostPageId) {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT `hostPage`.`metaTitle`,
|
||
|
`hostPage`.`metaDescription`,
|
||
|
`hostPage`.`data`,
|
||
|
`hostPage`.`uri`,
|
||
|
`host`.`scheme`,
|
||
|
`host`.`name`,
|
||
|
`host`.`port`
|
||
|
|
||
|
FROM `hostPage`
|
||
|
JOIN `host` ON (`host`.`hostId` = `hostPage`.`hostId`)
|
||
|
|
||
|
WHERE `hostPage`.`hostPageId` = ?
|
||
|
|
||
|
LIMIT 1');
|
||
|
|
||
|
$query->execute([$hostPageId]);
|
||
|
|
||
|
return $query->fetch();
|
||
|
}
|
||
|
|
||
|
public function addHostPage(int $hostId,
|
||
|
int $crc32uri,
|
||
|
string $uri,
|
||
|
int $timeAdded,
|
||
|
mixed $timeUpdated = null,
|
||
|
mixed $httpCode = null,
|
||
|
mixed $rank = null,
|
||
|
mixed $metaTitle = null,
|
||
|
mixed $metaDescription = null,
|
||
|
mixed $metaKeywords = null,
|
||
|
mixed $data = null) {
|
||
|
|
||
|
$query = $this->_db->prepare('INSERT INTO `hostPage` (`hostId`,
|
||
|
`crc32uri`,
|
||
|
`uri`,
|
||
|
`timeAdded`,
|
||
|
`timeUpdated`,
|
||
|
`httpCode`,
|
||
|
`rank`,
|
||
|
`metaTitle`,
|
||
|
`metaDescription`,
|
||
|
`metaKeywords`,
|
||
|
`data`) VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)');
|
||
|
|
||
|
$query->execute([$hostId, $crc32uri, $uri, $timeAdded, $timeUpdated, $httpCode, $rank, $metaTitle, $metaDescription, $metaKeywords, $data]);
|
||
|
|
||
|
return $this->_db->lastInsertId();
|
||
|
}
|
||
|
|
||
|
public function updateHostPage( int $hostPageId,
|
||
|
mixed $metaTitle,
|
||
|
mixed $metaDescription,
|
||
|
mixed $metaKeywords,
|
||
|
mixed $data) {
|
||
|
|
||
|
$query = $this->_db->prepare('UPDATE `hostPage` SET `metaTitle` = ?,
|
||
|
`metaDescription` = ?,
|
||
|
`metaKeywords` = ?,
|
||
|
`data` = ? WHERE `hostPageId` = ? LIMIT 1');
|
||
|
|
||
|
$query->execute([$metaTitle, $metaDescription, $metaKeywords, $data, $hostPageId]);
|
||
|
|
||
|
return $query->rowCount();
|
||
|
}
|
||
|
|
||
|
// Crawl tools
|
||
|
public function getCrawlQueue(int $limit, int $timeFrom) {
|
||
|
|
||
|
$query = $this->_db->prepare('SELECT `hostPage`.`hostPageId`,
|
||
|
`hostPage`.`uri`,
|
||
|
`host`.`scheme`,
|
||
|
`host`.`name`,
|
||
|
`host`.`port`,
|
||
|
`host`.`crawlPageLimit`,
|
||
|
`host`.`crawlPageMetaOnly`,
|
||
|
`host`.`robots`
|
||
|
|
||
|
FROM `hostPage`
|
||
|
JOIN `host` ON (`host`.`hostId` = `hostPage`.`hostId`)
|
||
|
|
||
|
WHERE (`hostPage`.`timeUpdated` IS NULL OR `hostPage`.`timeUpdated` < ? ) AND `host`.`status` <> 0
|
||
|
|
||
|
ORDER BY `hostPage`.`hostPageId`
|
||
|
|
||
|
LIMIT ' . (int) $limit);
|
||
|
|
||
|
$query->execute([$timeFrom]);
|
||
|
|
||
|
return $query->fetchAll();
|
||
|
}
|
||
|
|
||
|
public function updateCrawlQueue(string $hostPageId, int $timeUpdated, int $httpCode) {
|
||
|
|
||
|
$query = $this->_db->prepare('UPDATE `hostPage` SET `timeUpdated` = ?, `httpCode` = ? WHERE `hostPageId` = ? LIMIT 1');
|
||
|
|
||
|
$query->execute([$timeUpdated, $httpCode, $hostPageId]);
|
||
|
|
||
|
return $query->rowCount();
|
||
|
}
|
||
|
}
|