]> git.mxchange.org Git - friendica.git/blobdiff - include/cron.php
DB Version was forgotten ...
[friendica.git] / include / cron.php
index d95d8bc601bfa7b19d7a5d89eaaa977c0c9e780a..3acf711dd163056234b822a1eb27f39387108a7b 100644 (file)
@@ -30,7 +30,6 @@ function cron_run(&$argv, &$argc){
 
        require_once('include/session.php');
        require_once('include/datetime.php');
-       require_once('library/simplepie/simplepie.inc');
        require_once('include/items.php');
        require_once('include/Contact.php');
        require_once('include/email.php');
@@ -44,10 +43,11 @@ function cron_run(&$argv, &$argc){
        $maxsysload = intval(get_config('system','maxloadavg'));
        if($maxsysload < 1)
                $maxsysload = 50;
-       if(function_exists('sys_getloadavg')) {
-               $load = sys_getloadavg();
-               if(intval($load[0]) > $maxsysload) {
-                       logger('system: load ' . $load[0] . ' too high. cron deferred to next scheduled run.');
+
+       $load = current_load();
+       if($load) {
+               if(intval($load) > $maxsysload) {
+                       logger('system: load ' . $load . ' too high. cron deferred to next scheduled run.');
                        return;
                }
        }
@@ -132,14 +132,13 @@ function cron_run(&$argv, &$argc){
        // Check every conversation
        check_conversations(false);
 
-       // Follow your friends from your legacy OStatus account
-       // Doesn't work
-       // ostatus_check_follow_friends();
+       // Set the gcontact-id in the item table if missing
+       item_set_gcontact();
 
        // update nodeinfo data
        nodeinfo_cron();
 
-       // To-Do: Regenerate usage statistics
+       /// @TODO Regenerate usage statistics
        // q("ANALYZE TABLE `item`");
 
        // once daily run birthday_updates and then expire in background
@@ -158,60 +157,14 @@ function cron_run(&$argv, &$argc){
                proc_run('php','include/expire.php');
        }
 
-       $last = get_config('system','cache_last_cleared');
-
-       if($last) {
-               $next = $last + (3600); // Once per hour
-               $clear_cache = ($next <= time());
-       } else
-               $clear_cache = true;
-
-       if ($clear_cache) {
-               // clear old cache
-               Cache::clear();
-
-               // clear old item cache files
-               clear_cache();
-
-               // clear cache for photos
-               clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
-
-               // clear smarty cache
-               clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
-
-               // clear cache for image proxy
-               if (!get_config("system", "proxy_disabled")) {
-                       clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
-
-                       $cachetime = get_config('system','proxy_cache_time');
-                       if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
-
-                       q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
-               }
-
-               // maximum table size in megabyte
-               $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
-               if ($max_tablesize == 0)
-                       $max_tablesize = 100 * 1000000; // Default are 100 MB
+       // Clear cache entries
+       cron_clear_cache($a);
 
-               // Optimize some tables that need to be optimized
-               $r = q("SHOW TABLE STATUS");
-               foreach($r as $table) {
+       // Repair missing Diaspora values in contacts
+       cron_repair_diaspora($a);
 
-                       // Don't optimize tables that needn't to be optimized
-                       if ($table["Data_free"] == 0)
-                               continue;
-
-                       // Don't optimize tables that are too large
-                       if ($table["Data_length"] > $max_tablesize)
-                               continue;
-
-                       // So optimize it
-                       q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
-               }
-
-               set_config('system','cache_last_cleared', time());
-       }
+       // Repair entries in the database
+       cron_repair_database();
 
        $manual_id  = 0;
        $generation = 0;
@@ -357,6 +310,132 @@ function cron_run(&$argv, &$argc){
        return;
 }
 
+/**
+ * @brief Clear cache entries
+ *
+ * @param App $a
+ */
+function cron_clear_cache(&$a) {
+
+       $last = get_config('system','cache_last_cleared');
+
+       if($last) {
+               $next = $last + (3600); // Once per hour
+               $clear_cache = ($next <= time());
+       } else
+               $clear_cache = true;
+
+       if (!$clear_cache)
+               return;
+
+       // clear old cache
+       Cache::clear();
+
+       // clear old item cache files
+       clear_cache();
+
+       // clear cache for photos
+       clear_cache($a->get_basepath(), $a->get_basepath()."/photo");
+
+       // clear smarty cache
+       clear_cache($a->get_basepath()."/view/smarty3/compiled", $a->get_basepath()."/view/smarty3/compiled");
+
+       // clear cache for image proxy
+       if (!get_config("system", "proxy_disabled")) {
+               clear_cache($a->get_basepath(), $a->get_basepath()."/proxy");
+
+               $cachetime = get_config('system','proxy_cache_time');
+               if (!$cachetime) $cachetime = PROXY_DEFAULT_TIME;
+
+               q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
+       }
+
+       // Delete the cached OEmbed entries that are older than one year
+       q("DELETE FROM `oembed` WHERE `created` < NOW() - INTERVAL 1 YEAR");
+
+       // Delete the cached "parse_url" entries that are older than one year
+       q("DELETE FROM `parsed_url` WHERE `created` < NOW() - INTERVAL 1 YEAR");
+
+       // Maximum table size in megabyte
+       $max_tablesize = intval(get_config('system','optimize_max_tablesize')) * 1000000;
+       if ($max_tablesize == 0)
+               $max_tablesize = 100 * 1000000; // Default are 100 MB
+
+       // Minimum fragmentation level in percent
+       $fragmentation_level = intval(get_config('system','optimize_fragmentation')) / 100;
+       if ($fragmentation_level == 0)
+               $fragmentation_level = 0.3; // Default value is 30%
+
+       // Optimize some tables that need to be optimized
+       $r = q("SHOW TABLE STATUS");
+       foreach($r as $table) {
+
+               // Don't optimize tables that are too large
+               if ($table["Data_length"] > $max_tablesize)
+                       continue;
+
+               // Don't optimize empty tables
+               if ($table["Data_length"] == 0)
+                       continue;
+
+               // Calculate fragmentation
+               $fragmentation = $table["Data_free"] / $table["Data_length"];
+
+               logger("Table ".$table["Name"]." - Fragmentation level: ".round($fragmentation * 100, 2), LOGGER_DEBUG);
+
+               // Don't optimize tables that needn't to be optimized
+               if ($fragmentation < $fragmentation_level)
+                       continue;
+
+               // So optimize it
+               logger("Optimize Table ".$table["Name"], LOGGER_DEBUG);
+               q("OPTIMIZE TABLE `%s`", dbesc($table["Name"]));
+       }
+
+       set_config('system','cache_last_cleared', time());
+}
+
+/**
+ * @brief Repair missing values in Diaspora contacts
+ *
+ * @param App $a
+ */
+function cron_repair_diaspora(&$a) {
+       $r = q("SELECT `id`, `url` FROM `contact`
+               WHERE `network` = '%s' AND (`batch` = '' OR `notify` = '' OR `poll` = '' OR pubkey = '')
+                       ORDER BY RAND() LIMIT 50", dbesc(NETWORK_DIASPORA));
+       if ($r) {
+               foreach ($r AS $contact) {
+                       if (poco_reachable($contact["url"])) {
+                               $data = probe_url($contact["url"]);
+                               if ($data["network"] == NETWORK_DIASPORA) {
+                                       logger("Repair contact ".$contact["id"]." ".$contact["url"], LOGGER_DEBUG);
+                                       q("UPDATE `contact` SET `batch` = '%s', `notify` = '%s', `poll` = '%s', pubkey = '%s' WHERE `id` = %d",
+                                               dbesc($data["batch"]), dbesc($data["notify"]), dbesc($data["poll"]), dbesc($data["pubkey"]),
+                                               intval($contact["id"]));
+                               }
+                       }
+               }
+       }
+}
+
+/**
+ * @brief Do some repairs in database entries
+ *
+ */
+function cron_repair_database() {
+
+       // Set the parent if it wasn't set. (Shouldn't happen - but does sometimes)
+       // This call is very "cheap" so we can do it at any time without a problem
+       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");
+
+       /// @todo
+       /// - remove thread entries without item
+       /// - remove sign entries without item
+       /// - remove children when parent got lost
+       /// - set contact-id in item when not present
+}
+
 if (array_search(__file__,get_included_files())===0){
        cron_run($_SERVER["argv"],$_SERVER["argc"]);
        killme();