]> git.mxchange.org Git - friendica.git/blob - include/cron.php
Merge pull request #3093 from annando/issue-3011
[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 require_once("include/photos.php");
15 require_once("include/user.php");
16
17
18 function cron_run(&$argv, &$argc){
19         global $a, $db;
20
21         if(is_null($a)) {
22                 $a = new App;
23         }
24
25         if(is_null($db)) {
26                 @include(".htconfig.php");
27                 require_once("include/dba.php");
28                 $db = new dba($db_host, $db_user, $db_pass, $db_data);
29                 unset($db_host, $db_user, $db_pass, $db_data);
30         };
31
32         require_once('include/session.php');
33         require_once('include/datetime.php');
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('mod/nodeinfo.php');
39         require_once('include/post_update.php');
40
41         load_config('config');
42         load_config('system');
43
44         // Don't check this stuff if the function is called by the poller
45         if (App::callstack() != "poller_run") {
46                 if ($a->maxload_reached())
47                         return;
48                 if (App::is_already_running('cron', 'include/cron.php', 540))
49                         return;
50         }
51
52         $last = get_config('system','last_cron');
53
54         $poll_interval = intval(get_config('system','cron_interval'));
55         if(! $poll_interval)
56                 $poll_interval = 10;
57
58         if($last) {
59                 $next = $last + ($poll_interval * 60);
60                 if($next > time()) {
61                         logger('cron intervall not reached');
62                         return;
63                 }
64         }
65
66         $a->set_baseurl(get_config('system','url'));
67
68         load_hooks();
69
70         logger('cron: start');
71
72         // run queue delivery process in the background
73
74         proc_run(PRIORITY_NEGLIGIBLE, "include/queue.php");
75
76         // run the process to discover global contacts in the background
77
78         proc_run(PRIORITY_LOW, "include/discover_poco.php");
79
80         // run the process to update locally stored global contacts in the background
81
82         proc_run(PRIORITY_LOW, "include/discover_poco.php", "checkcontact");
83
84         // Expire and remove user entries
85         cron_expire_and_remove_users();
86
87         // If the worker is active, split the jobs in several sub processes
88         if (get_config("system", "worker")) {
89                 // Check OStatus conversations
90                 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions");
91
92                 // Check every conversation
93                 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
94
95                 // Call possible post update functions
96                 proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
97
98                 // update nodeinfo data
99                 proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
100         } else {
101                 // Check OStatus conversations
102                 // Check only conversations with mentions (for a longer time)
103                 ostatus::check_conversations(true);
104
105                 // Check every conversation
106                 ostatus::check_conversations(false);
107
108                 // Call possible post update functions
109                 // see include/post_update.php for more details
110                 post_update();
111
112                 // update nodeinfo data
113                 nodeinfo_cron();
114         }
115
116         // once daily run birthday_updates and then expire in background
117
118         $d1 = get_config('system','last_expire_day');
119         $d2 = intval(datetime_convert('UTC','UTC','now','d'));
120
121         if($d2 != intval($d1)) {
122
123                 update_contact_birthdays();
124
125                 proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
126
127                 set_config('system','last_expire_day',$d2);
128
129                 proc_run(PRIORITY_LOW, 'include/expire.php');
130
131                 proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
132
133                 cron_update_photo_albums();
134         }
135
136         // Clear cache entries
137         cron_clear_cache($a);
138
139         // Repair missing Diaspora values in contacts
140         cron_repair_diaspora($a);
141
142         // Repair entries in the database
143         cron_repair_database();
144
145         // Poll contacts
146         cron_poll_contacts($argc, $argv);
147
148         logger('cron: end');
149
150         set_config('system','last_cron', time());
151
152         return;
153 }
154
155 /**
156  * @brief Update the cached values for the number of photo albums per user
157  */
158 function cron_update_photo_albums() {
159         $r = q("SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`");
160         if (!dbm::is_result($r)) {
161                 return;
162         }
163
164         foreach ($r AS $user) {
165                 photo_albums($user['uid'], true);
166         }
167 }
168
169 /**
170  * @brief Expire and remove user entries
171  */
172 function cron_expire_and_remove_users() {
173         // expire any expired accounts
174         q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
175                 AND `account_expires_on` != '0000-00-00 00:00:00'
176                 AND `account_expires_on` < UTC_TIMESTAMP() ");
177
178         // delete user and contact records for recently removed accounts
179         $r = q("SELECT * FROM `user` WHERE `account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
180         if ($r) {
181                 foreach($r as $user) {
182                         q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
183                         q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
184                 }
185         }
186 }
187
188 /**
189  * @brief Poll contacts for unreceived messages
190  *
191  * @param Integer $argc Number of command line arguments
192  * @param Array $argv Array of command line arguments
193  */
194 function cron_poll_contacts($argc, $argv) {
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_days = intval(get_config('system','account_abandon_days'));
234         if($abandon_days < 1)
235                 $abandon_days = 0;
236
237         $abandon_sql = (($abandon_days)
238                 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
239                 : ''
240         );
241
242         $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
243                 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
244                 $sql_extra
245                 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
246                 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
247                 intval(CONTACT_IS_SHARING),
248                 intval(CONTACT_IS_FRIEND),
249                 dbesc(NETWORK_DFRN),
250                 dbesc(NETWORK_ZOT),
251                 dbesc(NETWORK_OSTATUS),
252                 dbesc(NETWORK_FEED),
253                 dbesc(NETWORK_MAIL),
254                 dbesc(NETWORK_MAIL2)
255         );
256
257         if (!count($contacts)) {
258                 return;
259         }
260
261         foreach ($contacts as $c) {
262
263                 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
264                         intval($c['id'])
265                 );
266
267                 if (!dbm::is_result($res)) {
268                         continue;
269                 }
270
271                 foreach($res as $contact) {
272
273                         $xml = false;
274
275                         if($manual_id)
276                                 $contact['last-update'] = '0000-00-00 00:00:00';
277
278                         if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
279                                 $contact['priority'] = 2;
280
281                         if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
282                                 // We should be getting everything via a hub. But just to be sure, let's check once a day.
283                                 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
284                                 // This also lets us update our subscription to the hub, and add or replace hubs in case it
285                                 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
286
287                                 $poll_interval = get_config('system','pushpoll_frequency');
288                                 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
289                         }
290
291                         if($contact['priority'] AND !$force) {
292
293                                 $update     = false;
294
295                                 $t = $contact['last-update'];
296
297                                 /**
298                                  * Based on $contact['priority'], should we poll this site now? Or later?
299                                  */
300
301                                 switch ($contact['priority']) {
302                                         case 5:
303                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
304                                                         $update = true;
305                                                 break;
306                                         case 4:
307                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
308                                                         $update = true;
309                                                 break;
310                                         case 3:
311                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
312                                                         $update = true;
313                                                 break;
314                                         case 2:
315                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
316                                                         $update = true;
317                                                 break;
318                                         case 1:
319                                         default:
320                                                 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
321                                                         $update = true;
322                                                 break;
323                                 }
324                                 if (!$update)
325                                         continue;
326                         }
327
328                         logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
329
330                         if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
331                                 proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', $contact['id']);
332                         } else {
333                                 proc_run(PRIORITY_LOW, 'include/onepoll.php', $contact['id']);
334                         }
335
336                         if($interval)
337                                 @time_sleep_until(microtime(true) + (float) $interval);
338                 }
339         }
340 }
341
342 /**
343  * @brief Clear cache entries
344  *
345  * @param App $a
346  */
347 function cron_clear_cache(App $a) {
348
349         $last = get_config('system','cache_last_cleared');
350
351         if($last) {
352                 $next = $last + (3600); // Once per hour
353                 $clear_cache = ($next <= time());
354         } else
355                 $clear_cache = true;
356
357         if (!$clear_cache)
358                 return;
359
360         // clear old cache
361         Cache::clear();
362
363         // clear old item cache files
364         clear_cache();
365
366         // clear cache for photos
367         clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
368
369         // clear smarty cache
370         clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
371
372         // clear cache for image proxy
373         if (!get_config("system", "proxy_disabled")) {
374                 clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
375
376                 $cachetime = get_config('system','proxy_cache_time');
377                 if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
378
379                 q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
380         }
381
382         // Delete the cached OEmbed entries that are older than one year
383         q("DELETE FROM `oembed` WHERE `created` < NOW() - INTERVAL 3 MONTH");
384
385         // Delete the cached "parse_url" entries that are older than one year
386         q("DELETE FROM `parsed_url` WHERE `created` < NOW() - INTERVAL 3 MONTH");
387
388         // Maximum table size in megabyte
389         $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
390         if ($max_tablesize == 0)
391                 $max_tablesize = 100 * 1000000; // Default are 100 MB
392
393         if ($max_tablesize > 0) {
394                 // Minimum fragmentation level in percent
395                 $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
396                 if ($fragmentation_level == 0)
397                         $fragmentation_level = 0.3; // Default value is 30%
398
399                 // Optimize some tables that need to be optimized
400                 $r = q("SHOW TABLE STATUS");
401                 foreach($r as $table) {
402
403                         // Don't optimize tables that are too large
404                         if ($table["Data_length"] > $max_tablesize)
405                                 continue;
406
407                         // Don't optimize empty tables
408                         if ($table["Data_length"] == 0)
409                                 continue;
410
411                         // Calculate fragmentation
412                         $fragmentation = $table["Data_free"] / ($table["Data_length"] + $table["Index_length"]);
413
414                         logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
415
416                         // Don't optimize tables that needn't to be optimized
417                         if ($fragmentation < $fragmentation_level)
418                                 continue;
419
420                         // So optimize it
421                         logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
422                         q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
423                 }
424         }
425
426         set_config('system','cache_last_cleared', time());
427 }
428
429 /**
430  * @brief Repair missing values in Diaspora contacts
431  *
432  * @param App $a
433  */
434 function cron_repair_diaspora(App $a) {
435         $r = q("SELECT `id`, `url` FROM `contact`
436                 WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
437                         ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
438         if (dbm::is_result($r)) {
439                 foreach ($r AS $contact) {
440                         if (poco_reachable($contact["url"])) {
441                                 $data = probe_url($contact["url"]);
442                                 if ($data["network"] == NETWORK_DIASPORA) {
443                                         logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
444                                         q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
445                                                 dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
446                                                 intval($contact["id"]));
447                                 }
448                         }
449                 }
450         }
451 }
452
453 /**
454  * @brief Do some repairs in database entries
455  *
456  */
457 function cron_repair_database() {
458
459         // Sometimes there seem to be issues where the "self" contact vanishes.
460         // We haven't found the origin of the problem by now.
461         $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)");
462         if (dbm::is_result($r)) {
463                 foreach ($r AS $user) {
464                         logger('Create missing self contact for user '.$user['uid']);
465                         user_create_self_contact($user['uid']);
466                 }
467         }
468
469         // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
470         // This call is very "cheap" so we can do it at any time without a problem
471         q("UPDATE `item` INNER JOIN `item` AS `parent` ON `parent`.`uri` = `item`.`parent-uri` AND `parent`.`uid` = `item`.`uid` SET `item`.`parent` = `parent`.`id` WHERE `item`.`parent` = 0");
472
473         // There was an issue where the nick vanishes from the contact table
474         q("UPDATE `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` SET `nick` = `nickname` WHERE `self` AND `nick`=''");
475
476         // Update the global contacts for local users
477         $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
478         if (dbm::is_result($r))
479                 foreach ($r AS $user)
480                         update_gcontact_for_user($user["uid"]);
481
482         /// @todo
483         /// - remove thread entries without item
484         /// - remove sign entries without item
485         /// - remove children when parent got lost
486         /// - set contact-id in item when not present
487 }
488
489 if (array_search(__file__,get_included_files())===0){
490         cron_run($_SERVER["argv"],$_SERVER["argc"]);
491         killme();
492 }