3 namespace Friendica\Util;
5 use Friendica\BaseModule;
6 use Friendica\BaseObject;
7 use Friendica\Core\Config;
8 use Friendica\Core\System;
9 use Friendica\Util\Strings;
12 * @brief Proxy utilities class
18 * Default time to keep images in proxy storage
20 const DEFAULT_TIME = 86400; // 1 Day
25 const SIZE_MICRO = 'micro';
26 const SIZE_THUMB = 'thumb';
27 const SIZE_SMALL = 'small';
28 const SIZE_MEDIUM = 'medium';
29 const SIZE_LARGE = 'large';
35 * @todo Make this configurable?
37 private static $extensions = [
45 * @brief Private constructor
47 private function __construct () {
48 // No instances from utilities classes
52 * @brief Transform a remote URL into a local one.
54 * This function only performs the URL replacement on http URL and if the
55 * provided URL isn't local, "the isn't deactivated" (sic) and if the config
56 * system.proxy_disabled is set to false.
58 * @param string $url The URL to proxyfy
59 * @param bool $writemode Returns a local path the remote URL should be saved to
60 * @param string $size One of the ProxyUtils::SIZE_* constants
62 * @return string The proxyfied URL or relative path
64 public static function proxifyUrl($url, $writemode = false, $size = '')
66 // Get application instance
67 $a = BaseObject::getApp();
72 // Is no http in front of it?
73 /// @TODO To weak test for being a valid URL
74 if (substr($url, 0, 4) !== 'http') {
78 // Only continue if it isn't a local image and the isn't deactivated
79 if (self::isLocalImage($url)) {
80 $url = str_replace(Strings::normaliseLink(System::baseUrl()) . '/', System::baseUrl() . '/', $url);
84 // Is the proxy disabled?
85 if (Config::get('system', 'proxy_disabled')) {
89 // Image URL may have encoded ampersands for display which aren't desirable for proxy
90 $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
92 // Creating a sub directory to reduce the amount of files in the cache directory
93 $basepath = $a->getBasePath() . '/proxy';
95 $shortpath = hash('md5', $url);
96 $longpath = substr($shortpath, 0, 2);
98 if (is_dir($basepath) && $writemode && !is_dir($basepath . '/' . $longpath)) {
99 mkdir($basepath . '/' . $longpath);
100 chmod($basepath . '/' . $longpath, 0777);
103 $longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
105 // Extract the URL extension
106 $extension = pathinfo(parse_url($url, PHP_URL_PATH), PATHINFO_EXTENSION);
108 if (in_array($extension, self::$extensions)) {
109 $shortpath .= '.' . $extension;
110 $longpath .= '.' . $extension;
113 $proxypath = System::baseUrl() . '/proxy/' . $longpath;
119 // Too long files aren't supported by Apache
120 // Writemode in combination with long files shouldn't be possible
121 if ((strlen($proxypath) > 250) && $writemode) {
123 } elseif (strlen($proxypath) > 250) {
124 return System::baseUrl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
125 } elseif ($writemode) {
128 return $proxypath . $size;
133 * @brief "Proxifies" HTML code's image tags
135 * "Proxifies", means replaces image URLs in given HTML code with those from
136 * proxy storage directory.
138 * @param string $html Un-proxified HTML code
140 * @return string Proxified HTML code
142 public static function proxifyHtml($html)
144 $html = str_replace(Strings::normaliseLink(System::baseUrl()) . '/', System::baseUrl() . '/', $html);
146 return preg_replace_callback('/(<img [^>]*src *= *["\'])([^"\']+)(["\'][^>]*>)/siU', 'self::replaceUrl', $html);
150 * @brief Checks if the URL is a local URL.
155 private static function isLocalImage($url)
157 if (substr($url, 0, 1) == '/') {
161 if (strtolower(substr($url, 0, 5)) == 'data:') {
165 // links normalised - bug #431
166 $baseurl = Strings::normaliseLink(System::baseUrl());
167 $url = Strings::normaliseLink($url);
169 return (substr($url, 0, strlen($baseurl)) == $baseurl);
173 * @brief Return the array of query string parameters from a URL
175 * @param string $url URL to parse
176 * @return array Associative array of query string parameters
178 private static function parseQuery($url)
180 $query = parse_url($url, PHP_URL_QUERY);
181 $query = html_entity_decode($query);
183 parse_str($query, $arr);
189 * @brief Call-back method to replace the UR
191 * @param array $matches Matches from preg_replace_callback()
192 * @return string Proxified HTML image tag
194 private static function replaceUrl(array $matches)
196 // if the picture seems to be from another picture cache then take the original source
197 $queryvar = self::parseQuery($matches[2]);
199 if (!empty($queryvar['url']) && substr($queryvar['url'], 0, 4) == 'http') {
200 $matches[2] = urldecode($queryvar['url']);
203 // Following line changed per bug #431
204 if (self::isLocalImage($matches[2])) {
205 return $matches[1] . $matches[2] . $matches[3];
208 // Return proxified HTML
209 return $matches[1] . self::proxifyUrl(htmlspecialchars_decode($matches[2])) . $matches[3];