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