]> git.mxchange.org Git - friendica.git/commitdiff
Prevent infinite loop when a dbstructure_definition hook is orphan
authorHypolite Petovan <mrpetovan@gmail.com>
Sun, 22 Apr 2018 00:34:07 +0000 (20:34 -0400)
committerHypolite Petovan <mrpetovan@gmail.com>
Sun, 22 Apr 2018 00:34:07 +0000 (20:34 -0400)
- Add cascade option to dba::delete
- use cascade = false for orphan hook deletion

include/dba.php
src/Core/Addon.php

index b24d9b409d00125ad7349848d822089a5e908aff..3209021cf2a1f1819408bfe0365b3cd04e4bef5f 100644 (file)
@@ -863,7 +863,7 @@ class dba {
         *
         * @return boolean|array was the delete successful? When $in_process is set: deletion data
         */
-       public static function delete($table, array $conditions, $in_process = false, array &$callstack = [])
+       public static function delete($table, array $conditions, array $options = [], $in_process = false, array &$callstack = [])
        {
                if (empty($table) || empty($conditions)) {
                        logger('Table and conditions have to be set');
@@ -886,8 +886,10 @@ class dba {
 
                $commands[$key] = ['table' => $table, 'conditions' => $conditions];
 
+               $cascade = defaults($options, 'cascade', true);
+
                // To speed up the whole process we cache the table relations
-               if (count(self::$relation) == 0) {
+               if ($cascade && count(self::$relation) == 0) {
                        self::buildRelationData();
                }
 
@@ -905,7 +907,7 @@ class dba {
                        if ((count($conditions) == 1) && ($field == array_keys($conditions)[0])) {
                                foreach ($rel_def AS $rel_table => $rel_fields) {
                                        foreach ($rel_fields AS $rel_field) {
-                                               $retval = self::delete($rel_table, [$rel_field => array_values($conditions)[0]], true, $callstack);
+                                               $retval = self::delete($rel_table, [$rel_field => array_values($conditions)[0]], $options, true, $callstack);
                                                $commands = array_merge($commands, $retval);
                                        }
                                }
@@ -919,7 +921,7 @@ class dba {
 
                                while ($row = self::fetch($data)) {
                                        // Now we accumulate the delete commands
-                                       $retval = self::delete($table, [$field => $row[$field]], true, $callstack);
+                                       $retval = self::delete($table, [$field => $row[$field]], $options, true, $callstack);
                                        $commands = array_merge($commands, $retval);
                                }
 
index a3bfeec32b34a9745b7acea18c8940b8675186d7..3adc7fc0ec284d0714fa96135a42c8e8ff161287 100644 (file)
@@ -246,7 +246,7 @@ class Addon
                } else {
                        // remove orphan hooks
                        $condition = ['hook' => $name, 'file' => $hook[0], 'function' => $hook[1]];
-                       dba::delete('hook', $condition);
+                       dba::delete('hook', $condition, ['cascade' => false]);
                }
        }