]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
File_thumbnail uses file_id as PRI
authorMikael Nordfeldth <mmn@hethane.se>
Sun, 25 Jan 2015 12:13:01 +0000 (13:13 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Sun, 25 Jan 2015 12:13:01 +0000 (13:13 +0100)
classes/Managed_DataObject.php
plugins/Oembed/OembedPlugin.php

index a221f96633a0781e1ff5051299155040a8cc6eff..5ed0e525eab3ab63e36a33e56282a4115a7b2760 100644 (file)
@@ -323,7 +323,12 @@ abstract class Managed_DataObject extends Memcached_DataObject
 
     // 'update' won't write key columns, so we have to do it ourselves.
     // This also automatically calls "update" _before_ it sets the keys.
-    public function updateWithKeys(&$orig)
+    // FIXME: This only works with single-column primary keys so far! Beware!
+    /**
+     * @param DB_DataObject &$orig  Must be "instanceof" $this
+     * @param string         $pid   Primary ID column (no escaping is done on column name!)
+     */
+    public function updateWithKeys(&$orig, $pid='id')
     {
         if (!$orig instanceof $this) {
             throw new ServerException('Tried updating a DataObject with a different class than itself.');
@@ -346,14 +351,17 @@ abstract class Managed_DataObject extends Memcached_DataObject
                 $this->query('ROLLBACK');
                 throw new ServerException("Could not UPDATE non-keys for {$this->__table}");
             }
+            $orig->decache();
+            $this->encache();
             return true;
         }
-        $toupdate = implode(', ', $parts);
 
-        $table = common_database_tablename($this->tableName());
-        $qry = 'UPDATE ' . $table . ' SET ' . $toupdate .
-          ' WHERE id = ' . $this->getID();
-        $orig->decache();
+        $qry = sprintf('UPDATE %1$s SET %2$s WHERE %3$s = %4$s',
+                            common_database_tablename($this->tableName()),
+                            implode(', ', $parts),
+                            $pid,
+                            $this->_quote($this->$pid));
+
         $result = $this->query($qry);
         if ($result === false) {
             common_log_db_error($this, 'UPDATE', __FILE__);
@@ -371,6 +379,7 @@ abstract class Managed_DataObject extends Memcached_DataObject
             $this->query('ROLLBACK');
             throw new ServerException("Could not UPDATE non-keys for {$this->__table}");
         }
+        $orig->decache();
         $this->encache();
 
         // commit our db transaction
index 29c6f08dd28d6338d5a6ea9746142816b3d6f133..305dee614f923298cf0156308d8265a9408fdf49 100644 (file)
@@ -289,7 +289,7 @@ class OembedPlugin extends Plugin
         $thumbnail->width = $info[0];    // array indexes documented on php.net:
         $thumbnail->height = $info[1];   // https://php.net/manual/en/function.getimagesize.php
         // Throws exception on failure.
-        $thumbnail->updateWithKeys($orig);
+        $thumbnail->updateWithKeys($orig, 'file_id');
     }
 
     public function onPluginVersion(array &$versions)