]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
adding a Status_network::updateKeys() method, since DB_DataObject update doesn't...
authorJames Walker <walkah@walkah.net>
Thu, 17 Jun 2010 17:44:17 +0000 (13:44 -0400)
committerJames Walker <walkah@walkah.net>
Thu, 17 Jun 2010 17:44:17 +0000 (13:44 -0400)
classes/Status_network.php

index 4a1f2c37475a4ef4a91ff26d7fd8260669387688..64016dd790c06233587ab8b80a651571fe75d80a 100644 (file)
@@ -144,6 +144,35 @@ class Status_network extends Safe_DataObject
         return parent::update($orig);
     }
 
+    /**
+     * DB_DataObject doesn't allow updating keys (even non-primary)
+     */
+    function updateKeys(&$orig)
+    {
+        $this->_connect();
+        foreach (array('hostname', 'pathname') as $k) {
+            if (strcmp($this->$k, $orig->$k) != 0) {
+                $parts[] = $k . ' = ' . $this->_quote($this->$k);
+            }
+        }
+        if (count($parts) == 0) {
+            // No changes
+            return true;
+        }
+
+        $toupdate = implode(', ', $parts);
+
+        $table = common_database_tablename($this->tableName());
+        $qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
+            ' WHERE nickname = ' . $this->_quote($this->nickname);
+        $orig->decache();
+        $result = $this->query($qry);
+        if ($result) {
+            $this->encache();
+        }
+        return $result;
+    }
+    
     function delete()
     {
         $this->decache(); # while we still have the values!