]> git.mxchange.org Git - friendica.git/blob - src/Core/Storage/Type/ExternalResource.php
Merge pull request #11015 from MrPetovan/task/10979-frio-time-tooltip
[friendica.git] / src / Core / Storage / Type / ExternalResource.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\Core\Storage\Type;
23
24 use Exception;
25 use Friendica\Core\Storage\Exception\ReferenceStorageException;
26 use Friendica\Core\Storage\Capability\ICanReadFromStorage;
27 use Friendica\Util\HTTPSignature;
28
29 /**
30  * External resource storage class
31  *
32  * This class is used to load external resources, like images.
33  * Is not intended to be selectable by admins as default storage class.
34  */
35 class ExternalResource implements ICanReadFromStorage
36 {
37         const NAME = 'ExternalResource';
38
39         /**
40          * @inheritDoc
41          */
42         public function get(string $reference): string
43         {
44                 $data = json_decode($reference);
45                 if (empty($data->url)) {
46                         throw new ReferenceStorageException(sprintf('Invalid reference %s, cannot retrieve URL', $reference));
47                 }
48
49                 $parts = parse_url($data->url);
50                 if (empty($parts['scheme']) || empty($parts['host'])) {
51                         throw new ReferenceStorageException(sprintf('Invalid reference %s, cannot extract scheme and host', $reference));
52                 }
53
54                 try {
55                         $fetchResult = HTTPSignature::fetchRaw($data->url, $data->uid, ['accept_content' => []]);
56                 } catch (Exception $exception) {
57                         throw new ReferenceStorageException(sprintf('External resource failed to get %s', $reference), $exception->getCode(), $exception);
58                 }
59                 if ($fetchResult->isSuccess()) {
60                         return $fetchResult->getBody();
61                 } else {
62                         throw new ReferenceStorageException(sprintf('External resource failed to get %s', $reference), $fetchResult->getReturnCode(), new Exception($fetchResult->getBody()));
63                 }
64         }
65
66         /**
67          * @inheritDoc
68          */
69         public function __toString(): string
70         {
71                 return self::NAME;
72         }
73
74         /**
75          * @inheritDoc
76          */
77         public static function getName(): string
78         {
79                 return self::NAME;
80         }
81 }