]> git.mxchange.org Git - friendica.git/blob - include/cron.php
scrape_dfrn now scrapes the address as well.
[friendica.git] / include / cron.php
1 <?php
2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3         $directory = dirname($_SERVER["argv"][0]);
4
5         if (substr($directory, 0, 1) != "/")
6                 $directory = $_SERVER["PWD"]."/".$directory;
7
8         $directory = realpath($directory."/..");
9
10         chdir($directory);
11 }
12
13 require_once("boot.php");
14
15
16 function cron_run(&$argv, &$argc){
17         global $a, $db;
18
19         if(is_null($a)) {
20                 $a = new App;
21         }
22
23         if(is_null($db)) {
24                 @include(".htconfig.php");
25                 require_once("include/dba.php");
26                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
27                 unset($db_host, $db_user, $db_pass, $db_data);
28         };
29
30
31         require_once('include/session.php');
32         require_once('include/datetime.php');
33         require_once('library/simplepie/simplepie.inc');
34         require_once('include/items.php');
35         require_once('include/Contact.php');
36         require_once('include/email.php');
37         require_once('include/socgraph.php');
38         require_once('include/pidfile.php');
39         require_once('mod/nodeinfo.php');
40
41         load_config('config');
42         load_config('system');
43
44         $maxsysload = intval(get_config('system','maxloadavg'));
45         if($maxsysload < 1)
46                 $maxsysload = 50;
47         if(function_exists('sys_getloadavg')) {
48                 $load = sys_getloadavg();
49                 if(intval($load[0]) > $maxsysload) {
50                         logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.');
51                         return;
52                 }
53         }
54
55         $last = get_config('system','last_cron');
56
57         $poll_interval = intval(get_config('system','cron_interval'));
58         if(! $poll_interval)
59                 $poll_interval = 10;
60
61         if($last) {
62                 $next = $last + ($poll_interval * 60);
63                 if($next > time()) {
64                         logger('cron intervall not reached');
65                         return;
66                 }
67         }
68
69         $lockpath = get_lockpath();
70         if ($lockpath != '') {
71                 $pidfile = new pidfile($lockpath, 'cron');
72                 if($pidfile->is_already_running()) {
73                         logger("cron: Already running");
74                         if ($pidfile->running_time() > 9*60) {
75                                 $pidfile->kill();
76                                 logger("cron: killed stale process");
77                                 // Calling a new instance
78                                 proc_run('php','include/cron.php');
79                         }
80                         exit;
81                 }
82         }
83
84
85
86         $a->set_baseurl(get_config('system','url'));
87
88         load_hooks();
89
90         logger('cron: start');
91
92         // run queue delivery process in the background
93
94         proc_run('php',"include/queue.php");
95
96         // run diaspora photo queue process in the background
97
98         proc_run('php',"include/dsprphotoq.php");
99
100         // run the process to discover global contacts in the background
101
102         proc_run('php',"include/discover_poco.php");
103
104         // run the process to update locally stored global contacts in the background
105
106         proc_run('php',"include/discover_poco.php", "checkcontact");
107
108         // expire any expired accounts
109
110         q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
111                 AND `account_expires_on` != '0000-00-00 00:00:00'
112                 AND `account_expires_on` < UTC_TIMESTAMP() ");
113
114         // delete user and contact records for recently removed accounts
115
116         $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
117         if ($r) {
118                 foreach($r as $user) {
119                         q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
120                         q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
121                 }
122         }
123
124         $abandon_days = intval(get_config('system','account_abandon_days'));
125         if($abandon_days < 1)
126                 $abandon_days = 0;
127
128         // Check OStatus conversations
129         // Check only conversations with mentions (for a longer time)
130         check_conversations(true);
131
132         // Check every conversation
133         check_conversations(false);
134
135         // Follow your friends from your legacy OStatus account
136         // Doesn't work
137         // ostatus_check_follow_friends();
138
139         // update nodeinfo data
140         nodeinfo_cron();
141
142         // To-Do: Regenerate usage statistics
143         // q("ANALYZE TABLE `item`");
144
145         // once daily run birthday_updates and then expire in background
146
147         $d1 = get_config('system','last_expire_day');
148         $d2 = intval(datetime_convert('UTC','UTC','now','d'));
149
150         if($d2 != intval($d1)) {
151
152                 update_contact_birthdays();
153
154                 proc_run('php',"include/discover_poco.php", "suggestions");
155
156                 set_config('system','last_expire_day',$d2);
157
158                 proc_run('php','include/expire.php');
159         }
160
161         $last = get_config('system','cache_last_cleared');
162
163         if($last) {
164                 $next = $last + (3600); // Once per hour
165                 $clear_cache = ($next <= time());
166         } else
167                 $clear_cache = true;
168
169         if ($clear_cache) {
170                 // clear old cache
171                 Cache::clear();
172
173                 // clear old item cache files
174                 clear_cache();
175
176                 // clear cache for photos
177                 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
178
179                 // clear smarty cache
180                 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
181
182                 // clear cache for image proxy
183                 if (!get_config("system", "proxy_disabled")) {
184                         clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
185
186                         $cachetime = get_config('system','proxy_cache_time');
187                         if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
188
189                         q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
190                 }
191
192                 set_config('system','cache_last_cleared', time());
193         }
194
195         $manual_id  = 0;
196         $generation = 0;
197         $force      = false;
198         $restart    = false;
199
200         if(($argc > 1) && ($argv[1] == 'force'))
201                 $force = true;
202
203         if(($argc > 1) && ($argv[1] == 'restart')) {
204                 $restart = true;
205                 $generation = intval($argv[2]);
206                 if(! $generation)
207                         killme();
208         }
209
210         if(($argc > 1) && intval($argv[1])) {
211                 $manual_id = intval($argv[1]);
212                 $force     = true;
213         }
214
215         $interval = intval(get_config('system','poll_interval'));
216         if(! $interval)
217                 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
218
219         // If we are using the worker we don't need a delivery interval
220         if (get_config("system", "worker"))
221                 $interval = false;
222
223         $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
224
225         reload_plugins();
226
227         $d = datetime_convert();
228
229         // Only poll from those with suitable relationships,
230         // and which have a polling address and ignore Diaspora since
231         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
232
233         $abandon_sql = (($abandon_days)
234                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
235                 : ''
236         );
237
238         $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
239                 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
240                 $sql_extra
241                 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
242                 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
243                 intval(CONTACT_IS_SHARING),
244                 intval(CONTACT_IS_FRIEND),
245                 dbesc(NETWORK_DFRN),
246                 dbesc(NETWORK_ZOT),
247                 dbesc(NETWORK_OSTATUS),
248                 dbesc(NETWORK_FEED),
249                 dbesc(NETWORK_MAIL),
250                 dbesc(NETWORK_MAIL2)
251         );
252
253         if(! count($contacts)) {
254                 return;
255         }
256
257         foreach($contacts as $c) {
258
259                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
260                         intval($c['id'])
261                 );
262
263                 if((! $res) || (! count($res)))
264                         continue;
265
266                 foreach($res as $contact) {
267
268                         $xml = false;
269
270                         if($manual_id)
271                                 $contact['last-update'] = '0000-00-00 00:00:00';
272
273                         if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
274                                 $contact['priority'] = 2;
275
276                         if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
277                                 // We should be getting everything via a hub. But just to be sure, let's check once a day.
278                                 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
279                                 // This also lets us update our subscription to the hub, and add or replace hubs in case it
280                                 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
281
282                                 $poll_interval = get_config('system','pushpoll_frequency');
283                                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
284                         }
285
286                         if($contact['priority'] AND !$force) {
287
288                                 $update     = false;
289
290                                 $t = $contact['last-update'];
291
292                                 /**
293                                  * Based on $contact['priority'], should we poll this site now? Or later?
294                                  */
295
296                                 switch ($contact['priority']) {
297                                         case 5:
298                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
299                                                         $update = true;
300                                                 break;
301                                         case 4:
302                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
303                                                         $update = true;
304                                                 break;
305                                         case 3:
306                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
307                                                         $update = true;
308                                                 break;
309                                         case 2:
310                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
311                                                         $update = true;
312                                                 break;
313                                         case 1:
314                                         default:
315                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
316                                                         $update = true;
317                                                 break;
318                                 }
319                                 if(!$update)
320                                         continue;
321                         }
322
323                         logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
324
325                         proc_run('php','include/onepoll.php',$contact['id']);
326
327                         if($interval)
328                                 @time_sleep_until(microtime(true) + (float) $interval);
329                 }
330         }
331
332         logger('cron: end');
333
334         set_config('system','last_cron', time());
335
336         return;
337 }
338
339 if (array_search(__file__,get_included_files())===0){
340         cron_run($_SERVER["argv"],$_SERVER["argc"]);
341         killme();
342 }