3 use \Friendica\Core\Config;
5 require_once("boot.php");
7 function expire_run(&$argv, &$argc){
15 @include(".htconfig.php");
16 require_once("include/dba.php");
17 $db = new dba($db_host, $db_user, $db_pass, $db_data);
18 unset($db_host, $db_user, $db_pass, $db_data);
21 require_once('include/session.php');
22 require_once('include/datetime.php');
23 require_once('include/items.php');
24 require_once('include/Contact.php');
28 $a->set_baseurl(get_config('system','url'));
31 // physically remove anything that has been deleted for more than two months
33 $r = q("delete from item where deleted = 1 and changed < UTC_TIMESTAMP() - INTERVAL 60 DAY");
35 // make this optional as it could have a performance impact on large sites
37 if(intval(get_config('system','optimize_items')))
38 q("optimize table item");
40 logger('expire: start');
42 $r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0");
43 if (dbm::is_result($r)) {
45 logger('Expire: ' . $rr['username'] . ' interval: ' . $rr['expire'], LOGGER_DEBUG);
46 item_expire($rr['uid'],$rr['expire']);
57 if (array_search(__file__,get_included_files())===0){
58 expire_run($_SERVER["argv"],$_SERVER["argc"]);