mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 09:18:54 +00:00
78 lines
2.1 KiB
PHP
78 lines
2.1 KiB
PHP
<?php
|
|
require(dirname(__FILE__)."/config.php");
|
|
require_once(WWW_DIR."/lib/backfill.php");
|
|
require_once(WWW_DIR."/lib/framework/db.php");
|
|
$time = TIME();
|
|
|
|
//get variables from defaults.sh
|
|
$path = dirname(__FILE__);
|
|
$varnames = shell_exec("cat ".$path."/../defaults.sh | grep ^export | cut -d \= -f1 | awk '{print $2;}'");
|
|
$vardata = shell_exec("cat ".$path."/../defaults.sh | grep ^export | cut -d \\\" -f2 | awk '{print $1;}'");
|
|
$varnames = explode("\n", $varnames);
|
|
$vardata = explode("\n", $vardata);
|
|
$array = array_combine($varnames, $vardata);
|
|
unset($array['']);
|
|
|
|
$_date = $array['KEVIN_DATE'];
|
|
$_parts = $array['KEVIN_PARTS'];
|
|
|
|
$groupPost = $_parts;
|
|
if (isset($argv[1]))
|
|
{
|
|
$groupName = $argv[1];
|
|
echo "\n\n===>Starting kevin123's backfill process for ".$groupName."<===\n\n";
|
|
|
|
$db = new DB;
|
|
$query = $db->queryOneRow(sprintf("select name from groups WHERE (first_record_postdate BETWEEN '${_date}' and now()) and (name = '$groupName')")) or die(mysql_error());
|
|
if (isset($query))
|
|
{
|
|
$backfill = new Backfill();
|
|
$backfill->backfillPostAllGroups($groupName, $groupPost);
|
|
echo "\n===>Backfilling completed for ".$groupName."\n";
|
|
}
|
|
else
|
|
{
|
|
echo "\nAlready have the target post, skipping the ".$groupName."\n";
|
|
}
|
|
}
|
|
else
|
|
{
|
|
$groupName = '';
|
|
$backfill = new Backfill();
|
|
$backfill->backfillPostAllGroups($groupName, $groupPost);
|
|
}
|
|
|
|
function relativeTime($_time) {
|
|
$d[0] = array(1,"sec");
|
|
$d[1] = array(60,"min");
|
|
$d[2] = array(3600,"hr");
|
|
$d[3] = array(86400,"day");
|
|
$d[4] = array(31104000,"yr");
|
|
|
|
$w = array();
|
|
|
|
$return = "";
|
|
$now = TIME();
|
|
$diff = ($now-$_time);
|
|
$secondsLeft = $diff;
|
|
|
|
for($i=4;$i>-1;$i--)
|
|
{
|
|
$w[$i] = intval($secondsLeft/$d[$i][0]);
|
|
$secondsLeft -= ($w[$i]*$d[$i][0]);
|
|
if($w[$i]!=0)
|
|
{
|
|
//$return.= abs($w[$i]). " " . $d[$i][1] . (($w[$i]>1)?'s':'') ." ";
|
|
$return.= $w[$i]. " " . $d[$i][1] . (($w[$i]>1)?'s':'') ." ";
|
|
}
|
|
}
|
|
|
|
//$return .= ($diff>0)?"ago":"left";
|
|
return $return;
|
|
}
|
|
|
|
echo "\nKevin123's backfill parts process completed in: " .relativeTime($time);
|
|
|
|
?>
|
|
|