]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/Expire.php
Remove global $db variable
[friendica.git] / src / Worker / Expire.php
index 5d56308faf073cf5fa8815f4c027c3dbb0481d68..685fad49e8f64fc171946f3600203b26c5489d13 100644 (file)
@@ -15,9 +15,11 @@ use dba;
 
 require_once 'include/dba.php';
 
-class Expire {
-       public static function execute($param = '', $hook_name = '') {
-               global $a;
+class Expire
+{
+       public static function execute($param = '', $hook_name = '')
+       {
+               $a = \Friendica\BaseObject::getApp();
 
                require_once 'include/items.php';
 
@@ -39,12 +41,24 @@ class Expire {
                        }
                        dba::close($rows);
 
-                       logger('Delete expired items - done', LOGGER_DEBUG);
+                       // Normally we shouldn't have orphaned data at all.
+                       // If we do have some, then we have to check why.
+                       logger('Deleting orphaned item activities - start', LOGGER_DEBUG);
+                       $condition = ["NOT EXISTS (SELECT `iaid` FROM `item` WHERE `item`.`iaid` = `item-activity`.`id`)"];
+                       dba::delete('item-activity', $condition);
+                       logger('Orphaned item activities deleted: ' . dba::affected_rows(), LOGGER_DEBUG);
+
+                       logger('Deleting orphaned item content - start', LOGGER_DEBUG);
+                       $condition = ["NOT EXISTS (SELECT `icid` FROM `item` WHERE `item`.`icid` = `item-content`.`id`)"];
+                       dba::delete('item-content', $condition);
+                       logger('Orphaned item content deleted: ' . dba::affected_rows(), LOGGER_DEBUG);
 
                        // make this optional as it could have a performance impact on large sites
                        if (intval(Config::get('system', 'optimize_items'))) {
                                dba::e("OPTIMIZE TABLE `item`");
                        }
+
+                       logger('Delete expired items - done', LOGGER_DEBUG);
                        return;
                } elseif (intval($param) > 0) {
                        $user = dba::selectFirst('user', ['uid', 'username', 'expire'], ['uid' => $param]);