]> git.mxchange.org Git - friendica.git/blob - include/expire.php
Added an option to configure the hostname manually. And there was a problem when...
[friendica.git] / include / expire.php
1 <?php
2
3 require_once("boot.php");
4
5 function expire_run(&$argv, &$argc){
6         global $a, $db;
7
8         if(is_null($a)) {
9                 $a = new App;
10         }
11   
12         if(is_null($db)) {
13             @include(".htconfig.php");
14         require_once("include/dba.php");
15             $db = new dba($db_host, $db_user, $db_pass, $db_data);
16         unset($db_host, $db_user, $db_pass, $db_data);
17         };
18
19         require_once('include/session.php');
20         require_once('include/datetime.php');
21         require_once('library/simplepie/simplepie.inc');
22         require_once('include/items.php');
23         require_once('include/Contact.php');
24
25         load_config('config');
26         load_config('system');
27
28         if ($hostname =  get_config('system', 'hostname'))
29                 $a->set_hostname($hostname);
30
31         $a->set_baseurl(get_config('system','url'));
32
33
34         // physically remove anything that has been deleted for more than two months
35
36         $r = q("delete from item where deleted = 1 and changed < UTC_TIMESTAMP() - INTERVAL 60 DAY");
37
38         // make this optional as it could have a performance impact on large sites
39
40         if(intval(get_config('system','optimize_items')))
41                 q("optimize table item");
42
43         logger('expire: start');
44         
45         $r = q("SELECT `uid`,`username`,`expire` FROM `user` WHERE `expire` != 0");
46         if(count($r)) {
47                 foreach($r as $rr) {
48                         logger('Expire: ' . $rr['username'] . ' interval: ' . $rr['expire'], LOGGER_DEBUG);
49                         item_expire($rr['uid'],$rr['expire']);
50                 }
51         }
52
53         return;
54 }
55
56 if (array_search(__file__,get_included_files())===0){
57   expire_run($argv,$argc);
58   killme();
59 }