]> git.mxchange.org Git - friendica.git/blob - src/Model/Storage/ExternalResource.php
Detection of local requests
[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 BadMethodCallException;
25 use Friendica\Util\HTTPSignature;
26 use Friendica\Network\IHTTPRequest;
27
28 /**
29  * External resource storage class
30  *
31  * This class is used to load external resources, like images.
32  * Is not intended to be selectable by admins as default storage class.
33  */
34 class ExternalResource implements IStorage
35 {
36         const NAME = 'ExternalResource';
37
38         /** @var IHTTPRequest */
39         private $httpRequest;
40
41         public function __construct(IHTTPRequest $httpRequest)
42         {
43                 $this->httpRequest = $httpRequest;
44         }
45
46         /**
47          * @inheritDoc
48          */
49         public function get(string $reference)
50         {
51                 $data = json_decode($reference);
52                 if (empty($data->url)) {
53                         return "";
54                 }
55
56                 $parts = parse_url($data->url);
57                 if (empty($parts['scheme']) || empty($parts['host'])) {
58                         return "";
59                 }
60
61                 $fetchResult = HTTPSignature::fetchRaw($data->url, $data->uid);
62                 if ($fetchResult->isSuccess()) {
63                         return $fetchResult->getBody();
64                 } else {
65                         return "";
66                 }
67         }
68
69         /**
70          * @inheritDoc
71          */
72         public function put(string $data, string $reference = '')
73         {
74                 throw new BadMethodCallException();
75         }
76
77         public function delete(string $reference)
78         {
79                 throw new BadMethodCallException();
80         }
81
82         /**
83          * @inheritDoc
84          */
85         public function getOptions()
86         {
87                 return [];
88         }
89
90         /**
91          * @inheritDoc
92          */
93         public function saveOptions(array $data)
94         {
95                 return [];
96         }
97
98         /**
99          * @inheritDoc
100          */
101         public function __toString()
102         {
103                 return self::NAME;
104         }
105
106         /**
107          * @inheritDoc
108          */
109         public static function getName()
110         {
111                 return self::NAME;
112         }
113 }