2020-11-29 01:55:31 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
include "config.inc.php";
|
|
|
|
include ("$file_newsportal");
|
|
|
|
|
|
|
|
$lockfile = sys_get_temp_dir() . '/'.$config_name.'-spoolnews.lock';
|
|
|
|
$pid = file_get_contents($lockfile);
|
|
|
|
if (posix_getsid($pid) === false || !is_file($lockfile)) {
|
|
|
|
print "Starting expire...\n";
|
|
|
|
file_put_contents($lockfile, getmypid()); // create lockfile
|
|
|
|
} else {
|
|
|
|
print "expire currently running\n";
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
$webserver_group=$CONFIG['webserver_user'];
|
|
|
|
$logfile=$logdir.'/expire.log';
|
2020-12-19 02:14:39 +01:00
|
|
|
|
|
|
|
$database = $spooldir.'/'.$config_name.'-overview.db3';
|
|
|
|
$table = 'overview';
|
|
|
|
$dbh = rslight_db_open($database, $table);
|
|
|
|
$query = $dbh->prepare('DELETE FROM '.$table.' WHERE newsgroup=:newsgroup AND number=:number');
|
2020-11-29 01:55:31 +01:00
|
|
|
|
|
|
|
$grouplist = file($config_dir.'/'.$config_name.'/groups.txt', FILE_IGNORE_NEW_LINES | FILE_SKIP_EMPTY_LINES);
|
|
|
|
foreach($grouplist as $groupline) {
|
2020-12-19 02:14:39 +01:00
|
|
|
$expireme = 0;
|
|
|
|
if($CONFIG['expire_days'] > 0) {
|
|
|
|
$expireme=time() - ($CONFIG['expire_days'] * 86400);
|
|
|
|
}
|
2020-11-29 01:55:31 +01:00
|
|
|
$groupname=explode(' ', $groupline);
|
|
|
|
$group=$groupname[0];
|
2020-12-19 02:14:39 +01:00
|
|
|
if($days = get_config_value('expire.conf', $group)) {
|
|
|
|
if($days > 0) {
|
|
|
|
$expireme = time() - ($days * 86400);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if($expireme < 1) {
|
|
|
|
continue;
|
|
|
|
}
|
2020-11-29 01:55:31 +01:00
|
|
|
$grouppath = preg_replace('/\./', '/', $group);
|
2020-12-19 02:14:39 +01:00
|
|
|
|
2020-11-29 01:55:31 +01:00
|
|
|
$this_overview=$spooldir.'/'.$group.'-overview';
|
|
|
|
$out_overview=$this_overview.'.new';
|
|
|
|
|
|
|
|
$overviewfp=fopen($this_overview, 'r');
|
|
|
|
$out_overviewfp=fopen($out_overview, 'w');
|
|
|
|
|
|
|
|
while($line=fgets($overviewfp)) {
|
|
|
|
$break=explode("\t", $line);
|
|
|
|
if(strtotime($break[3]) < $expireme) {
|
|
|
|
echo "Expiring: ".$break[4]." IN: ".$group." #".$break[0]."\r\n";
|
|
|
|
file_put_contents($logfile, "\n".format_log_date()." ".$config_name." Expiring: ".$break[4]." IN: ".$group." #".$break[0], FILE_APPEND);
|
|
|
|
unlink($spooldir.'/articles/'.$grouppath.'/'.$break[0]);
|
2020-12-19 02:14:39 +01:00
|
|
|
$query->execute([':newsgroup' => $group, ':number' => $break[0]]);
|
2020-11-29 01:55:31 +01:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
fputs($out_overviewfp, $line);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fclose($overviewfp);
|
|
|
|
fclose($out_overviewfp);
|
|
|
|
rename($out_overview, $this_overview);
|
|
|
|
chown($this_overview, $CONFIG['webserver_user']);
|
|
|
|
chgrp($this_overview, $webserver_group);
|
|
|
|
}
|
2020-12-19 02:14:39 +01:00
|
|
|
$dbh = null;
|
2020-11-29 01:55:31 +01:00
|
|
|
unlink($lockfile);
|
|
|
|
?>
|