]> git.mxchange.org Git - friendica.git/commitdiff
Improved variable naming
authorMichael <heluecht@pirati.ca>
Tue, 9 May 2023 06:32:16 +0000 (06:32 +0000)
committerMichael <heluecht@pirati.ca>
Tue, 9 May 2023 06:32:16 +0000 (06:32 +0000)
src/Model/Photo.php
src/Module/Media/Photo/Upload.php
src/Module/Profile/Photos.php

index 0df45af22e3d3ab582517d07f88925f92a91c77c..74031a822e0341c8e83c31a7318f56aa6e406cf1 100644 (file)
@@ -1192,8 +1192,8 @@ class Photo
                        $allow_gid = '';
                }
 
-               $smallest = self::storeWithPreview($image, $user['uid'], $resource_id, $filename, $filesize, $album, $desc, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
-               if ($smallest < 0) {
+               $preview = self::storeWithPreview($image, $user['uid'], $resource_id, $filename, $filesize, $album, $desc, $allow_cid, $allow_gid, $deny_cid, $deny_gid);
+               if ($preview < 0) {
                        Logger::warning('Photo could not be stored', ['uid' => $user['uid'], 'resource_id' => $resource_id, 'filename' => $filename, 'album' => $album]);
                        return [];
                }
@@ -1215,7 +1215,7 @@ class Photo
                $picture['type']        = $photo['type'];
                $picture['albumpage']   = DI::baseUrl() . '/photos/' . $user['nickname'] . '/image/' . $resource_id;
                $picture['picture']     = DI::baseUrl() . '/photo/' . $resource_id . '-0.' . $image->getExt();
-               $picture['preview']     = DI::baseUrl() . '/photo/' . $resource_id . '-' . $smallest . '.' . $image->getExt();
+               $picture['preview']     = DI::baseUrl() . '/photo/' . $resource_id . '-' . $preview . '.' . $image->getExt();
 
                Logger::info('upload done', ['picture' => $picture]);
                return $picture;
@@ -1236,7 +1236,7 @@ class Photo
         * @param string  $deny_cid    Permissions, denied contacts
         * @param string  $deny_gid    Permissions, denied group
         *
-        * @return boolean True on success
+        * @return integer preview photo size
         * @throws \Friendica\Network\HTTPException\InternalServerErrorException
         */
        public static function storeWithPreview(Image $image, int $uid, string $resource_id, string $filename, int $filesize, string $album, string $description, string $allow_cid, string $allow_gid, string $deny_cid, string $deny_gid): int
@@ -1268,9 +1268,9 @@ class Photo
                        }
                }
 
-               $width    = $image->getWidth();
-               $height   = $image->getHeight();
-               $smallest = 0;
+               $width   = $image->getWidth();
+               $height  = $image->getHeight();
+               $preview = 0;
 
                $result = self::store($image, $uid, 0, $resource_id, $filename, $album, 0, self::DEFAULT, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $description);
                if (!$result) {
@@ -1285,15 +1285,15 @@ class Photo
                if ($width > 320 || $height > 320) {
                        $result = self::store($image, $uid, 0, $resource_id, $filename, $album, 1, self::DEFAULT, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $description);
                        if ($result) {
-                               $smallest = 1;
+                               $preview = 1;
                        }
                        $image->scaleDown(320);
                        $result = self::store($image, $uid, 0, $resource_id, $filename, $album, 2, self::DEFAULT, $allow_cid, $allow_gid, $deny_cid, $deny_gid, $description);
-                       if ($result && ($smallest == 0)) {
-                               $smallest = 2;
+                       if ($result && ($preview == 0)) {
+                               $preview = 2;
                        }
                }
-               return $smallest;
+               return $preview;
        }
 
        /**
index 7d7482fccd21b55979e44194b98d20fb66a60b56..09d31971a475ecffb621879240e8a05c8f0f361f 100644 (file)
@@ -173,14 +173,14 @@ class Upload extends \Friendica\BaseModule
 
                $allow_cid = '<' . $owner['id'] . '>';
 
-               $smallest = Photo::storeWithPreview($image, $owner['uid'], $resource_id, $filename, $filesize, $album, '', $allow_cid, '', '', '');
-               if ($smallest < 0) {
+               $preview = Photo::storeWithPreview($image, $owner['uid'], $resource_id, $filename, $filesize, $album, '', $allow_cid, '', '', '');
+               if ($preview < 0) {
                        $this->logger->warning('Photo::store() failed');
                        $this->return(401, $this->t('Image upload failed.'));
                }
 
                $this->logger->info('upload done');
-               $this->return(200, "\n\n" . '[url=' . $this->baseUrl . '/photos/' . $owner['nickname'] . '/image/' . $resource_id . '][img=' . $this->baseUrl . "/photo/$resource_id-$smallest." . $image->getExt() . "][/img][/url]\n\n");
+               $this->return(200, "\n\n" . '[url=' . $this->baseUrl . '/photos/' . $owner['nickname'] . '/image/' . $resource_id . '][img=' . $this->baseUrl . "/photo/$resource_id-$preview." . $image->getExt() . "][/img][/url]\n\n");
        }
 
        /**
index 8e826bd9134a9aca4ed1ca2f93c6e830b591a8da..03937c655ee582d0404516dc18f91b1e878ad4f3 100644 (file)
@@ -231,8 +231,8 @@ class Photos extends \Friendica\Module\BaseProfile
 
                $resource_id = Photo::newResource();
 
-               $smallest = Photo::storeWithPreview($image, $this->owner['uid'], $resource_id, $filename, $filesize, $album, '', $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
-               if ($smallest < 0) {
+               $preview = Photo::storeWithPreview($image, $this->owner['uid'], $resource_id, $filename, $filesize, $album, '', $str_contact_allow, $str_group_allow, $str_contact_deny, $str_group_deny);
+               if ($preview < 0) {
                        $this->logger->warning('image store failed');
                        $this->systemMessages->addNotice($this->t('Image upload failed.'));
                        return;
@@ -274,7 +274,7 @@ class Photos extends \Friendica\Module\BaseProfile
                $arr['origin']        = 1;
 
                $arr['body']          = '[url=' . $this->baseUrl . '/photos/' . $this->owner['nickname'] . '/image/' . $resource_id . ']'
-                       . '[img]' . $this->baseUrl . "/photo/{$resource_id}-{$smallest}.".$image->getExt() . '[/img]'
+                       . '[img]' . $this->baseUrl . "/photo/{$resource_id}-{$preview}.".$image->getExt() . '[/img]'
                        . '[/url]';
 
                $item_id = Item::insert($arr);