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