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