]> git.mxchange.org Git - friendica.git/blob - src/Model/Storage/SystemResource.php
API: Improved avatar handling
[friendica.git] / src / Model / Storage / SystemResource.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  * System resource storage class
29  *
30  * This class is used to load system resources, like images.
31  * Is not intended to be selectable by admins as default storage class.
32  */
33 class SystemResource implements IStorage
34 {
35         const NAME = 'SystemResource';
36
37         // Valid folders to look for resources
38         const VALID_FOLDERS = ["images"];
39
40         /**
41          * @inheritDoc
42          */
43         public function get(string $filename)
44         {
45                 $parts = parse_url($filename);
46                 if (!empty($parts['scheme']) && !empty($parts['host'])) {
47                         $curlResult = DI::httpRequest()->get($filename);
48                         if ($curlResult->isSuccess()) {
49                                 return $curlResult->getBody();
50                         } else {
51                                 return "";
52                         }
53                 }
54
55                 $folder = dirname($filename);
56                 if (!in_array($folder, self::VALID_FOLDERS)) {
57                         return "";
58                 }
59                 if (!file_exists($filename)) {
60                         return "";
61                 }
62                 return file_get_contents($filename);
63         }
64
65         /**
66          * @inheritDoc
67          */
68         public function put(string $data, string $filename = '')
69         {
70                 throw new BadMethodCallException();
71         }
72
73         public function delete(string $filename)
74         {
75                 throw new BadMethodCallException();
76         }
77
78         /**
79          * @inheritDoc
80          */
81         public function getOptions()
82         {
83                 return [];
84         }
85
86         /**
87          * @inheritDoc
88          */
89         public function saveOptions(array $data)
90         {
91                 return [];
92         }
93
94         /**
95          * @inheritDoc
96          */
97         public function __toString()
98         {
99                 return self::NAME;
100         }
101
102         /**
103          * @inheritDoc
104          */
105         public static function getName()
106         {
107                 return self::NAME;
108         }
109 }