]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Photo.php
Merge branch 'stable' into develop
[friendica.git] / src / Module / Photo.php
index 84c2c7fce3dfdc8d1b9267cf6301dd4526b4445d..44be9a31a277cf36e41547583f41bcf6857d7eee 100644 (file)
@@ -28,8 +28,13 @@ use Friendica\DI;
 use Friendica\Model\Contact;
 use Friendica\Model\Photo as MPhoto;
 use Friendica\Model\Post;
+use Friendica\Model\Profile;
+use Friendica\Model\Storage\ExternalResource;
+use Friendica\Model\Storage\SystemResource;
 use Friendica\Util\Proxy;
 use Friendica\Object\Image;
+use Friendica\Util\Images;
+use Friendica\Util\Network;
 
 /**
  * Photo Module
@@ -62,6 +67,8 @@ class Photo extends BaseModule
                        exit;
                }
 
+               Profile::addVisitorCookieForHTTPSigner();
+
                $customsize = 0;
                $square_resize = true;
                $photo = false;
@@ -99,6 +106,15 @@ class Photo extends BaseModule
 
                $stamp = microtime(true);
                $imgdata = MPhoto::getImageDataForPhoto($photo);
+
+               // The mimetype for an external or system resource can only be known reliably after it had been fetched
+               if (in_array($photo['backend-class'], [ExternalResource::NAME, SystemResource::NAME])) {
+                       $mimetype = Images::getMimeTypeByData($imgdata);
+                       if (!empty($mimetype)) {
+                               $photo['type'] = $mimetype;
+                       }
+               }
+
                $data = microtime(true) - $stamp;
 
                if (empty($imgdata)) {
@@ -174,6 +190,10 @@ class Photo extends BaseModule
                                        return false;
                                }
 
+                               if (Network::isLocalLink($url) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $url, $matches)) {
+                                       return MPhoto::getPhoto($matches[1], $matches[2]);
+                               }
+               
                                return MPhoto::createPhotoForExternalResource($url, (int)local_user());
                        case "media":
                                $media = DBA::selectFirst('post-media', ['url', 'uri-id'], ['id' => $uid, 'type' => Post\Media::IMAGE]);
@@ -181,6 +201,10 @@ class Photo extends BaseModule
                                        return false;
                                }
 
+                               if (Network::isLocalLink($media['url']) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $media['url'], $matches)) {
+                                       return MPhoto::getPhoto($matches[1], $matches[2]);
+                               }
+
                                return MPhoto::createPhotoForExternalResource($media['url'], (int)local_user());
                        case "contact":
                                $contact = Contact::getById($uid, ['uid', 'url', 'avatar', 'photo', 'xmpp', 'addr']);
@@ -190,7 +214,7 @@ class Photo extends BaseModule
                                If (($contact['uid'] != 0) && empty($contact['photo']) && empty($contact['avatar'])) {
                                        $contact = Contact::getByURL($contact['url'], false, ['avatar', 'photo', 'xmpp', 'addr']);
                                }
-                               if (!empty($contact['photo'])) {
+                               if (!empty($contact['photo']) && !empty($contact['avatar'])) {
                                        // Fetch photo directly
                                        $resourceid = MPhoto::ridFromURI($contact['photo']);
                                        if (!empty($resourceid)) {
@@ -199,7 +223,8 @@ class Photo extends BaseModule
                                                        return $photo;
                                                }
                                        }
-                                       $url = $contact['photo'];
+                                       // We continue with the avatar link when the photo link is invalid
+                                       $url = $contact['avatar'];
                                } elseif (!empty($contact['avatar'])) {
                                        $url = $contact['avatar'];
                                } elseif ($customsize <= Proxy::PIXEL_MICRO) {