]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Photo.php
Add storage backend manager class
[friendica.git] / src / Model / Photo.php
index 3c22c52bc1d06ee9a25a32a5db38bcad2477f2f6..4942381a4c15fbd2a434750d0d2dbd27d4e6dd17 100644 (file)
@@ -11,6 +11,7 @@ use Friendica\Core\Cache;
 use Friendica\Core\Config;
 use Friendica\Core\L10n;
 use Friendica\Core\System;
+use Friendica\Core\StorageManager;
 use Friendica\Database\DBA;
 use Friendica\Database\DBStructure;
 use Friendica\Object\Image;
@@ -66,6 +67,48 @@ class Photo extends BaseObject
                return DBA::selectFirst("photo", $fields, $conditions, $params);
        }
 
+       /**
+        * @brief Get photos for user id
+        *
+        * @param integer  $uid          User id
+        * @param string   $resourceid   Rescource ID of the photo
+        * @param array    $conditions   Array of fields for conditions
+        * @param array    $params       Array of several parameters
+        *
+        * @return bool|array
+        *
+        * @see \Friendica\Database\DBA::select
+        */
+       public static function getPhotosForUser($uid, $resourceid, array $conditions = [], array $params = [])
+       {
+               $conditions["resource-id"] = $resourceid;
+               $conditions["uid"] = $uid;
+
+               return self::select([], $conditions, $params);
+       }
+
+       /**
+        * @brief Get a photo for user id
+        *
+        * @param integer  $uid          User id
+        * @param string   $resourceid   Rescource ID of the photo
+        * @param integer  $scale        Scale of the photo. Defaults to 0
+        * @param array    $conditions   Array of fields for conditions
+        * @param array    $params       Array of several parameters
+        *
+        * @return bool|array
+        *
+        * @see \Friendica\Database\DBA::select
+        */
+       public static function getPhotoForUser($uid, $resourceid, $scale = 0, array $conditions = [], array $params = [])
+       {
+               $conditions["resource-id"] = $resourceid;
+               $conditions["uid"] = $uid;
+               $conditions["scale"] = $scale;
+
+               return self::selectFirst([], $conditions, $params);
+       }
+
        /**
         * @brief Get a single photo given resource id and scale
         *
@@ -73,7 +116,7 @@ class Photo extends BaseObject
         * on success, "no sign" image info, if user has no permission,
         * false if photo does not exists
         *
-        * @param string  $resourceid  Rescource ID for the photo
+        * @param string  $resourceid  Rescource ID of the photo
         * @param integer $scale       Scale of the photo. Defaults to 0
         *
         * @return boolean|array
@@ -125,7 +168,7 @@ class Photo extends BaseObject
                $data = "";
                if ($photo["backend-class"] == "") {
                        // legacy data storage in "data" column
-                       $i = self::selectFirst(["data"], ["id"=>$photo["id"]]);
+                       $i = self::selectFirst(["data"], ["id" => $photo["id"]]);
                        if ($i === false) {
                                return null;
                        }
@@ -168,7 +211,7 @@ class Photo extends BaseObject
                $fields = self::getFields();
                $values = array_fill(0, count($fields), "");
                $photo = array_combine($fields, $values);
-               $photo["backend-class"] = "\Friendica\Model\Storage\SystemResource";
+               $photo["backend-class"] = \Friendica\Model\Storage\SystemResource::class;
                $photo["backend-ref"] = $filename;
                $photo["type"] = $mimetype;
                $photo["cacheable"] = false;
@@ -179,19 +222,19 @@ class Photo extends BaseObject
        /**
         * @brief store photo metadata in db and binary in default backend
         *
-        * @param Image   $Image     image
-        * @param integer $uid       uid
-        * @param integer $cid       cid
-        * @param integer $rid       rid
-        * @param string  $filename  filename
-        * @param string  $album     album name
-        * @param integer $scale     scale
-        * @param integer $profile   optional, default = 0
-        * @param string  $allow_cid optional, default = ""
-        * @param string  $allow_gid optional, default = ""
-        * @param string  $deny_cid  optional, default = ""
-        * @param string  $deny_gid  optional, default = ""
-        * @param string  $desc      optional, default = ""
+        * @param Image   $Image     Image object with data
+        * @param integer $uid       User ID
+        * @param integer $cid       Contact ID
+        * @param integer $rid       Resource ID
+        * @param string  $filename  Filename
+        * @param string  $album     Album name
+        * @param integer $scale     Scale
+        * @param integer $profile   Is a profile image? optional, default = 0
+        * @param string  $allow_cid Permissions, allowed contacts. optional, default = ""
+        * @param string  $allow_gid Permissions, allowed groups. optional, default = ""
+        * @param string  $deny_cid  Permissions, denied contacts.optional, default = ""
+        * @param string  $deny_gid  Permissions, denied greoup.optional, default = ""
+        * @param string  $desc      Photo caption. optional, default = ""
         *
         * @return boolean True on success
         */
@@ -204,7 +247,11 @@ class Photo extends BaseObject
                        $guid = System::createGUID();
                }
 
-               $existing_photo = self::selectFirst(["id", "backend-class", "backend-ref"], ["resource-id" => $rid, "uid" => $uid, "contact-id" => $cid, "scale" => $scale]);
+               $existing_photo = self::selectFirst(["id", "created", "backend-class", "backend-ref"], ["resource-id" => $rid, "uid" => $uid, "contact-id" => $cid, "scale" => $scale]);
+               $created = DateTimeFormat::utcNow();
+               if (DBA::isResult($existing_photo)) {
+                       $created = $existing_photo["created"];
+               }
 
                // Get defined storage backend.
                // if no storage backend, we use old "data" column in photo table.
@@ -217,7 +264,7 @@ class Photo extends BaseObject
                        $backend_ref = (string)$existing_photo["backend-ref"];
                        $backend_class = (string)$existing_photo["backend-class"];
                } else {
-                       $backend_class = Config::get("storage", "class", "");
+                       $backend_class = StorageManager::getBackend();
                }
                if ($backend_class === "") {
                        $data = $Image->asString();
@@ -231,7 +278,7 @@ class Photo extends BaseObject
                        "contact-id" => $cid,
                        "guid" => $guid,
                        "resource-id" => $rid,
-                       "created" => DateTimeFormat::utcNow(),
+                       "created" => $created,
                        "edited" => DateTimeFormat::utcNow(),
                        "filename" => basename($filename),
                        "type" => $Image->getType(),
@@ -275,6 +322,39 @@ class Photo extends BaseObject
                return DBA::delete("photo", $conditions, $options);
        }
 
+       /**
+        * @brief Update a photo
+        *
+        * @param array         $fields     Contains the fields that are updated
+        * @param array         $conditions Condition array with the key values
+        * @param Image         $img        Image to update. Optional, default null.
+        * @param array|boolean $old_fields Array with the old field values that are about to be replaced (true = update on duplicate)
+        *
+        * @return boolean  Was the update successfull?
+        *
+        * @see \Friendica\Database\DBA::update
+        */
+       public static function update($fields, $conditions, Image $img = null, array $old_fields = [])
+       {
+               if (!is_null($img)) {
+                       // get photo to update
+                       $photos = self::select(["backend-class","backend-ref"], $conditions);
+
+                       foreach($photos as $photo) {
+                               $backend_class = (string)$photo["backend-class"];
+                               if ($backend_class !== "") {
+                                       $fields["backend-ref"] = $backend_class::put($img->asString(), $photo["backend-ref"]);
+                               } else {
+                                       $fields["data"] = $img->asString();
+                               }
+                       }
+               }
+
+               $fields['updated'] = DateTimeFormat::utcNow();
+
+               return DBA::update("photo", $fields, $conditions);
+       }
+
        /**
         * @param string  $image_url     Remote URL
         * @param integer $uid           user id
@@ -468,6 +548,6 @@ class Photo extends BaseObject
         */
        public static function newResource()
        {
-               return system::createGUID(32, false);
+               return System::createGUID(32, false);
        }
 }