2011-03-16 01:31:49 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require_once("boot.php");
|
|
|
|
|
2012-11-05 09:28:54 +01:00
|
|
|
function expire_run(&$argv, &$argc){
|
2011-03-16 01:31:49 +01:00
|
|
|
global $a, $db;
|
|
|
|
|
|
|
|
if(is_null($a)) {
|
|
|
|
$a = new App;
|
|
|
|
}
|
2014-06-02 23:41:33 +02:00
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
if(is_null($db)) {
|
|
|
|
@include(".htconfig.php");
|
2012-12-28 22:51:50 +01:00
|
|
|
require_once("include/dba.php");
|
2011-03-16 01:31:49 +01:00
|
|
|
$db = new dba($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
unset($db_host, $db_user, $db_pass, $db_data);
|
|
|
|
};
|
|
|
|
|
2011-06-29 06:11:52 +02:00
|
|
|
require_once('include/session.php');
|
|
|
|
require_once('include/datetime.php');
|
|
|
|
require_once('library/simplepie/simplepie.inc');
|
2011-03-16 01:31:49 +01:00
|
|
|
require_once('include/items.php');
|
|
|
|
require_once('include/Contact.php');
|
|
|
|
|
2011-06-30 10:15:18 +02:00
|
|
|
load_config('config');
|
|
|
|
load_config('system');
|
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
$a->set_baseurl(get_config('system','url'));
|
|
|
|
|
|
|
|
|
2012-02-03 03:02:08 +01:00
|
|
|
// physically remove anything that has been deleted for more than two months
|
2012-01-31 00:13:24 +01:00
|
|
|
|
|
|
|
$r = q("delete from item where deleted = 1 and changed < UTC_TIMESTAMP() - INTERVAL 60 DAY");
|
2012-05-09 00:33:01 +02:00
|
|
|
|
|
|
|
// make this optional as it could have a performance impact on large sites
|
|
|
|
|
|
|
|
if(intval(get_config('system','optimize_items')))
|
|
|
|
q("optimize table item");
|
2012-01-31 00:13:24 +01:00
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
logger('expire: start');
|
2014-06-02 23:41:33 +02:00
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
$r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0");
|
|
|
|
if(count($r)) {
|
|
|
|
foreach($r as $rr) {
|
|
|
|
logger('Expire: ' . $rr['username'] . ' interval: ' . $rr['expire'], LOGGER_DEBUG);
|
|
|
|
item_expire($rr['uid'],$rr['expire']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-02 23:41:33 +02:00
|
|
|
load_hooks();
|
|
|
|
|
|
|
|
call_hooks('expire');
|
|
|
|
|
2011-03-16 01:31:49 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (array_search(__file__,get_included_files())===0){
|
2015-01-04 13:24:16 +01:00
|
|
|
expire_run($_SERVER["argv"],$_SERVER["argc"]);
|
2011-03-16 01:31:49 +01:00
|
|
|
killme();
|
|
|
|
}
|