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);
31 require_once('include/session.php');
32 require_once('include/datetime.php');
33 require_once('include/items.php');
34 require_once('include/Contact.php');
35 require_once('include/email.php');
36 require_once('include/socgraph.php');
37 require_once('include/pidfile.php');
38 require_once('mod/nodeinfo.php');
40 load_config('config');
41 load_config('system');
43 $maxsysload = intval(get_config('system','maxloadavg'));
47 $load = current_load();
49 if(intval($load) > $maxsysload) {
50 logger('system: load ' . $load . ' too high. cron deferred to next scheduled run.');
55 $last = get_config('system','last_cron');
57 $poll_interval = intval(get_config('system','cron_interval'));
62 $next = $last + ($poll_interval * 60);
64 logger('cron intervall not reached');
69 $lockpath = get_lockpath();
70 if ($lockpath != '') {
71 $pidfile = new pidfile($lockpath, 'cron');
72 if($pidfile->is_already_running()) {
73 logger("cron: Already running");
74 if ($pidfile->running_time() > 9*60) {
76 logger("cron: killed stale process");
77 // Calling a new instance
78 proc_run('php','include/cron.php');
86 $a->set_baseurl(get_config('system','url'));
90 logger('cron: start');
92 // run queue delivery process in the background
94 proc_run('php',"include/queue.php");
96 // run diaspora photo queue process in the background
98 proc_run('php',"include/dsprphotoq.php");
100 // run the process to discover global contacts in the background
102 proc_run('php',"include/discover_poco.php");
104 // run the process to update locally stored global contacts in the background
106 proc_run('php',"include/discover_poco.php", "checkcontact");
108 // expire any expired accounts
110 q("UPDATE user SET `account_expired` = 1 where `account_expired` = 0
111 AND `account_expires_on` != '0000-00-00 00:00:00'
112 AND `account_expires_on` < UTC_TIMESTAMP() ");
114 // delete user and contact records for recently removed accounts
116 $r = q("SELECT * FROM `user` WHERE `account_removed` = 1 AND `account_expires_on` < UTC_TIMESTAMP() - INTERVAL 3 DAY");
118 foreach($r as $user) {
119 q("DELETE FROM `contact` WHERE `uid` = %d", intval($user['uid']));
120 q("DELETE FROM `user` WHERE `uid` = %d", intval($user['uid']));
124 $abandon_days = intval(get_config('system','account_abandon_days'));
125 if($abandon_days < 1)
128 // Check OStatus conversations
129 // Check only conversations with mentions (for a longer time)
130 check_conversations(true);
132 // Check every conversation
133 check_conversations(false);
135 // Set the gcontact-id in the item table if missing
138 // update nodeinfo data
141 /// @TODO Regenerate usage statistics
142 // q("ANALYZE TABLE `item`");
144 // once daily run birthday_updates and then expire in background
146 $d1 = get_config('system','last_expire_day');
147 $d2 = intval(datetime_convert('UTC','UTC','now','d'));
149 if($d2 != intval($d1)) {
151 update_contact_birthdays();
153 proc_run('php',"include/discover_poco.php", "suggestions");
155 set_config('system','last_expire_day',$d2);
157 proc_run('php','include/expire.php');
160 // Clear cache entries
161 cron_clear_cache($a);
163 // Repair missing Diaspora values in contacts
164 cron_repair_diaspora($a);
166 // Repair entries in the database
167 cron_repair_database();
174 if(($argc > 1) && ($argv[1] == 'force'))
177 if(($argc > 1) && ($argv[1] == 'restart')) {
179 $generation = intval($argv[2]);
184 if(($argc > 1) && intval($argv[1])) {
185 $manual_id = intval($argv[1]);
189 $interval = intval(get_config('system','poll_interval'));
191 $interval = ((get_config('system','delivery_interval') === false) ? 3 : intval(get_config('system','delivery_interval')));
193 // If we are using the worker we don't need a delivery interval
194 if (get_config("system", "worker"))
197 $sql_extra = (($manual_id) ? " AND `id` = $manual_id " : "");
201 $d = datetime_convert();
203 // Only poll from those with suitable relationships,
204 // and which have a polling address and ignore Diaspora since
205 // we are unable to match those posts with a Diaspora GUID and prevent duplicates.
207 $abandon_sql = (($abandon_days)
208 ? sprintf(" AND `user`.`login_date` > UTC_TIMESTAMP() - INTERVAL %d DAY ", intval($abandon_days))
212 $contacts = q("SELECT `contact`.`id` FROM `contact` INNER JOIN `user` ON `user`.`uid` = `contact`.`uid`
213 WHERE `rel` IN (%d, %d) AND `poll` != '' AND `network` IN ('%s', '%s', '%s', '%s', '%s', '%s')
215 AND NOT `self` AND NOT `contact`.`blocked` AND NOT `contact`.`readonly` AND NOT `contact`.`archive`
216 AND NOT `user`.`account_expired` AND NOT `user`.`account_removed` $abandon_sql ORDER BY RAND()",
217 intval(CONTACT_IS_SHARING),
218 intval(CONTACT_IS_FRIEND),
221 dbesc(NETWORK_OSTATUS),
227 if(! count($contacts)) {
231 foreach($contacts as $c) {
233 $res = q("SELECT * FROM `contact` WHERE `id` = %d LIMIT 1",
237 if((! $res) || (! count($res)))
240 foreach($res as $contact) {
245 $contact['last-update'] = '0000-00-00 00:00:00';
247 if(in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS)))
248 $contact['priority'] = 2;
250 if($contact['subhub'] AND in_array($contact['network'], array(NETWORK_DFRN, NETWORK_ZOT, NETWORK_OSTATUS))) {
251 // We should be getting everything via a hub. But just to be sure, let's check once a day.
252 // (You can make this more or less frequent if desired by setting 'pushpoll_frequency' appropriately)
253 // This also lets us update our subscription to the hub, and add or replace hubs in case it
254 // changed. We will only update hubs once a day, regardless of 'pushpoll_frequency'.
256 $poll_interval = get_config('system','pushpoll_frequency');
257 $contact['priority'] = (($poll_interval !== false) ? intval($poll_interval) : 3);
260 if($contact['priority'] AND !$force) {
264 $t = $contact['last-update'];
267 * Based on $contact['priority'], should we poll this site now? Or later?
270 switch ($contact['priority']) {
272 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 month"))
276 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 week"))
280 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 day"))
284 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 12 hour"))
289 if(datetime_convert('UTC','UTC', 'now') > datetime_convert('UTC','UTC', $t . " + 1 hour"))
297 logger("Polling ".$contact["network"]." ".$contact["id"]." ".$contact["nick"]." ".$contact["name"]);
299 proc_run('php','include/onepoll.php',$contact['id']);
302 @time_sleep_until(microtime(true) + (float) $interval);
308 set_config('system','last_cron', time());
314 * @brief Clear cache entries
318 function cron_clear_cache(&$a) {
320 $last = get_config('system','cache_last_cleared');
323 $next = $last + (3600); // Once per hour
324 $clear_cache = ($next <= time());
334 // clear old item cache files
337 // clear cache for photos
338 clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
340 // clear smarty cache
341 clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
343 // clear cache for image proxy
344 if (!get_config("system", "proxy_disabled")) {
345 clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
347 $cachetime = get_config('system','proxy_cache_time');
348 if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
350 q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
353 // Delete the cached OEmbed entries that are older than one year
354 q("DELETE FROM `oembed` WHERE `created` < NOW() - INTERVAL 1 YEAR");
356 // Delete the cached "parse_url" entries that are older than one year
357 q("DELETE FROM `parsed_url` WHERE `created` < NOW() - INTERVAL 1 YEAR");
359 // Maximum table size in megabyte
360 $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
361 if ($max_tablesize == 0)
362 $max_tablesize = 100 * 1000000; // Default are 100 MB
364 // Minimum fragmentation level in percent
365 $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
366 if ($fragmentation_level == 0)
367 $fragmentation_level = 0.3; // Default value is 30%
369 // Optimize some tables that need to be optimized
370 $r = q("SHOW TABLE STATUS");
371 foreach($r as $table) {
373 // Don't optimize tables that are too large
374 if ($table["Data_length"] > $max_tablesize)
377 // Don't optimize empty tables
378 if ($table["Data_length"] == 0)
381 // Calculate fragmentation
382 $fragmentation = $table["Data_free"] / $table["Data_length"];
384 logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
386 // Don't optimize tables that needn't to be optimized
387 if ($fragmentation < $fragmentation_level)
391 logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
392 q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
395 set_config('system','cache_last_cleared', time());
399 * @brief Repair missing values in Diaspora contacts
403 function cron_repair_diaspora(&$a) {
404 $r = q("SELECT `id`, `url` FROM `contact`
405 WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
406 ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
408 foreach ($r AS $contact) {
409 if (poco_reachable($contact["url"])) {
410 $data = probe_url($contact["url"]);
411 if ($data["network"] == NETWORK_DIASPORA) {
412 logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
413 q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
414 dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
415 intval($contact["id"]));
423 * @brief Do some repairs in database entries
426 function cron_repair_database() {
428 // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
429 // This call is very "cheap" so we can do it at any time without a problem
430 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");
433 /// - remove thread entries without item
434 /// - remove sign entries without item
435 /// - remove children when parent got lost
436 /// - set contact-id in item when not present
439 if (array_search(__file__,get_included_files())===0){
440 cron_run($_SERVER["argv"],$_SERVER["argc"]);