mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 17:28:55 +00:00
99 lines
4.1 KiB
PHP
99 lines
4.1 KiB
PHP
<?php
|
|
require_once(dirname(__FILE__) . "/../../../bin/config.php");
|
|
|
|
use newznab\db\DB;
|
|
|
|
passthru('clear');
|
|
$pdo = new DB();
|
|
|
|
if (!isset($argv[1]) || (isset($argv[1]) && $argv[1] !== 'true'))
|
|
exit($pdo->log->error("\nThis script removes all releases and release related files. To run:\nphp resetdb.php true\n"));
|
|
|
|
echo $pdo->log->warning("This script removes all releases, nzb files, samples, previews , nfos, truncates all article tables and resets all groups.");
|
|
echo $pdo->log->header("Are you sure you want reset the DB? Type 'DESTROY' to continue: \n");
|
|
echo $pdo->log->warningOver("\n");
|
|
$line = fgets(STDIN);
|
|
if (trim($line) != 'DESTROY')
|
|
exit($pdo->log->error("This script is dangerous you must type DESTROY for it function."));
|
|
|
|
echo "\n";
|
|
echo $pdo->log->header("Thank you, continuing...\n\n");
|
|
|
|
$timestart = time();
|
|
$relcount = 0;
|
|
$ri = new \ReleaseImage($pdo);
|
|
$nzb = new \NZB($pdo);
|
|
$consoletools = new \ConsoleTools(['ColorCLI' => $pdo->log]);
|
|
|
|
$pdo->queryExec("UPDATE groups SET first_record = 0, first_record_postdate = NULL, last_record = 0, last_record_postdate = NULL, last_updated = NULL");
|
|
echo $pdo->log->primary("Reseting all groups completed.");
|
|
|
|
$arr = [
|
|
"tvrage", "releasenfo", "releasecomment", 'sharing', 'sharing_sites',
|
|
"usercart", "usermovies", "userseries", "movieinfo", "musicinfo", "releasefiles",
|
|
"releaseaudio", "releasesubs", "releasevideo", "releaseextrafull", "parts",
|
|
"partrepair", "binaries", "collections", "releases"
|
|
];
|
|
foreach ($arr as &$value) {
|
|
$rel = $pdo->queryExec("TRUNCATE TABLE $value");
|
|
if ($rel !== false)
|
|
echo $pdo->log->primary("Truncating ${value} completed.");
|
|
}
|
|
unset($value);
|
|
|
|
$sql = "SHOW table status";
|
|
|
|
$tables = $pdo->query($sql);
|
|
foreach ($tables as $row) {
|
|
$tbl = $row['name'];
|
|
if (preg_match('/binaries_\d+/', $tbl) || preg_match('/parts_\d+/', $tbl) || preg_match('/collections_\d+/', $tbl) || preg_match('/partrepair_\d+/', $tbl) || preg_match('/\d+_binaries/', $tbl) || preg_match('/\d+_collections/', $tbl) || preg_match('/\d+_parts/', $tbl) || preg_match('/\d+_partrepair_\d+/', $tbl)) {
|
|
$rel = $pdo->queryDirect(sprintf('DROP TABLE %s', $tbl));
|
|
if ($rel !== false)
|
|
echo $pdo->log->primary("Dropping ${tbl} completed.");
|
|
}
|
|
}
|
|
|
|
(new \SphinxSearch())->truncateRTIndex('releases_rt');
|
|
|
|
$pdo->optimise(false, 'full');
|
|
$s = new Sites();
|
|
$site = $s->get();
|
|
|
|
echo $pdo->log->header("Deleting nzbfiles subfolders.");
|
|
try {
|
|
$files = new \RecursiveIteratorIterator(new \RecursiveDirectoryIterator($site->nzbpath, \RecursiveDirectoryIterator::SKIP_DOTS), \RecursiveIteratorIterator::CHILD_FIRST);
|
|
foreach ($files as $file) {
|
|
if (basename($file) != '.gitignore' && basename($file) != 'tmpunrar') {
|
|
$todo = ($file->isDir() ? 'rmdir' : 'unlink');
|
|
@$todo($file);
|
|
}
|
|
}
|
|
} catch (UnexpectedValueException $e) {
|
|
echo $pdo->log->error($e->getMessage());
|
|
}
|
|
|
|
echo $pdo->log->header("Deleting all images, previews and samples that still remain.");
|
|
try {
|
|
$dirItr = new \RecursiveDirectoryIterator(NN_COVERS);
|
|
$itr = new \RecursiveIteratorIterator($dirItr, \RecursiveIteratorIterator::LEAVES_ONLY);
|
|
foreach ($itr as $filePath) {
|
|
if (basename($filePath) != '.gitignore' && basename($filePath) != 'no-cover.jpg' && basename($filePath) != 'no-backdrop.jpg') {
|
|
@unlink($filePath);
|
|
}
|
|
}
|
|
} catch (UnexpectedValueException $e) {
|
|
echo $pdo->log->error($e->getMessage());
|
|
}
|
|
|
|
echo $pdo->log->header("Getting Updated List of TV Shows from TVRage.");
|
|
$tvshows = @simplexml_load_file('http://services.tvrage.com/feeds/show_list.php');
|
|
if ($tvshows !== false) {
|
|
foreach ($tvshows->show as $rage) {
|
|
if (isset($rage->id) && isset($rage->name) && !empty($rage->id) && !empty($rage->name))
|
|
$pdo->queryInsert(sprintf('INSERT INTO tvrage (rageid, releasetitle, country) VALUES (%s, %s, %s)', $pdo->escapeString($rage->id), $pdo->escapeString($rage->name), $pdo->escapeString($rage->country)));
|
|
}
|
|
} else {
|
|
echo $pdo->log->error("TVRage site has a hard limit of 400 concurrent api requests. At the moment, they have reached that limit. Please wait before retrying again.");
|
|
}
|
|
|
|
echo $pdo->log->header("Deleted all releases, images, previews and samples. This script ran for " . $consoletools->convertTime(TIME() - $timestart)); |