]> git.mxchange.org Git - friendica.git/blob - src/Util/Proxy.php
Unused constant removed
[friendica.git] / src / Util / Proxy.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\Util;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\System;
26 use Friendica\DI;
27
28 /**
29  * Proxy utilities class
30  */
31 class Proxy
32 {
33         /**
34          * Sizes constants
35          */
36         const SIZE_MICRO  = 'micro'; // 48
37         const SIZE_THUMB  = 'thumb'; // 80
38         const SIZE_SMALL  = 'small'; // 300
39         const SIZE_MEDIUM = 'medium'; // 600
40         const SIZE_LARGE  = 'large'; // 1024
41
42         /**
43          * Pixel Sizes
44          */
45         const PIXEL_MICRO  = 48;
46         const PIXEL_THUMB  = 80;
47         const PIXEL_SMALL  = 300;
48         const PIXEL_MEDIUM = 600;
49         const PIXEL_LARGE  = 1024;
50
51         /**
52          * Accepted extensions
53          *
54          * @var array
55          * @todo Make this configurable?
56          */
57         private static $extensions = [
58                 'jpg',
59                 'jpeg',
60                 'gif',
61                 'png',
62         ];
63
64         /**
65          * Private constructor
66          */
67         private function __construct () {
68                 // No instances from utilities classes
69         }
70
71         /**
72          * Transform a remote URL into a local one.
73          *
74          * This function only performs the URL replacement on http URL and if the
75          * provided URL isn't local, "the isn't deactivated" (sic) and if the config
76          * system.proxy_disabled is set to false.
77          *
78          * @param string $url       The URL to proxyfy
79          * @param string $size      One of the ProxyUtils::SIZE_* constants
80          *
81          * @return string The proxyfied URL or relative path
82          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
83          */
84         public static function proxifyUrl($url, $size = '')
85         {
86                 // Trim URL first
87                 $url = trim($url);
88
89                 // Quit if not an HTTP/HTTPS link or if local
90                 if (!in_array(parse_url($url, PHP_URL_SCHEME), ['http', 'https']) || self::isLocalImage($url)) {
91                         return $url;
92                 }
93
94                 // Is the proxy disabled?
95                 if (DI::config()->get('system', 'proxy_disabled')) {
96                         return $url;
97                 }
98
99                 // Image URL may have encoded ampersands for display which aren't desirable for proxy
100                 $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
101
102                 $shortpath = hash('md5', $url);
103                 $longpath = substr($shortpath, 0, 2);
104
105                 $longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
106
107                 // Extract the URL extension
108                 $extension = pathinfo(parse_url($url, PHP_URL_PATH), PATHINFO_EXTENSION);
109
110                 if (in_array($extension, self::$extensions)) {
111                         $shortpath .= '.' . $extension;
112                         $longpath .= '.' . $extension;
113                 }
114
115                 $proxypath = DI::baseUrl() . '/proxy/' . $longpath;
116
117                 if ($size != '') {
118                         $size = ':' . $size;
119                 }
120
121                 Logger::info('Created proxy link', ['url' => $url, 'callstack' => System::callstack(20)]);
122
123                 // Too long files aren't supported by Apache
124                 if (strlen($proxypath) > 250) {
125                         return DI::baseUrl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
126                 } else {
127                         return $proxypath . $size;
128                 }
129         }
130
131         /**
132          * "Proxifies" HTML code's image tags
133          *
134          * "Proxifies", means replaces image URLs in given HTML code with those from
135          * proxy storage directory.
136          *
137          * @param string $html Un-proxified HTML code
138          *
139          * @return string Proxified HTML code
140          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
141          */
142         public static function proxifyHtml($html)
143         {
144                 $html = str_replace(Strings::normaliseLink(DI::baseUrl()) . '/', DI::baseUrl() . '/', $html);
145
146                 return preg_replace_callback('/(<img [^>]*src *= *["\'])([^"\']+)(["\'][^>]*>)/siU', 'self::replaceUrl', $html);
147         }
148
149         /**
150          * Checks if the URL is a local URL.
151          *
152          * @param string $url
153          * @return boolean
154          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
155          */
156         public static function isLocalImage($url)
157         {
158                 if (substr($url, 0, 1) == '/') {
159                         return true;
160                 }
161
162                 if (strtolower(substr($url, 0, 5)) == 'data:') {
163                         return true;
164                 }
165
166                 return Network::isLocalLink($url);
167         }
168
169         /**
170          * Return the array of query string parameters from a URL
171          *
172          * @param string $url URL to parse
173          * @return array Associative array of query string parameters
174          */
175         private static function parseQuery($url)
176         {
177                 $query = parse_url($url, PHP_URL_QUERY);
178                 $query = html_entity_decode($query);
179
180                 parse_str($query, $arr);
181
182                 return $arr;
183         }
184
185         /**
186          * Call-back method to replace the UR
187          *
188          * @param array $matches Matches from preg_replace_callback()
189          * @return string Proxified HTML image tag
190          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
191          */
192         private static function replaceUrl(array $matches)
193         {
194                 // if the picture seems to be from another picture cache then take the original source
195                 $queryvar = self::parseQuery($matches[2]);
196
197                 if (!empty($queryvar['url']) && substr($queryvar['url'], 0, 4) == 'http') {
198                         $matches[2] = urldecode($queryvar['url']);
199                 }
200
201                 // Following line changed per bug #431
202                 if (self::isLocalImage($matches[2])) {
203                         return $matches[1] . $matches[2] . $matches[3];
204                 }
205
206                 // Return proxified HTML
207                 return $matches[1] . self::proxifyUrl(htmlspecialchars_decode($matches[2])) . $matches[3];
208         }
209
210 }