]> git.mxchange.org Git - friendica.git/blob - src/Module/Photo.php
134cade65021696b3f8cc2461ca48287e5e15c8f
[friendica.git] / src / Module / Photo.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\Core\Protocol;
27 use Friendica\Database\DBA;
28 use Friendica\DI;
29 use Friendica\Model\Contact;
30 use Friendica\Model\Photo as MPhoto;
31 use Friendica\Model\Post;
32 use Friendica\Model\Profile;
33 use Friendica\Core\Storage\Type\ExternalResource;
34 use Friendica\Core\Storage\Type\SystemResource;
35 use Friendica\Core\System;
36 use Friendica\Core\Worker;
37 use Friendica\Model\User;
38 use Friendica\Network\HTTPClient\Client\HttpClientAccept;
39 use Friendica\Network\HTTPClient\Client\HttpClientOptions;
40 use Friendica\Network\HTTPException;
41 use Friendica\Network\HTTPException\NotModifiedException;
42 use Friendica\Object\Image;
43 use Friendica\Util\Images;
44 use Friendica\Util\Network;
45 use Friendica\Util\ParseUrl;
46 use Friendica\Util\Proxy;
47
48 /**
49  * Photo Module
50  */
51 class Photo extends BaseModule
52 {
53         /**
54          * Module initializer
55          *
56          * Fetch a photo or an avatar, in optional size, check for permissions and
57          * return the image
58          */
59         protected function rawContent(array $request = [])
60         {
61                 $totalstamp = microtime(true);
62
63                 if (isset($_SERVER["HTTP_IF_MODIFIED_SINCE"])) {
64                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
65                         if (!empty($_SERVER["HTTP_IF_NONE_MATCH"])) {
66                                 header("Etag: " . $_SERVER["HTTP_IF_NONE_MATCH"]);
67                         }
68                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
69                         header("Cache-Control: max-age=31536000");
70                         if (function_exists("header_remove")) {
71                                 header_remove("Last-Modified");
72                                 header_remove("Expires");
73                                 header_remove("Cache-Control");
74                         }
75                         throw new NotModifiedException();
76                 }
77
78                 Profile::addVisitorCookieForHTTPSigner();
79
80                 $customsize = 0;
81                 $square_resize = true;
82                 $scale = null;
83                 $stamp = microtime(true);
84                 // User avatar
85                 if (!empty($this->parameters['type'])) {
86                         if (!empty($this->parameters['customsize'])) {
87                                 $customsize = intval($this->parameters['customsize']);
88                                 $square_resize = !in_array($this->parameters['type'], ['media', 'preview']);
89                         }
90
91                         if (!empty($this->parameters['guid'])) {
92                                 $guid = $this->parameters['guid'];
93                                 $account = DBA::selectFirst('account-user-view', ['id'], ['guid' => $guid], ['order' => ['uid' => true]]);
94                                 if (empty($account)) {
95                                         throw new HTTPException\NotFoundException();
96                                 }
97
98                                 $id = $account['id'];
99                         }
100
101                         // Contact Id Fallback, to remove after version 2021.12
102                         if (isset($this->parameters['contact_id'])) {
103                                 $id = intval($this->parameters['contact_id']);
104                         }
105
106                         if (!empty($this->parameters['nickname_ext'])) {
107                                 $nickname = pathinfo($this->parameters['nickname_ext'], PATHINFO_FILENAME);
108                                 $user = User::getByNickname($nickname, ['uid']);
109                                 if (empty($user)) {
110                                         throw new HTTPException\NotFoundException();
111                                 }
112
113                                 $id = $user['uid'];
114                         }
115
116                         // User Id Fallback, to remove after version 2021.12
117                         if (!empty($this->parameters['uid_ext'])) {
118                                 $id = intval(pathinfo($this->parameters['uid_ext'], PATHINFO_FILENAME));
119                         }
120
121                         // Please refactor this for the love of everything that's good
122                         if (isset($this->parameters['id'])) {
123                                 $id = $this->parameters['id'];
124                         }
125
126                         if (empty($id)) {
127                                 Logger::notice('No picture id was detected', ['parameters' => $this->parameters, 'query' => DI::args()->getQueryString()]);
128                                 throw new HTTPException\NotFoundException(DI::l10n()->t('The Photo is not available.'));
129                         }
130
131                         $photo = self::getPhotoByid($id, $this->parameters['type'], $customsize ?: Proxy::PIXEL_SMALL);
132                 } else {
133                         $photoid = pathinfo($this->parameters['name'], PATHINFO_FILENAME);
134                         $scale = 0;
135                         if (substr($photoid, -2, 1) == "-") {
136                                 $scale = intval(substr($photoid, -1, 1));
137                                 $photoid = substr($photoid, 0, -2);
138                         }
139                         $photo = MPhoto::getPhoto($photoid, $scale);
140                         if ($photo === false) {
141                                 throw new HTTPException\NotFoundException(DI::l10n()->t('The Photo with id %s is not available.', $photoid));
142                         }
143                 }
144
145                 $fetch = microtime(true) - $stamp;
146
147                 if ($photo === false) {
148                         throw new HTTPException\NotFoundException();
149                 }
150
151                 $cacheable = ($photo["allow_cid"] . $photo["allow_gid"] . $photo["deny_cid"] . $photo["deny_gid"] === "") && (isset($photo["cacheable"]) ? $photo["cacheable"] : true);
152
153                 $stamp = microtime(true);
154
155                 $imgdata = MPhoto::getImageDataForPhoto($photo);
156                 if (empty($imgdata)) {
157                         throw new HTTPException\NotFoundException();
158                 }
159
160                 // The mimetype for an external or system resource can only be known reliably after it had been fetched
161                 if (in_array($photo['backend-class'], [ExternalResource::NAME, SystemResource::NAME])) {
162                         $mimetype = Images::getMimeTypeByData($imgdata);
163                         if (!empty($mimetype)) {
164                                 $photo['type'] = $mimetype;
165                         }
166                 }
167
168                 $data = microtime(true) - $stamp;
169
170                 if (empty($imgdata)) {
171                         Logger::warning('Invalid photo', ['id' => $photo['id']]);
172                         if (in_array($photo['backend-class'], [ExternalResource::NAME])) {
173                                 $reference = json_decode($photo['backend-ref'], true);
174                                 $error = DI::l10n()->t('Invalid external resource with url %s.', $reference['url']);
175                         } else {
176                                 $error = DI::l10n()->t('Invalid photo with id %s.', $photo['id']);
177                         }
178                         throw new HTTPException\InternalServerErrorException($error);
179                 }
180
181                 // if customsize is set and image is not a gif, resize it
182                 if ($photo['type'] !== "image/gif" && $customsize > 0 && $customsize <= Proxy::PIXEL_THUMB && $square_resize) {
183                         $img = new Image($imgdata, $photo['type']);
184                         $img->scaleToSquare($customsize);
185                         $imgdata = $img->asString();
186                 } elseif ($photo['type'] !== "image/gif" && $customsize > 0) {
187                         $img = new Image($imgdata, $photo['type']);
188                         $img->scaleDown($customsize);
189                         $imgdata = $img->asString();
190                 }
191
192                 if (function_exists("header_remove")) {
193                         header_remove("Pragma");
194                         header_remove("pragma");
195                 }
196
197                 header("Content-type: " . $photo['type']);
198
199                 $stamp = microtime(true);
200                 if (!$cacheable) {
201                         // it is a private photo that they have no permission to view.
202                         // tell the browser not to cache it, in case they authenticate
203                         // and subsequently have permission to see it
204                         header("Cache-Control: no-store, no-cache, must-revalidate");
205                 } else {
206                         $md5 = $photo['hash'] ?: md5($imgdata);
207                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
208                         header("Etag: \"{$md5}\"");
209                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
210                         header("Cache-Control: max-age=31536000");
211                 }
212                 $checksum = microtime(true) - $stamp;
213
214                 $stamp = microtime(true);
215                 echo $imgdata;
216                 $output = microtime(true) - $stamp;
217
218                 $total = microtime(true) - $totalstamp;
219                 $rest = $total - ($fetch + $data + $checksum + $output);
220
221                 if (!is_null($scale) && ($scale < 4)) {
222                         Logger::info('Performance:', ['scale' => $scale, 'resource' => $photo['resource-id'],
223                                 'total' => number_format($total, 3), 'fetch' => number_format($fetch, 3),
224                                 'data' => number_format($data, 3), 'checksum' => number_format($checksum, 3),
225                                 'output' => number_format($output, 3), 'rest' => number_format($rest, 3)]);
226                 }
227
228                 System::exit();
229         }
230
231         private static function getPhotoByid(int $id, $type, $customsize)
232         {
233                 switch($type) {
234                         case "preview":
235                                 $media = DBA::selectFirst('post-media', ['preview', 'url', 'mimetype', 'type', 'uri-id'], ['id' => $id]);
236                                 if (empty($media)) {
237                                         return false;
238                                 }
239                                 $url = $media['preview'];
240
241                                 if (empty($url) && ($media['type'] == Post\Media::IMAGE)) {
242                                         $url = $media['url'];
243                                 }
244
245                                 if (empty($url)) {
246                                         return false;
247                                 }
248
249                                 if (Network::isLocalLink($url) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $url, $matches)) {
250                                         return MPhoto::getPhoto($matches[1], $matches[2]);
251                                 }
252
253                                 return MPhoto::createPhotoForExternalResource($url, (int)local_user(), $media['mimetype']);
254                         case "media":
255                                 $media = DBA::selectFirst('post-media', ['url', 'mimetype', 'uri-id'], ['id' => $id, 'type' => Post\Media::IMAGE]);
256                                 if (empty($media)) {
257                                         return false;
258                                 }
259
260                                 if (Network::isLocalLink($media['url']) && preg_match('|.*?/photo/(.*[a-fA-F0-9])\-(.*[0-9])\..*[\w]|', $media['url'], $matches)) {
261                                         return MPhoto::getPhoto($matches[1], $matches[2]);
262                                 }
263
264                                 return MPhoto::createPhotoForExternalResource($media['url'], (int)local_user(), $media['mimetype']);
265                         case "link":
266                                 $link = DBA::selectFirst('post-link', ['url', 'mimetype'], ['id' => $id]);
267                                 if (empty($link)) {
268                                         return false;
269                                 }
270
271                                 return MPhoto::createPhotoForExternalResource($link['url'], (int)local_user(), $link['mimetype']);
272                         case "contact":
273                                 $fields = ['uid', 'url', 'nurl', 'avatar', 'photo', 'xmpp', 'addr', 'network', 'failed', 'updated'];
274                                 $contact = Contact::getById($id, $fields);
275                                 if (empty($contact)) {
276                                         return false;
277                                 }
278
279                                 // For local users directly use the photo record that is marked as the profile
280                                 if (Network::isLocalLink($contact['url'])) {
281                                         $contact = Contact::selectFirst($fields, ['nurl' => $contact['nurl'], 'self' => true]);
282                                         if (!empty($contact)) {
283                                                 if ($customsize <= Proxy::PIXEL_MICRO) {
284                                                         $scale = 6;
285                                                 } elseif ($customsize <= Proxy::PIXEL_THUMB) {
286                                                         $scale = 5;
287                                                 } else {
288                                                         $scale = 4;
289                                                 }
290                                                 $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $contact['uid'], "profile" => 1]);
291                                                 if (!empty($photo)) {
292                                                         return $photo;
293                                                 }
294                                         }
295                                 }
296
297                                 if (!empty($contact['uid']) && empty($contact['photo']) && empty($contact['avatar'])) {
298                                         $contact = Contact::getByURL($contact['url'], false, $fields);
299                                 }
300
301                                 if (!empty($contact['photo']) && !empty($contact['avatar'])) {
302                                         // Fetch photo directly
303                                         $resourceid = MPhoto::ridFromURI($contact['photo']);
304                                         if (!empty($resourceid)) {
305                                                 $photo = MPhoto::selectFirst([], ['resource-id' => $resourceid], ['order' => ['scale']]);
306                                                 if (!empty($photo)) {
307                                                         return $photo;
308                                                 } else {
309                                                         $url = $contact['avatar'];
310                                                 }
311                                         } else {
312                                                 $url = $contact['photo'];
313                                         }
314                                 } elseif (!empty($contact['avatar'])) {
315                                         $url = $contact['avatar'];
316                                 }
317                                 $mimetext = '';
318                                 if (!empty($url)) {
319                                         $mime = ParseUrl::getContentType($url, HttpClientAccept::IMAGE);
320                                         if (!empty($mime)) {
321                                                 $mimetext = $mime[0] . '/' . $mime[1];
322                                         } else {
323                                                 // Only update federated accounts that hadn't failed before and hadn't been updated recently
324                                                 $update = in_array($contact['network'], Protocol::FEDERATED) && !$contact['failed']
325                                                         && ((time() - strtotime($contact['updated']) > 86400));
326                                                 if ($update) {
327                                                         $curlResult = DI::httpClient()->head($url, [HttpClientOptions::ACCEPT_CONTENT => HttpClientAccept::IMAGE]);
328                                                         $update = !$curlResult->isSuccess() && ($curlResult->getReturnCode() == 404);
329                                                         Logger::debug('Got return code for avatar', ['return code' => $curlResult->getReturnCode(), 'cid' => $id, 'url' => $contact['url'], 'avatar' => $url]);
330                                                 }
331                                                 if ($update) {
332                                                         Logger::info('Invalid file, contact update initiated', ['cid' => $id, 'url' => $contact['url'], 'avatar' => $url]);
333                                                         Worker::add(PRIORITY_LOW, "UpdateContact", $id);
334                                                 } else {
335                                                         Logger::info('Invalid file', ['cid' => $id, 'url' => $contact['url'], 'avatar' => $url]);
336                                                 }
337                                         }
338                                         if (!empty($mimetext) && ($mime[0] != 'image') && ($mimetext != 'application/octet-stream')) {
339                                                 Logger::info('Unexpected Content-Type', ['mime' => $mimetext, 'url' => $url]);
340                                                 $mimetext = '';
341                                         } if (!empty($mimetext)) {
342                                                 Logger::debug('Expected Content-Type', ['mime' => $mimetext, 'url' => $url]);
343                                         }
344                                 }
345                                 if (empty($mimetext)) {
346                                         if ($customsize <= Proxy::PIXEL_MICRO) {
347                                                 $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
348                                         } elseif ($customsize <= Proxy::PIXEL_THUMB) {
349                                                 $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
350                                         } else {
351                                                 $url = Contact::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
352                                         }
353                                 }
354                                 return MPhoto::createPhotoForExternalResource($url, 0, $mimetext);
355                         case "header":
356                                 $fields = ['uid', 'url', 'header', 'network', 'gsid'];
357                                 $contact = Contact::getById($id, $fields);
358                                 if (empty($contact)) {
359                                         return false;
360                                 }
361                                 If (($contact['uid'] != 0) && empty($contact['header'])) {
362                                         $contact = Contact::getByURL($contact['url'], false, $fields);
363                                 }
364                                 if (!empty($contact['header'])) {
365                                         $url = $contact['header'];
366                                 } else {
367                                         $url = Contact::getDefaultHeader($contact);
368                                 }
369                                 return MPhoto::createPhotoForExternalResource($url);
370                         case "banner":
371                                 $photo = MPhoto::selectFirst([], ["scale" => 3, 'uid' => $id, 'photo-type' => MPhoto::USER_BANNER]);
372                                 if (!empty($photo)) {
373                                         return $photo;
374                                 }
375                                 return MPhoto::createPhotoForExternalResource(DI::baseUrl() . '/images/friendica-banner.jpg');
376                         case "profile":
377                         case "custom":
378                                 $scale = 4;
379                                 break;
380                         case "micro":
381                                 $scale = 6;
382                                 break;
383                         case "avatar":
384                         default:
385                                 $scale = 5;
386                 }
387
388                 $photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $id, "profile" => 1]);
389                 if (empty($photo)) {
390                         $contact = DBA::selectFirst('contact', [], ['uid' => $id, 'self' => true]) ?: [];
391
392                         switch($type) {
393                                 case "profile":
394                                 case "custom":
395                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_SMALL);
396                                         break;
397                                 case "micro":
398                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_MICRO);
399                                         break;
400                                 case "avatar":
401                                 default:
402                                         $default = Contact::getDefaultAvatar($contact, Proxy::SIZE_THUMB);
403                         }
404
405                         $parts = parse_url($default);
406                         if (!empty($parts['scheme']) || !empty($parts['host'])) {
407                                 $photo = MPhoto::createPhotoForExternalResource($default);
408                         } else {
409                                 $photo = MPhoto::createPhotoForSystemResource($default);
410                         }
411                 }
412                 return $photo;
413         }
414 }