]> git.mxchange.org Git - friendica.git/blob - src/Module/Photo.php
Merge branch 'stable' into develop
[friendica.git] / src / Module / Photo.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module;
23
24 use Friendica\BaseModule;
25 use Friendica\Core\Logger;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Model\Contact;
29 use Friendica\Model\Photo as MPhoto;
30 use Friendica\Model\Post;
31 use Friendica\Model\Profile;
32 use Friendica\Model\Storage\ExternalResource;
33 use Friendica\Model\Storage\SystemResource;
34 use Friendica\Util\Proxy;
35 use Friendica\Object\Image;
36 use Friendica\Util\Images;
37 use Friendica\Util\Network;
38
39 /**
40  * Photo Module
41  */
42 class Photo extends BaseModule
43 {
44         /**
45          * Module initializer
46          *
47          * Fetch a photo or an avatar, in optional size, check for permissions and
48          * return the image
49          */
50         public static function rawContent(array $parameters = [])
51         {
52                 $totalstamp = microtime(true);
53
54                 if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {
55                         header("HTTP/1.1 304 Not Modified");
56                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
57                         if (!empty($_SERVER["HTTP_IF_NONE_MATCH"])) {
58                                 header("Etag: " . $_SERVER["HTTP_IF_NONE_MATCH"]);
59                         }
60                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
61                         header("Cache-Control: max-age=31536000");
62                         if (function_exists("header_remove")) {
63                                 header_remove("Last-Modified");
64                                 header_remove("Expires");
65                                 header_remove("Cache-Control");
66                         }
67                         exit;
68                 }
69
70                 Profile::addVisitorCookieForHTTPSigner();
71
72                 $customsize = 0;
73                 $square_resize = true;
74                 $photo = false;
75                 $scale = null;
76                 $stamp = microtime(true);
77                 if (!empty($parameters['customsize'])) {
78                         $customsize = intval($parameters['customsize']);
79                         $uid = MPhoto::stripExtension($parameters['name']);
80                         $photo = self::getAvatar($uid, $parameters['type'], $customsize);
81                         $square_resize = !in_array($parameters['type'], ['media', 'preview']);
82                 } elseif (!empty($parameters['type'])) {
83                         $uid = MPhoto::stripExtension($parameters['name']);
84                         $photo = self::getAvatar($uid, $parameters['type'], Proxy::PIXEL_SMALL);
85                 } elseif (!empty($parameters['name'])) {
86                         $photoid = MPhoto::stripExtension($parameters['name']);
87                         $scale = 0;
88                         if (substr($photoid, -2, 1) == "-") {
89                                 $scale = intval(substr($photoid, -1, 1));
90                                 $photoid = substr($photoid, 0, -2);
91                         }
92                         $photo = MPhoto::getPhoto($photoid, $scale);
93                         if ($photo === false) {
94                                 throw new \Friendica\Network\HTTPException\NotFoundException(DI::l10n()->t('The Photo with id %s is not available.', $photoid));
95                         }
96                 } else {
97                         throw new \Friendica\Network\HTTPException\BadRequestException();
98                 }
99                 $fetch = microtime(true) - $stamp;
100
101                 if ($photo === false) {
102                         throw new \Friendica\Network\HTTPException\NotFoundException();
103                 }
104
105                 $cacheable = ($photo["allow_cid"] . $photo["allow_gid"] . $photo["deny_cid"] . $photo["deny_gid"] === "") && (isset($photo["cacheable"]) ? $photo["cacheable"] : true);
106
107                 $stamp = microtime(true);
108                 $imgdata = MPhoto::getImageDataForPhoto($photo);
109
110                 // The mimetype for an external or system resource can only be known reliably after it had been fetched
111                 if (in_array($photo['backend-class'], [ExternalResource::NAME, SystemResource::NAME])) {
112                         $mimetype = Images::getMimeTypeByData($imgdata);
113                         if (!empty($mimetype)) {
114                                 $photo['type'] = $mimetype;
115                         }
116                 }
117
118                 $data = microtime(true) - $stamp;
119
120                 if (empty($imgdata)) {
121                         Logger::warning("Invalid photo with id {$photo["id"]}.");
122                         throw new \Friendica\Network\HTTPException\InternalServerErrorException(DI::l10n()->t('Invalid photo with id %s.', $photo["id"]));
123                 }
124
125                 // if customsize is set and image is not a gif, resize it
126                 if ($photo['type'] !== "image/gif" && $customsize > 0 && $customsize <= Proxy::PIXEL_THUMB && $square_resize) {
127                         $img = new Image($imgdata, $photo['type']);
128                         $img->scaleToSquare($customsize);
129                         $imgdata = $img->asString();
130                 } elseif ($photo['type'] !== "image/gif" && $customsize > 0) {
131                         $img = new Image($imgdata, $photo['type']);
132                         $img->scaleDown($customsize);
133                         $imgdata = $img->asString();
134                 }
135
136                 if (function_exists("header_remove")) {
137                         header_remove("Pragma");
138                         header_remove("pragma");
139                 }
140
141                 header("Content-type: " . $photo['type']);
142
143                 $stamp = microtime(true);
144                 if (!$cacheable) {
145                         // it is a private photo that they have no permission to view.
146                         // tell the browser not to cache it, in case they authenticate
147                         // and subsequently have permission to see it
148                         header("Cache-Control: no-store, no-cache, must-revalidate");
149                 } else {
150                         $md5 = $photo['hash'] ?: md5($imgdata);
151                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
152                         header("Etag: \"{$md5}\"");
153                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
154                         header("Cache-Control: max-age=31536000");
155                 }
156                 $checksum = microtime(true) - $stamp;
157
158                 $stamp = microtime(true);
159                 echo $imgdata;
160                 $output = microtime(true) - $stamp;
161
162                 $total = microtime(true) - $totalstamp;
163                 $rest = $total - ($fetch + $data + $checksum + $output);
164
165                 if (!is_null($scale) && ($scale < 4)) {
166                         Logger::info('Performance:', ['scale' => $scale, 'resource' => $photo['resource-id'],
167                                 'total' => number_format($total, 3), 'fetch' => number_format($fetch, 3),
168                                 'data' => number_format($data, 3), 'checksum' => number_format($checksum, 3),
169                                 'output' => number_format($output, 3), 'rest' => number_format($rest, 3)]);
170                 }
171
172                 exit();
173         }
174
175         private static function getAvatar($uid, $type="avatar", $customsize)
176         {
177                 switch($type) {
178                         case "preview":
179                                 $media = DBA::selectFirst('post-media', ['preview', 'url', 'type', 'uri-id'], ['id' => $uid]);
180                                 if (empty($media)) {
181                                         return false;
182                                 }
183                                 $url = $media['preview'];
184
185                                 if (empty($url) && ($media['type'] == Post\Media::IMAGE)) {
186                                         $url = $media['url'];
187                                 }
188
189                                 if (empty($url)) {
190                                         return false;
191                                 }
192
193                                 if (Network::isLocalLink($url) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $url, $matches)) {
194                                         return MPhoto::getPhoto($matches[1], $matches[2]);
195                                 }
196                 
197                                 return MPhoto::createPhotoForExternalResource($url, (int)local_user());
198                         case "media":
199                                 $media = DBA::selectFirst('post-media', ['url', 'uri-id'], ['id' => $uid, 'type' => Post\Media::IMAGE]);
200                                 if (empty($media)) {
201                                         return false;
202                                 }
203
204                                 if (Network::isLocalLink($media['url']) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $media['url'], $matches)) {
205                                         return MPhoto::getPhoto($matches[1], $matches[2]);
206                                 }
207
208                                 return MPhoto::createPhotoForExternalResource($media['url'], (int)local_user());
209                         case "contact":
210                                 $contact = Contact::getById($uid, ['uid', 'url', 'avatar', 'photo', 'xmpp', 'addr']);
211                                 if (empty($contact)) {
212                                         return false;
213                                 }
214                                 If (($contact['uid'] != 0) && empty($contact['photo']) && empty($contact['avatar'])) {
215                                         $contact = Contact::getByURL($contact['url'], false, ['avatar', 'photo', 'xmpp', 'addr']);
216                                 }
217                                 if (!empty($contact['photo']) && !empty($contact['avatar'])) {
218                                         // Fetch photo directly
219                                         $resourceid = MPhoto::ridFromURI($contact['photo']);
220                                         if (!empty($resourceid)) {
221                                                 $photo = MPhoto::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
222                                                 if (!empty($photo)) {
223                                                         return $photo;
224                                                 }
225                                         }
226                                         // We continue with the avatar link when the photo link is invalid
227                                         $url = $contact['avatar'];
228                                 } elseif (!empty($contact['avatar'])) {
229                                         $url = $contact['avatar'];
230                                 } elseif ($customsize <= Proxy::PIXEL_MICRO) {
231                                         $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
232                                 } elseif ($customsize <= Proxy::PIXEL_THUMB) {
233                                         $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
234                                 } else {
235                                         $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
236                                 }
237                                 return MPhoto::createPhotoForExternalResource($url);
238                         case "header":
239                                 $contact = Contact::getById($uid, ['uid', 'url', 'header']);
240                                 if (empty($contact)) {
241                                         return false;
242                                 }
243                                 If (($contact['uid'] != 0) && empty($contact['header'])) {
244                                         $contact = Contact::getByURL($contact['url'], false, ['header']);
245                                 }
246                                 if (!empty($contact['header'])) {
247                                         $url = $contact['header'];
248                                 } else {
249                                         $url = DI::baseUrl() . '/images/blank.png';
250                                 }
251                                 return MPhoto::createPhotoForExternalResource($url);
252                         case "profile":
253                         case "custom":
254                                 $scale = 4;
255                                 break;
256                         case "micro":
257                                 $scale = 6;
258                                 break;
259                         case "avatar":
260                         default:
261                                 $scale = 5;
262                 }
263
264                 $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
265                 if (empty($photo)) {
266                         $contact = DBA::selectFirst('contact', [], ['uid' => $uid, 'self' => true]) ?: [];
267
268                         switch($type) {
269                                 case "profile":
270                                 case "custom":
271                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
272                                         break;
273                                 case "micro":
274                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
275                                         break;
276                                 case "avatar":
277                                 default:
278                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
279                         }
280
281                         $parts = parse_url($default);
282                         if (!empty($parts['scheme']) || !empty($parts['host'])) {
283                                 $photo = MPhoto::createPhotoForExternalResource($default);
284                         } else {
285                                 $photo = MPhoto::createPhotoForSystemResource($default);
286                         }
287                 }
288                 return $photo;
289         }
290 }