getHosts() as $host) { foreach ($db->getHostPages($host->hostId) as $hostPage) { foreach ($db->getHostPageSnaps($hostPage->hostPageId) as $hostPageSnap) { // Define variables $snapFilesExists = false; $snapPath = chunk_split($hostPage->hostPageId, 1, '/'); // Check file exists foreach (json_decode(SNAP_STORAGE) as $hostPageSnapStorageName => $storages) { foreach ($storages as $i => $storage) { // Generate storage id $crc32name = crc32(sprintf('%s.%s', $hostPageSnapStorageName, $i)); switch ($hostPageSnapStorageName) { case 'localhost': /* @TODO implemented, not tested $hostPageSnapFilename = $storage->directory . $snapPath . $hostPageSnap->timeAdded . '.zip'; if (file_exists($hostPageSnapFilename)) { $snapFilesExists = true; if (!$db->getHostPageSnapStorageByCRC32Name($hostPageSnap->hostPageSnapId, $crc32name)) { if ($db->addHostPageSnapStorage($hostPageSnap->hostPageSnapId, $crc32name, $hostPageSnap->timeAdded)) { CLI::warning(sprintf(_('register snap #%s file: %s storage: %s index: %s;'), $hostPageSnap->hostPageSnapId, $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } } else { CLI::success(sprintf(_('skip related snap #%s file: %s storage: %s index: %s;'), $hostPageSnap->hostPageSnapId, $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } } */ break; case 'ftp': $ftp = new Ftp(); if ($ftp->connect($storage->host, $storage->port, $storage->username, $storage->password, $storage->directory, $storage->timeout, $storage->passive)) { $hostPageSnapFilename = 'hp/' . $snapPath . $hostPageSnap->timeAdded . '.zip'; if ($ftp->size($hostPageSnapFilename)) { $snapFilesExists = true; if (!$db->getHostPageSnapStorageByCRC32Name($hostPageSnap->hostPageSnapId, $crc32name)) { if ($db->addHostPageSnapStorage($hostPageSnap->hostPageSnapId, $crc32name, $hostPageSnap->timeAdded)) { CLI::warning(sprintf(_('register snap #%s file: %s storage: %s index: %s;'), $hostPageSnap->hostPageSnapId, $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } } else { CLI::success(sprintf(_('skip related snap #%s file: %s storage: %s index: %s;'), $hostPageSnap->hostPageSnapId, $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } } // Prevent snap deletion from registry on FTP connection lost } else { CLI::danger(sprintf(_('could not connect to storage %s index %s. operation stopped to prevent the data lose.'), $hostPageSnapStorageName, $i)); CLI::break(); exit; } $ftp->close(); break; } } } // Files not exists if (!$snapFilesExists) { // Delete snap from registry try { $db->beginTransaction(); foreach ($db->getHostPageSnapStorages($hostPageSnap->hostPageSnapId) as $hostPageSnapStorage) { $db->deleteHostPageSnapDownloads($hostPageSnapStorage->hostPageSnapStorageId); } $db->deleteHostPageSnapStorages($hostPageSnap->hostPageSnapId); $db->deleteHostPageSnap($hostPageSnap->hostPageSnapId); CLI::warning(sprintf(_('delete snap index: #%s timestamp: %s as not found in file storages;'), $hostPageSnap->hostPageSnapId, $hostPageSnap->timeAdded)); $db->commit(); } catch(Exception $e) { $db->rollBack(); var_dump($e); } } } } } // Cleanup FS CLI::notice(_('scan storage for snap files missed in the DB...')); foreach (json_decode(SNAP_STORAGE) as $hostPageSnapStorageName => $storages) { foreach ($storages as $i => $storage) { switch ($hostPageSnapStorageName) { case 'localhost': // @TODO break; case 'ftp': $ftp = new Ftp(); if ($ftp->connect($storage->host, $storage->port, $storage->username, $storage->password, $storage->directory, $storage->timeout, $storage->passive)) { foreach ($ftp->nlistr($storage->directory) as $hostPageSnapFilename) { if (false !== preg_match(sprintf('!/hp/([\d/]+)/([\d]+)\.zip$!ui', $storage->directory), $hostPageSnapFilename, $matches)) { if (!empty($matches[1]) && // hostPageSnapId !empty($matches[2])) { // timeAdded if (!$db->findHostPageSnapByTimeAdded($matches[1], $matches[2])) { if ($ftp->delete($hostPageSnapFilename)) { CLI::warning(sprintf(_('delete snap file: #%s from storage %s index %s not found in registry;'), $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } else { CLI::danger(sprintf(_('delete snap file: #%s from storage %s index %s not found in registry;'), $hostPageSnapFilename, $hostPageSnapStorageName, $i)); } } } } } } $ftp->close(); break; } } } CLI::success(_('missed snap files successfully deleted!')); // Optimize DB tables CLI::notice(_('optimize database tables...')); $db->optimize(); CLI::success(_('tables successfully optimized!')); break; default: CLI::danger(_('undefined action argument!')); } break; case 'hostPage': if (empty($argv[2])) { CLI::danger(_('hostPage method requires action argument')); } switch ($argv[2]) { case 'rank': if (empty($argv[3])) { CLI::danger(_('hostPage rank requires action argument')); } switch ($argv[3]) { case 'reindex': foreach ($db->getHosts() as $host) { foreach ($db->getHostPages($host->hostId) as $hostPage) { $db->updateHostPageRank($hostPage->hostPageId, $db->getTotalExternalHostPageIdSourcesByHostPageIdTarget($hostPage->hostPageId)); // @TODO add library cover } } CLI::success(_('hostPage rank successfully updated')); exit; break; default: CLI::danger(_('undefined action argument')); } break; case 'truncate': $db->truncateHostPageDom(); CLI::success(_('hostPageDom table successfully truncated')); exit; break; default: CLI::danger(_('undefined action argument')); } break; case 'hostPageDom': if (empty($argv[2])) { CLI::danger(_('hostPageDom method requires action argument')); } switch ($argv[2]) { case 'generate': $selectors = []; foreach ((array) explode(';', !empty($argv[3]) ? $argv[3] : (string) CRAWL_HOST_PAGE_DOM_SELECTORS) as $selector) { if (!empty($selector)) { $selectors[] = trim($selector); } } if ($selectors) { // Init variables $hostPagesProcessedTotal = 0; $hostPageDOMAddedTotal = 0; // Begin selectors extraction foreach ($db->getHostPagesByIndexed() as $hostPage) { if (false !== stripos(Filter::mime($hostPage->mime), 'text/html')) { if ($hostPageDescription = $db->getLastPageDescription($hostPage->hostPageId)) { $hostPagesProcessedTotal++; if (!empty($hostPageDescription->data)) { $html = str_get_html(base64_decode($hostPageDescription->data)); foreach ($selectors as $selector) { foreach($html->find($selector) as $element) { if (!empty($element->innertext)) { $hostPageDOMAddedTotal++; $db->addHostPageDom($hostPage->hostPageId, time(), $selector, trim(CRAWL_HOST_PAGE_DOM_STRIP_TAGS ? strip_tags( preg_replace('/[\s]+/', ' ', str_replace(['
', '
', '
', 'innertext))) : $element->innertext)); } } } } } } } CLI::success(sprintf(_('Host pages processed: %s'), $hostPagesProcessedTotal)); CLI::success(sprintf(_('Host page DOM elements added: %s'), $hostPageDOMAddedTotal)); exit; } CLI::danger(_('CRAWL_HOST_PAGE_DOM_SELECTORS not provided in the configuration file')); exit; break; case 'truncate': $db->truncateHostPageDom(); CLI::success(_('hostPageDom table successfully truncated')); exit; break; default: CLI::danger(_('undefined action argument')); } break; } // Default message CLI::default('__ ______________ __'); CLI::default('\ \/ / ____/ ____/___ / /'); CLI::default(' \ / / __/ / __/ __ \/ /' ); CLI::default(' / / /_/ / /_/ / /_/ /_/' ); CLI::default('/_/\____/\____/\____(_)' ); CLI::break(); CLI::default('available options:'); CLI::default(' help - this message'); CLI::default(' crontab [crawl|clean] - execute crontab script queue'); CLI::default(' hostPage rank reindex - generate rank indexes in hostPage table'); CLI::default(' hostPageSnap repair - sync DB/FS relations'); CLI::default(' hostPageDom generate [selectors] - make hostPageDom index based on related hostPage.data field'); CLI::default(' hostPageDom truncate - flush hostPageDom table'); CLI::break(); CLI::default('get support: https://github.com/YGGverse/YGGo/issues'); CLI::break(); CLI::break();