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 require_once("boot.php");
16 function cron_run(&$argv, &$argc){
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);
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');
39 load_config('config');
40 load_config('system');
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())
46 if (App::is_already_running('cron', 'include/cron.php', 540))
50 $last = get_config('system','last_cron');
52 $poll_interval = intval(get_config('system','cron_interval'));
57 $next = $last + ($poll_interval * 60);
59 logger('cron intervall not reached');
64 $a->set_baseurl(get_config('system','url'));
68 logger('cron: start');
70 // run queue delivery process in the background
72 proc_run(PRIORITY_NEGLIGIBLE,"include/queue.php");
74 // run the process to discover global contacts in the background
76 proc_run(PRIORITY_LOW,"include/discover_poco.php");
78 // run the process to update locally stored global contacts in the background
80 proc_run(PRIORITY_LOW,"include/discover_poco.php", "checkcontact");
82 // Expire and remove user entries
83 cron_expire_and_remove_users();
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");
90 // Check every conversation
91 proc_run(PRIORITY_MEDIUM, "include/cronjobs.php", "ostatus_conversations");
93 // Call possible post update functions
94 proc_run(PRIORITY_LOW, "include/cronjobs.php", "post_update");
96 // update nodeinfo data
97 proc_run(PRIORITY_LOW, "include/cronjobs.php", "nodeinfo");
99 // Check OStatus conversations
100 // Check only conversations with mentions (for a longer time)
101 ostatus::check_conversations(true);
103 // Check every conversation
104 ostatus::check_conversations(false);
106 // Call possible post update functions
107 // see include/post_update.php for more details
110 // update nodeinfo data
114 // once daily run birthday_updates and then expire in background
116 $d1 = get_config('system','last_expire_day');
117 $d2 = intval(datetime_convert('UTC','UTC','now','d'));
119 if($d2 != intval($d1)) {
121 update_contact_birthdays();
123 proc_run(PRIORITY_LOW,"include/discover_poco.php", "suggestions");
125 set_config('system','last_expire_day',$d2);
127 proc_run(PRIORITY_LOW,'include/expire.php');
130 // Clear cache entries
131 cron_clear_cache($a);
133 // Repair missing Diaspora values in contacts
134 cron_repair_diaspora($a);
136 // Repair entries in the database
137 cron_repair_database();
140 cron_poll_contacts($argc, $argv);
144 set_config('system','last_cron', time());
150 * @brief Expire and remove user entries
152 function cron_expire_and_remove_users() {
153 // expire any expired accounts
154 q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
155 AND `account_expires_on` != '0000-00-00 00:00:00'
156 AND `account_expires_on` < UTC_TIMESTAMP() ");
158 // delete user and contact records for recently removed accounts
159 $r = q("SELECT * FROM `user` WHERE `account_removed` AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
161 foreach($r as $user) {
162 q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
163 q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
169 * @brief Poll contacts for unreceived messages
171 * @param Integer $argc Number of command line arguments
172 * @param Array $argv Array of command line arguments
174 function cron_poll_contacts($argc, $argv) {
180 if (($argc > 1) && ($argv[1] == 'force'))
183 if (($argc > 1) && ($argv[1] == 'restart')) {
185 $generation = intval($argv[2]);
190 if (($argc > 1) && intval($argv[1])) {
191 $manual_id = intval($argv[1]);
195 $interval = intval(get_config('system','poll_interval'));
197 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
199 // If we are using the worker we don't need a delivery interval
200 if (get_config("system", "worker"))
203 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
207 $d = datetime_convert();
209 // Only poll from those with suitable relationships,
210 // and which have a polling address and ignore Diaspora since
211 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
213 $abandon_days = intval(get_config('system','account_abandon_days'));
214 if($abandon_days < 1)
217 $abandon_sql = (($abandon_days)
218 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
222 $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
223 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
225 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
226 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
227 intval(CONTACT_IS_SHARING),
228 intval(CONTACT_IS_FRIEND),
231 dbesc(NETWORK_OSTATUS),
237 if (!count($contacts)) {
241 foreach ($contacts as $c) {
243 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
247 if((! $res) || (! count($res)))
250 foreach($res as $contact) {
255 $contact['last-update'] = '0000-00-00 00:00:00';
257 if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
258 $contact['priority'] = 2;
260 if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
261 // We should be getting everything via a hub. But just to be sure, let's check once a day.
262 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
263 // This also lets us update our subscription to the hub, and add or replace hubs in case it
264 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
266 $poll_interval = get_config('system','pushpoll_frequency');
267 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
270 if($contact['priority'] AND !$force) {
274 $t = $contact['last-update'];
277 * Based on $contact['priority'], should we poll this site now? Or later?
280 switch ($contact['priority']) {
282 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
286 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
290 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
294 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
299 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
307 logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
309 proc_run(PRIORITY_MEDIUM,'include/onepoll.php',$contact['id']);
312 @time_sleep_until(microtime(true) + (float) $interval);
318 * @brief Clear cache entries
322 function cron_clear_cache(&$a) {
324 $last = get_config('system','cache_last_cleared');
327 $next = $last + (3600); // Once per hour
328 $clear_cache = ($next <= time());
338 // clear old item cache files
341 // clear cache for photos
342 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
344 // clear smarty cache
345 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
347 // clear cache for image proxy
348 if (!get_config("system", "proxy_disabled")) {
349 clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
351 $cachetime = get_config('system','proxy_cache_time');
352 if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
354 q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
357 // Delete the cached OEmbed entries that are older than one year
358 q("DELETE FROM `oembed` WHERE `created` < NOW() - INTERVAL 1 YEAR");
360 // Delete the cached "parse_url" entries that are older than one year
361 q("DELETE FROM `parsed_url` WHERE `created` < NOW() - INTERVAL 1 YEAR");
363 // Maximum table size in megabyte
364 $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
365 if ($max_tablesize == 0)
366 $max_tablesize = 100 * 1000000; // Default are 100 MB
368 if ($max_tablesize > 0) {
369 // Minimum fragmentation level in percent
370 $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
371 if ($fragmentation_level == 0)
372 $fragmentation_level = 0.3; // Default value is 30%
374 // Optimize some tables that need to be optimized
375 $r = q("SHOW TABLE STATUS");
376 foreach($r as $table) {
378 // Don't optimize tables that are too large
379 if ($table["Data_length"] > $max_tablesize)
382 // Don't optimize empty tables
383 if ($table["Data_length"] == 0)
386 // Calculate fragmentation
387 $fragmentation = $table["Data_free"] / ($table["Data_length"] + $table["Index_length"]);
389 logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
391 // Don't optimize tables that needn't to be optimized
392 if ($fragmentation < $fragmentation_level)
396 logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
397 q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
401 set_config('system','cache_last_cleared', time());
405 * @brief Repair missing values in Diaspora contacts
409 function cron_repair_diaspora(&$a) {
410 $r = q("SELECT `id`, `url` FROM `contact`
411 WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
412 ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
414 foreach ($r AS $contact) {
415 if (poco_reachable($contact["url"])) {
416 $data = probe_url($contact["url"]);
417 if ($data["network"] == NETWORK_DIASPORA) {
418 logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
419 q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
420 dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
421 intval($contact["id"]));
429 * @brief Do some repairs in database entries
432 function cron_repair_database() {
434 // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
435 // This call is very "cheap" so we can do it at any time without a problem
436 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");
438 // There was an issue where the nick vanishes from the contact table
439 q("UPDATE `contact` INNER JOIN `user` ON `contact`.`uid` = `user`.`uid` SET `nick` = `nickname` WHERE `self` AND `nick`=''");
441 // Update the global contacts for local users
442 $r = q("SELECT `uid` FROM `user` WHERE `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`");
444 foreach ($r AS $user)
445 update_gcontact_for_user($user["uid"]);
448 /// - remove thread entries without item
449 /// - remove sign entries without item
450 /// - remove children when parent got lost
451 /// - set contact-id in item when not present
454 if (array_search(__file__,get_included_files())===0){
455 cron_run($_SERVER["argv"],$_SERVER["argc"]);