]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Photo.php
Fix overly strict return value for revokeFollow methods
[friendica.git] / src / Model / Photo.php
index 26369a3540f0f4c5153188c1430f32547a92ed80..c30da19bd881eda5a26d01360c46aefc23574eda 100644 (file)
@@ -28,6 +28,9 @@ use Friendica\Database\DBA;
 use Friendica\Database\DBStructure;
 use Friendica\DI;
 use Friendica\Model\Storage\ExternalResource;
+use Friendica\Model\Storage\InvalidClassStorageException;
+use Friendica\Model\Storage\ReferenceStorageException;
+use Friendica\Model\Storage\StorageException;
 use Friendica\Model\Storage\SystemResource;
 use Friendica\Object\Image;
 use Friendica\Util\DateTimeFormat;
@@ -184,8 +187,6 @@ class Photo
         * @param array $photo Photo data. Needs at least 'id', 'type', 'backend-class', 'backend-ref'
         *
         * @return \Friendica\Object\Image
-        * @throws \Friendica\Network\HTTPException\InternalServerErrorException
-        * @throws \ImagickException
         */
        public static function getImageDataForPhoto(array $photo)
        {
@@ -193,19 +194,31 @@ class Photo
                        return $photo['data'];
                }
 
-               $backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
-               if (empty($backendClass)) {
-                       // legacy data storage in "data" column
-                       $i = self::selectFirst(['data'], ['id' => $photo['id']]);
-                       if ($i === false) {
-                               return null;
+               try {
+                       $backendClass = DI::storageManager()->getByName($photo['backend-class'] ?? '');
+                       /// @todo refactoring this returning, because the storage returns a "string" which is casted in different ways - a check "instanceof Image" will fail!
+                       return $backendClass->get($photo['backend-ref'] ?? '');
+               } catch (InvalidClassStorageException $storageException) {
+                       try {
+                               // legacy data storage in "data" column
+                               $i = self::selectFirst(['data'], ['id' => $photo['id']]);
+                               if ($i !== false) {
+                                       return $i['data'];
+                               } else {
+                                       DI::logger()->info('Stored legacy data is empty', ['photo' => $photo]);
+                               }
+                       } catch (\Exception $exception) {
+                               DI::logger()->info('Unexpected database exception', ['photo' => $photo, 'exception' => $exception]);
                        }
-                       $data = $i['data'];
-               } else {
-                       $backendRef = $photo['backend-ref'] ?? '';
-                       $data = $backendClass->get($backendRef);
+               } catch (ReferenceStorageException $referenceStorageException) {
+                       DI::logger()->debug('Invalid reference for photo', ['photo' => $photo, 'exception' => $referenceStorageException]);
+               } catch (StorageException $storageException) {
+                       DI::logger()->info('Unexpected storage exception', ['photo' => $photo, 'exception' => $storageException]);
+               } catch (\ImagickException $imagickException) {
+                       DI::logger()->info('Unexpected imagick exception', ['photo' => $photo, 'exception' => $imagickException]);
                }
-               return $data;
+
+               return null;
        }
 
        /**
@@ -217,14 +230,9 @@ class Photo
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         * @throws \ImagickException
         */
-       public static function getImageForPhoto(array $photo)
+       public static function getImageForPhoto(array $photo): Image
        {
-               $data = self::getImageDataForPhoto($photo);
-               if (empty($data)) {
-                       return null;
-               }
-
-               return new Image($data, $photo['type']);
+               return new Image(self::getImageDataForPhoto($photo), $photo['type']);
        }
 
        /**
@@ -334,20 +342,20 @@ class Photo
                // Get defined storage backend.
                // if no storage backend, we use old "data" column in photo table.
                // if is an existing photo, reuse same backend
-               $data = "";
+               $data        = "";
                $backend_ref = "";
+               $storage     = "";
 
-               if (DBA::isResult($existing_photo)) {
-                       $backend_ref = (string)$existing_photo["backend-ref"];
-                       $storage = DI::storageManager()->getByName($existing_photo["backend-class"] ?? '');
-               } else {
-                       $storage = DI::storage();
-               }
-
-               if (empty($storage)) {
-                       $data = $Image->asString();
-               } else {
+               try {
+                       if (DBA::isResult($existing_photo)) {
+                               $backend_ref = (string)$existing_photo["backend-ref"];
+                               $storage     = DI::storageManager()->getWritableStorageByName($existing_photo["backend-class"] ?? '');
+                       } else {
+                               $storage = DI::storage();
+                       }
                        $backend_ref = $storage->put($Image->asString(), $backend_ref);
+               } catch (InvalidClassStorageException $storageException) {
+                       $data = $Image->asString();
                }
 
                $fields = [
@@ -403,12 +411,15 @@ class Photo
                $photos = DBA::select('photo', ['id', 'backend-class', 'backend-ref'], $conditions);
 
                while ($photo = DBA::fetch($photos)) {
-                       $backend_class = DI::storageManager()->getByName($photo['backend-class'] ?? '');
-                       if (!empty($backend_class)) {
-                               if ($backend_class->delete($photo["backend-ref"] ?? '')) {
-                                       // Delete the photos after they had been deleted successfully
-                                       DBA::delete("photo", ['id' => $photo['id']]);
-                               }
+                       try {
+                               $backend_class = DI::storageManager()->getWritableStorageByName($photo['backend-class'] ?? '');
+                               $backend_class->delete($photo['backend-ref'] ?? '');
+                               // Delete the photos after they had been deleted successfully
+                               DBA::delete("photo", ['id' => $photo['id']]);
+                       } catch (InvalidClassStorageException $storageException) {
+                               DI::logger()->debug('Storage class not found.', ['conditions' => $conditions, 'exception' => $storageException]);
+                       } catch (ReferenceStorageException $referenceStorageException) {
+                               DI::logger()->debug('Photo doesn\'t exist.', ['conditions' => $conditions, 'exception' => $referenceStorageException]);
                        }
                }
 
@@ -437,10 +448,10 @@ class Photo
                        $photos = self::selectToArray(['backend-class', 'backend-ref'], $conditions);
 
                        foreach($photos as $photo) {
-                               $backend_class = DI::storageManager()->getByName($photo['backend-class'] ?? '');
-                               if (!empty($backend_class)) {
+                               try {
+                                       $backend_class         = DI::storageManager()->getWritableStorageByName($photo['backend-class'] ?? '');
                                        $fields["backend-ref"] = $backend_class->put($img->asString(), $photo['backend-ref']);
-                               } else {
+                               } catch (InvalidClassStorageException $storageException) {
                                        $fields["data"] = $img->asString();
                                }
                        }
@@ -479,11 +490,12 @@ class Photo
 
                $filename = basename($image_url);
                if (!empty($image_url)) {
-                       $ret = DI::httpRequest()->get($image_url);
+                       $ret = DI::httpClient()->get($image_url);
                        $img_str = $ret->getBody();
                        $type = $ret->getContentType();
                } else {
                        $img_str = '';
+                       $type = '';
                }
 
                if ($quit_on_error && ($img_str == "")) {
@@ -639,23 +651,23 @@ class Photo
                        if (!DI::config()->get("system", "no_count", false)) {
                                /// @todo This query needs to be renewed. It is really slow
                                // At this time we just store the data in the cache
-                               $albums = q("SELECT COUNT(DISTINCT `resource-id`) AS `total`, `album`, ANY_VALUE(`created`) AS `created`
+                               $albums = DBA::toArray(DBA::p("SELECT COUNT(DISTINCT `resource-id`) AS `total`, `album`, ANY_VALUE(`created`) AS `created`
                                        FROM `photo`
-                                       WHERE `uid` = %d  AND `album` != '%s' AND `album` != '%s' $sql_extra
+                                       WHERE `uid` = ? AND NOT `album` IN (?, ?) $sql_extra
                                        GROUP BY `album` ORDER BY `created` DESC",
-                                       intval($uid),
-                                       DBA::escape(self::CONTACT_PHOTOS),
-                                       DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS))
-                               );
+                                       $uid,
+                                       self::CONTACT_PHOTOS,
+                                       DI::l10n()->t(self::CONTACT_PHOTOS)
+                               ));
                        } else {
                                // This query doesn't do the count and is much faster
-                               $albums = q("SELECT DISTINCT(`album`), '' AS `total`
+                               $albums = DBA::toArray(DBA::p("SELECT DISTINCT(`album`), '' AS `total`
                                        FROM `photo` USE INDEX (`uid_album_scale_created`)
-                                       WHERE `uid` = %d  AND `album` != '%s' AND `album` != '%s' $sql_extra",
-                                       intval($uid),
-                                       DBA::escape(self::CONTACT_PHOTOS),
-                                       DBA::escape(DI::l10n()->t(self::CONTACT_PHOTOS))
-                               );
+                                       WHERE `uid` = ? AND NOT `album` IN (?, ?) $sql_extra",
+                                       $uid,
+                                       self::CONTACT_PHOTOS,
+                                       DI::l10n()->t(self::CONTACT_PHOTOS)
+                               ));
                        }
                        DI::cache()->set($key, $albums, Duration::DAY);
                }
@@ -787,22 +799,6 @@ class Photo
                Photo::update($fields, $condition);
        }
 
-       /**
-        * Strips known picture extensions from picture links
-        *
-        * @param string $name Picture link
-        * @return string stripped picture link
-        * @throws \Exception
-        */
-       public static function stripExtension($name)
-       {
-               $name = str_replace([".jpg", ".png", ".gif"], ["", "", ""], $name);
-               foreach (Images::supportedTypes() as $m => $e) {
-                       $name = str_replace("." . $e, "", $name);
-               }
-               return $name;
-       }
-
        /**
         * Fetch the guid and scale from picture links
         *
@@ -819,7 +815,7 @@ class Photo
                        return [];
                }
 
-               $guid = self::stripExtension($guid);
+               $guid = pathinfo($guid, PATHINFO_FILENAME);
                if (substr($guid, -2, 1) != "-") {
                        return [];
                }