]> git.mxchange.org Git - friendica.git/blob - src/Model/Storage/ExternalResource.php
Add constructor injection for ExternalResource
[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\Network\IHTTPRequest;
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         /** @var IHTTPRequest */
38         private $httpRequest;
39
40         public function __construct(IHTTPRequest $httpRequest)
41         {
42                 $this->httpRequest = $httpRequest;
43         }
44
45         /**
46          * @inheritDoc
47          */
48         public function get(string $filename)
49         {
50                 $parts = parse_url($filename);
51                 if (empty($parts['scheme']) || empty($parts['host'])) {
52                         return "";
53                 }
54
55                 $curlResult = $this->httpRequest->get($filename);
56                 if ($curlResult->isSuccess()) {
57                         return $curlResult->getBody();
58                 } else {
59                         return "";
60                 }
61         }
62
63         /**
64          * @inheritDoc
65          */
66         public function put(string $data, string $filename = '')
67         {
68                 throw new BadMethodCallException();
69         }
70
71         public function delete(string $filename)
72         {
73                 throw new BadMethodCallException();
74         }
75
76         /**
77          * @inheritDoc
78          */
79         public function getOptions()
80         {
81                 return [];
82         }
83
84         /**
85          * @inheritDoc
86          */
87         public function saveOptions(array $data)
88         {
89                 return [];
90         }
91
92         /**
93          * @inheritDoc
94          */
95         public function __toString()
96         {
97                 return self::NAME;
98         }
99
100         /**
101          * @inheritDoc
102          */
103         public static function getName()
104         {
105                 return self::NAME;
106         }
107 }