2 if (!file_exists("boot.php") AND (sizeof($_SERVER["argv"]) != 0)) {
3 $directory = dirname($_SERVER["argv"][0]);
5 if (substr($directory, 0, 1) != "/")
6 $directory = $_SERVER["PWD"]."/".$directory;
8 $directory = realpath($directory."/..");
13 use \Friendica\Core\Config;
15 require_once("boot.php");
16 require_once("include/photos.php");
17 require_once("include/user.php");
20 function cron_run(&$argv, &$argc){
28 @include(".htconfig.php");
29 require_once("include/dba.php");
30 $db = new dba($db_host, $db_user, $db_pass, $db_data);
31 unset($db_host, $db_user, $db_pass, $db_data);
34 require_once('include/session.php');
35 require_once('include/datetime.php');
36 require_once('include/items.php');
37 require_once('include/Contact.php');
38 require_once('include/email.php');
39 require_once('include/socgraph.php');
40 require_once('mod/nodeinfo.php');
41 require_once('include/post_update.php');
45 // Don't check this stuff if the function is called by the poller
46 if (App::callstack() != "poller_run") {
47 if ($a->maxload_reached())
49 if (App::is_already_running('cron', 'include/cron.php', 540))
53 $last = get_config('system','last_cron');
55 $poll_interval = intval(get_config('system','cron_interval'));
60 $next = $last + ($poll_interval * 60);
62 logger('cron intervall not reached');
67 $a->set_baseurl(get_config('system','url'));
71 logger('cron: start');
73 // run queue delivery process in the background
75 proc_run(PRIORITY_NEGLIGIBLE, "include/queue.php");
77 // run the process to discover global contacts in the background
79 proc_run(PRIORITY_LOW, "include/discover_poco.php");
81 // run the process to update locally stored global contacts in the background
83 proc_run(PRIORITY_LOW, "include/discover_poco.php", "checkcontact");
85 // Expire and remove user entries
86 cron_expire_and_remove_users();
88 // If the worker is active, split the jobs in several sub processes
89 if (get_config("system", "worker")) {
90 // Check OStatus conversations
91 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_mentions");
93 // Check every conversation
94 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
96 // Call possible post update functions
97 proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
99 // update nodeinfo data
100 proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
102 // Check OStatus conversations
103 // Check only conversations with mentions (for a longer time)
104 ostatus::check_conversations(true);
106 // Check every conversation
107 ostatus::check_conversations(false);
109 // Call possible post update functions
110 // see include/post_update.php for more details
113 // update nodeinfo data
117 // once daily run birthday_updates and then expire in background
119 $d1 = get_config('system','last_expire_day');
120 $d2 = intval(datetime_convert('UTC','UTC','now','d'));
122 if($d2 != intval($d1)) {
124 update_contact_birthdays();
126 proc_run(PRIORITY_LOW, "include/discover_poco.php", "suggestions");
128 set_config('system','last_expire_day',$d2);
130 proc_run(PRIORITY_LOW, 'include/expire.php');
132 proc_run(PRIORITY_MEDIUM, 'include/dbclean.php');
134 cron_update_photo_albums();
137 // Clear cache entries
138 cron_clear_cache($a);
140 // Repair missing Diaspora values in contacts
141 cron_repair_diaspora($a);
143 // Repair entries in the database
144 cron_repair_database();
147 cron_poll_contacts($argc, $argv);
151 set_config('system','last_cron', time());
157 * @brief Update the cached values for the number of photo albums per user
159 function cron_update_photo_albums() {
160 $r = q("SELECT `uid` FROM `user` WHERE NOT `account_expired` AND NOT `account_removed`");
161 if (!dbm::is_result($r)) {
165 foreach ($r AS $user) {
166 photo_albums($user['uid'], true);
171 * @brief Expire and remove user entries
173 function cron_expire_and_remove_users() {
174 // expire any expired accounts
175 q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
176 AND `account_expires_on` != '0000-00-00 00:00:00'
177 AND `account_expires_on` < UTC_TIMESTAMP() ");
179 // delete user and contact records for recently removed accounts
180 $r = q("SELECT * FROM `user` WHERE `account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
182 foreach($r as $user) {
183 q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
184 q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
190 * @brief Poll contacts for unreceived messages
192 * @param Integer $argc Number of command line arguments
193 * @param Array $argv Array of command line arguments
195 function cron_poll_contacts($argc, $argv) {
201 if (($argc > 1) && ($argv[1] == 'force'))
204 if (($argc > 1) && ($argv[1] == 'restart')) {
206 $generation = intval($argv[2]);
211 if (($argc > 1) && intval($argv[1])) {
212 $manual_id = intval($argv[1]);
216 $interval = intval(get_config('system','poll_interval'));
218 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
220 // If we are using the worker we don't need a delivery interval
221 if (get_config("system", "worker"))
224 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
228 $d = datetime_convert();
230 // Only poll from those with suitable relationships,
231 // and which have a polling address and ignore Diaspora since
232 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
234 $abandon_days = intval(get_config('system','account_abandon_days'));
235 if($abandon_days < 1)
238 $abandon_sql = (($abandon_days)
239 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
243 $contacts = q("SELECT `contact`.`id` FROM `user`
244 STRAIGHT_JOIN `contact`
245 ON `contact`.`uid` = `user`.`uid` AND `contact`.`rel` IN (%d, %d) AND `contact`.`poll` != ''
246 AND `contact`.`network` IN ('%s', '%s', '%s', '%s', '%s', '%s') $sql_extra
247 AND NOT `contact`.`self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly`
248 AND NOT `contact`.`archive`
249 WHERE NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
250 intval(CONTACT_IS_SHARING),
251 intval(CONTACT_IS_FRIEND),
254 dbesc(NETWORK_OSTATUS),
260 if (!count($contacts)) {
264 foreach ($contacts as $c) {
266 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
270 if (!dbm::is_result($res)) {
274 foreach($res as $contact) {
279 $contact['last-update'] = '0000-00-00 00:00:00';
281 if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
282 $contact['priority'] = 2;
284 if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
285 // We should be getting everything via a hub. But just to be sure, let's check once a day.
286 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
287 // This also lets us update our subscription to the hub, and add or replace hubs in case it
288 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
290 $poll_interval = get_config('system','pushpoll_frequency');
291 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
294 if($contact['priority'] AND !$force) {
298 $t = $contact['last-update'];
301 * Based on $contact['priority'], should we poll this site now? Or later?
304 switch ($contact['priority']) {
306 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
310 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
314 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
318 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
323 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
331 logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
333 if (($contact['network'] == NETWORK_FEED) AND ($contact['priority'] <= 3)) {
334 proc_run(PRIORITY_MEDIUM, 'include/onepoll.php', $contact['id']);
336 proc_run(PRIORITY_LOW, 'include/onepoll.php', $contact['id']);
340 @time_sleep_until(microtime(true) + (float) $interval);
346 * @brief Clear cache entries
350 function cron_clear_cache(App $a) {
352 $last = get_config('system','cache_last_cleared');
355 $next = $last + (3600); // Once per hour
356 $clear_cache = ($next <= time());
366 // clear old item cache files
369 // clear cache for photos
370 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
372 // clear smarty cache
373 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
375 // clear cache for image proxy
376 if (!get_config("system", "proxy_disabled")) {
377 clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
379 $cachetime = get_config('system','proxy_cache_time');
380 if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
382 q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
385 // Delete the cached OEmbed entries that are older than one year
386 q("DELETE FROM `oembed` WHERE `created` < NOW() - INTERVAL 3 MONTH");
388 // Delete the cached "parse_url" entries that are older than one year
389 q("DELETE FROM `parsed_url` WHERE `created` < NOW() - INTERVAL 3 MONTH");
391 // Maximum table size in megabyte
392 $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
393 if ($max_tablesize == 0)
394 $max_tablesize = 100 * 1000000; // Default are 100 MB
396 if ($max_tablesize > 0) {
397 // Minimum fragmentation level in percent
398 $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
399 if ($fragmentation_level == 0)
400 $fragmentation_level = 0.3; // Default value is 30%
402 // Optimize some tables that need to be optimized
403 $r = q("SHOW TABLE STATUS");
404 foreach($r as $table) {
406 // Don't optimize tables that are too large
407 if ($table["Data_length"] > $max_tablesize)
410 // Don't optimize empty tables
411 if ($table["Data_length"] == 0)
414 // Calculate fragmentation
415 $fragmentation = $table["Data_free"] / ($table["Data_length"] + $table["Index_length"]);
417 logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
419 // Don't optimize tables that needn't to be optimized
420 if ($fragmentation < $fragmentation_level)
424 logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
425 q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
429 set_config('system','cache_last_cleared', time());
433 * @brief Repair missing values in Diaspora contacts
437 function cron_repair_diaspora(App $a) {
438 $r = q("SELECT `id`, `url` FROM `contact`
439 WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
440 ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
441 if (dbm::is_result($r)) {
442 foreach ($r AS $contact) {
443 if (poco_reachable($contact["url"])) {
444 $data = probe_url($contact["url"]);
445 if ($data["network"] == NETWORK_DIASPORA) {
446 logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
447 q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
448 dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
449 intval($contact["id"]));
457 * @brief Do some repairs in database entries
460 function cron_repair_database() {
462 // Sometimes there seem to be issues where the "self" contact vanishes.
463 // We haven't found the origin of the problem by now.
464 $r = q("SELECT `uid` FROM `user` WHERE NOT EXISTS (SELECT `uid` FROM `contact` WHERE `contact`.`uid` = `user`.`uid` AND `contact`.`self`)");
465 if (dbm::is_result($r)) {
466 foreach ($r AS $user) {
467 logger('Create missing self contact for user '.$user['uid']);
468 user_create_self_contact($user['uid']);
472 // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
473 // This call is very "cheap" so we can do it at any time without a problem
474 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");
476 // There was an issue where the nick vanishes from the contact table
477 q("UPDATE `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` SET `nick` = `nickname` WHERE `self` AND `nick`=''");
479 // Update the global contacts for local users
480 $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
481 if (dbm::is_result($r))
482 foreach ($r AS $user)
483 update_gcontact_for_user($user["uid"]);
486 /// - remove thread entries without item
487 /// - remove sign entries without item
488 /// - remove children when parent got lost
489 /// - set contact-id in item when not present
492 if (array_search(__file__,get_included_files())===0){
493 cron_run($_SERVER["argv"],$_SERVER["argc"]);