]> git.mxchange.org Git - friendica.git/blob - include/cron.php
Merge pull request #2262 from annando/1601-http-timeouts
[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
48         $load = current_load();
49         if($load) {
50                 if(intval($load) > $maxsysload) {
51                         logger('system: load ' . $load . ' too high. cron deferred to next scheduled run.');
52                         return;
53                 }
54         }
55
56         $last = get_config('system','last_cron');
57
58         $poll_interval = intval(get_config('system','cron_interval'));
59         if(! $poll_interval)
60                 $poll_interval = 10;
61
62         if($last) {
63                 $next = $last + ($poll_interval * 60);
64                 if($next > time()) {
65                         logger('cron intervall not reached');
66                         return;
67                 }
68         }
69
70         $lockpath = get_lockpath();
71         if ($lockpath != '') {
72                 $pidfile = new pidfile($lockpath, 'cron');
73                 if($pidfile->is_already_running()) {
74                         logger("cron: Already running");
75                         if ($pidfile->running_time() > 9*60) {
76                                 $pidfile->kill();
77                                 logger("cron: killed stale process");
78                                 // Calling a new instance
79                                 proc_run('php','include/cron.php');
80                         }
81                         exit;
82                 }
83         }
84
85
86
87         $a->set_baseurl(get_config('system','url'));
88
89         load_hooks();
90
91         logger('cron: start');
92
93         // run queue delivery process in the background
94
95         proc_run('php',"include/queue.php");
96
97         // run diaspora photo queue process in the background
98
99         proc_run('php',"include/dsprphotoq.php");
100
101         // run the process to discover global contacts in the background
102
103         proc_run('php',"include/discover_poco.php");
104
105         // run the process to update locally stored global contacts in the background
106
107         proc_run('php',"include/discover_poco.php", "checkcontact");
108
109         // expire any expired accounts
110
111         q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
112                 AND `account_expires_on` != '0000-00-00 00:00:00'
113                 AND `account_expires_on` < UTC_TIMESTAMP() ");
114
115         // delete user and contact records for recently removed accounts
116
117         $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
118         if ($r) {
119                 foreach($r as $user) {
120                         q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
121                         q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
122                 }
123         }
124
125         $abandon_days = intval(get_config('system','account_abandon_days'));
126         if($abandon_days < 1)
127                 $abandon_days = 0;
128
129         // Check OStatus conversations
130         // Check only conversations with mentions (for a longer time)
131         check_conversations(true);
132
133         // Check every conversation
134         check_conversations(false);
135
136         // Set the gcontact-id in the item table if missing
137         item_set_gcontact();
138
139         // update nodeinfo data
140         nodeinfo_cron();
141
142         /// @TODO 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                 // Maximum table size in megabyte
193                 $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
194                 if ($max_tablesize == 0)
195                         $max_tablesize = 100 * 1000000; // Default are 100 MB
196
197                 // Minimum fragmentation level in percent
198                 $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
199                 if ($fragmentation_level == 0)
200                         $fragmentation_level = 0.3; // Default value is 30%
201
202                 // Optimize some tables that need to be optimized
203                 $r = q("SHOW TABLE STATUS");
204                 foreach($r as $table) {
205
206                         // Don't optimize tables that are too large
207                         if ($table["Data_length"] > $max_tablesize)
208                                 continue;
209
210                         // Don't optimize empty tables
211                         if ($table["Data_length"] == 0)
212                                 continue;
213
214                         // Calculate fragmentation
215                         $fragmentation = $table["Data_free"] / $table["Data_length"];
216
217                         logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
218
219                         // Don't optimize tables that needn't to be optimized
220                         if ($fragmentation < $fragmentation_level)
221                                 continue;
222
223                         // So optimize it
224                         logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
225                         q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
226                 }
227
228                 set_config('system','cache_last_cleared', time());
229         }
230
231         // Repair missing Diaspora settings
232         $r = q("SELECT `id`, `url` FROM `contact`
233                 WHERE `uid` > 0 AND `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
234                         ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
235         if ($r) {
236                 foreach ($r AS $contact) {
237                         if (poco_reachable($contact["url"])) {
238                                 $data = probe_url($contact["url"]);
239                                 if ($data["network"] == NETWORK_DIASPORA) {
240                                         logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
241                                         q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
242                                                 dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
243                                                 intval($contact["id"]));
244                                 }
245                         }
246                 }
247         }
248
249         $manual_id  = 0;
250         $generation = 0;
251         $force      = false;
252         $restart    = false;
253
254         if(($argc > 1) && ($argv[1] == 'force'))
255                 $force = true;
256
257         if(($argc > 1) && ($argv[1] == 'restart')) {
258                 $restart = true;
259                 $generation = intval($argv[2]);
260                 if(! $generation)
261                         killme();
262         }
263
264         if(($argc > 1) && intval($argv[1])) {
265                 $manual_id = intval($argv[1]);
266                 $force     = true;
267         }
268
269         $interval = intval(get_config('system','poll_interval'));
270         if(! $interval)
271                 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
272
273         // If we are using the worker we don't need a delivery interval
274         if (get_config("system", "worker"))
275                 $interval = false;
276
277         $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
278
279         reload_plugins();
280
281         $d = datetime_convert();
282
283         // Only poll from those with suitable relationships,
284         // and which have a polling address and ignore Diaspora since
285         // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
286
287         $abandon_sql = (($abandon_days)
288                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
289                 : ''
290         );
291
292         $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
293                 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
294                 $sql_extra
295                 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
296                 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
297                 intval(CONTACT_IS_SHARING),
298                 intval(CONTACT_IS_FRIEND),
299                 dbesc(NETWORK_DFRN),
300                 dbesc(NETWORK_ZOT),
301                 dbesc(NETWORK_OSTATUS),
302                 dbesc(NETWORK_FEED),
303                 dbesc(NETWORK_MAIL),
304                 dbesc(NETWORK_MAIL2)
305         );
306
307         if(! count($contacts)) {
308                 return;
309         }
310
311         foreach($contacts as $c) {
312
313                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
314                         intval($c['id'])
315                 );
316
317                 if((! $res) || (! count($res)))
318                         continue;
319
320                 foreach($res as $contact) {
321
322                         $xml = false;
323
324                         if($manual_id)
325                                 $contact['last-update'] = '0000-00-00 00:00:00';
326
327                         if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
328                                 $contact['priority'] = 2;
329
330                         if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
331                                 // We should be getting everything via a hub. But just to be sure, let's check once a day.
332                                 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
333                                 // This also lets us update our subscription to the hub, and add or replace hubs in case it
334                                 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
335
336                                 $poll_interval = get_config('system','pushpoll_frequency');
337                                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
338                         }
339
340                         if($contact['priority'] AND !$force) {
341
342                                 $update     = false;
343
344                                 $t = $contact['last-update'];
345
346                                 /**
347                                  * Based on $contact['priority'], should we poll this site now? Or later?
348                                  */
349
350                                 switch ($contact['priority']) {
351                                         case 5:
352                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
353                                                         $update = true;
354                                                 break;
355                                         case 4:
356                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
357                                                         $update = true;
358                                                 break;
359                                         case 3:
360                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
361                                                         $update = true;
362                                                 break;
363                                         case 2:
364                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
365                                                         $update = true;
366                                                 break;
367                                         case 1:
368                                         default:
369                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
370                                                         $update = true;
371                                                 break;
372                                 }
373                                 if(!$update)
374                                         continue;
375                         }
376
377                         logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
378
379                         proc_run('php','include/onepoll.php',$contact['id']);
380
381                         if($interval)
382                                 @time_sleep_until(microtime(true) + (float) $interval);
383                 }
384         }
385
386         logger('cron: end');
387
388         set_config('system','last_cron', time());
389
390         return;
391 }
392
393 if (array_search(__file__,get_included_files())===0){
394         cron_run($_SERVER["argv"],$_SERVER["argc"]);
395         killme();
396 }