2 // Based upon "Privacy Image Cache" by Tobias Hößl <https://github.com/CatoTH/>
4 define('PROXY_DEFAULT_TIME', 86400); // 1 Day
6 define('PROXY_SIZE_MICRO', 'micro');
7 define('PROXY_SIZE_THUMB', 'thumb');
8 define('PROXY_SIZE_SMALL', 'small');
9 define('PROXY_SIZE_MEDIUM', 'medium');
10 define('PROXY_SIZE_LARGE', 'large');
12 require_once 'include/security.php';
13 require_once 'include/Photo.php';
15 function proxy_init(App $a) {
16 // Pictures are stored in one of the following ways:
17 // 1. If a folder "proxy" exists and is writeable, then use this for caching
18 // 2. If a cache path is defined, use this
19 // 3. If everything else failed, cache into the database
21 // Question: Do we really need these three methods?
23 if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
24 header('HTTP/1.1 304 Not Modified');
25 header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
26 header('Etag: ' . $_SERVER['HTTP_IF_NONE_MATCH']);
27 header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
28 header('Cache-Control: max-age=31536000');
30 if (function_exists('header_remove')) {
31 header_remove('Last-Modified');
32 header_remove('Expires');
33 header_remove('Cache-Control');
38 if (function_exists('header_remove')) {
39 header_remove('Pragma');
40 header_remove('pragma');
46 $basepath = $a->get_basepath();
48 // If the cache path isn't there, try to create it
49 if (!is_dir($basepath . '/proxy') AND is_writable($basepath)) {
50 mkdir($basepath . '/proxy');
53 // Checking if caching into a folder in the webroot is activated and working
54 $direct_cache = (is_dir($basepath . '/proxy') AND is_writable($basepath . '/proxy'));
56 // Look for filename in the arguments
57 if ((isset($a->argv[1]) OR isset($a->argv[2]) OR isset($a->argv[3])) AND !isset($_REQUEST['url'])) {
58 if (isset($a->argv[3])) {
60 } elseif (isset($a->argv[2])) {
66 if (isset($a->argv[3]) AND ($a->argv[3] == 'thumb')) {
70 // thumb, small, medium and large.
71 if (substr($url, -6) == ':micro') {
74 $url = substr($url, 0, -6);
75 } elseif (substr($url, -6) == ':thumb') {
78 $url = substr($url, 0, -6);
79 } elseif (substr($url, -6) == ':small') {
81 $url = substr($url, 0, -6);
83 } elseif (substr($url, -7) == ':medium') {
85 $url = substr($url, 0, -7);
86 $sizetype = ':medium';
87 } elseif (substr($url, -6) == ':large') {
89 $url = substr($url, 0, -6);
93 $pos = strrpos($url, '=.');
95 $url = substr($url, 0, $pos + 1);
98 $url = str_replace(array('.jpg', '.jpeg', '.gif', '.png'), array('','','',''), $url);
100 $url = base64_decode(strtr($url, '-_', '+/'), true);
103 $_REQUEST['url'] = $url;
106 $direct_cache = false;
109 if (!$direct_cache) {
110 $urlhash = 'pic:' . sha1($_REQUEST['url']);
112 $cachefile = get_cachefile(hash('md5', $_REQUEST['url']));
113 if ($cachefile != '' AND file_exists($cachefile)) {
114 $img_str = file_get_contents($cachefile);
115 $mime = image_type_to_mime_type(exif_imagetype($cachefile));
117 header('Content-type: ' . $mime);
118 header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
119 header('Etag: "' . md5($img_str) . '"');
120 header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
121 header('Cache-Control: max-age=31536000');
123 // reduce quality - if it isn't a GIF
124 if ($mime != 'image/gif') {
125 $img = new Photo($img_str, $mime);
126 if ($img->is_valid()) {
127 $img_str = $img->imageString();
141 if (!$direct_cache AND ($cachefile == '')) {
142 $r = qu("SELECT * FROM `photo` WHERE `resource-id` = '%s' LIMIT 1", $urlhash);
143 if (dbm::is_result($r)) {
144 $img_str = $r[0]['data'];
145 $mime = $r[0]['desc'];
147 $mime = 'image/jpeg';
152 if (!dbm::is_result($r)) {
153 // It shouldn't happen but it does - spaces in URL
154 $_REQUEST['url'] = str_replace(' ', '+', $_REQUEST['url']);
156 $img_str = fetch_url($_REQUEST['url'], true, $redirects, 10);
158 $tempfile = tempnam(get_temppath(), 'cache');
159 file_put_contents($tempfile, $img_str);
160 $mime = image_type_to_mime_type(exif_imagetype($tempfile));
163 // If there is an error then return a blank image
164 if ((substr($a->get_curl_code(), 0, 1) == '4') OR (!$img_str)) {
165 $img_str = file_get_contents('images/blank.png');
167 $cachefile = ''; // Clear the cachefile so that the dummy isn't stored
169 $img = new Photo($img_str, 'image/png');
170 if ($img->is_valid()) {
171 $img->scaleImage(10);
172 $img_str = $img->imageString();
174 } elseif ($mime != 'image/jpeg' AND !$direct_cache AND $cachefile == '') {
175 $image = @imagecreatefromstring($img_str);
177 if ($image === FALSE) {
181 q("INSERT INTO `photo`
182 ( `uid`, `contact-id`, `guid`, `resource-id`, `created`, `edited`, `filename`, `album`, `height`, `width`, `desc`, `data`, `scale`, `profile`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
183 VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' )",
184 0, 0, get_guid(), dbesc($urlhash),
185 dbesc(datetime_convert()),
186 dbesc(datetime_convert()),
187 dbesc(basename(dbesc($_REQUEST['url']))),
189 intval(imagesy($image)),
190 intval(imagesx($image)),
195 dbesc(''), dbesc(''), dbesc(''), dbesc('')
199 $img = new Photo($img_str, $mime);
200 if ($img->is_valid() AND !$direct_cache AND ($cachefile == '')) {
201 $img->store(0, 0, $urlhash, $_REQUEST['url'], '', 100);
206 $img_str_orig = $img_str;
208 // reduce quality - if it isn't a GIF
209 if ($mime != 'image/gif') {
210 $img = new Photo($img_str, $mime);
211 if ($img->is_valid()) {
212 $img->scaleImage($size);
213 $img_str = $img->imageString();
217 // If there is a real existing directory then put the cache file there
218 // advantage: real file access is really fast
219 // Otherwise write in cachefile
220 if ($valid AND $direct_cache) {
221 file_put_contents($basepath . '/proxy/' . proxy_url($_REQUEST['url'], true), $img_str_orig);
222 if ($sizetype != '') {
223 file_put_contents($basepath . '/proxy/' . proxy_url($_REQUEST['url'], true) . $sizetype, $img_str);
225 } elseif ($cachefile != '') {
226 file_put_contents($cachefile, $img_str_orig);
229 header('Content-type: ' . $mime);
231 // Only output the cache headers when the file is valid
233 header('Last-Modified: ' . gmdate('D, d M Y H:i:s', time()) . ' GMT');
234 header('Etag: "' . md5($img_str) . '"');
235 header('Expires: ' . gmdate('D, d M Y H:i:s', time() + (31536000)) . ' GMT');
236 header('Cache-Control: max-age=31536000');
245 * @brief Transform a remote URL into a local one
247 * This function only performs the URL replacement on http URL and if the
248 * provided URL isn't local, "the isn't deactivated" (sic) and if the config
249 * system.proxy_disabled is set to false.
251 * @param string $url The URL to proxyfy
252 * @param bool $writemode Returns a local path the remote URL should be saved to
253 * @param string $size One of the PROXY_SIZE_* constants
255 * @return string The proxyfied URL or relative path
257 function proxy_url($url, $writemode = false, $size = '') {
260 if (substr($url, 0, strlen('http')) !== 'http') {
264 // Only continue if it isn't a local image and the isn't deactivated
265 if (proxy_is_local_image($url)) {
266 $url = str_replace(normalise_link(App::get_baseurl()) . '/', App::get_baseurl() . '/', $url);
270 if (get_config('system', 'proxy_disabled')) {
274 // Image URL may have encoded ampersands for display which aren't desirable for proxy
275 $url = html_entity_decode($url, ENT_NOQUOTES, 'utf-8');
277 // Creating a sub directory to reduce the amount of files in the cache directory
278 $basepath = $a->get_basepath() . '/proxy';
280 $shortpath = hash('md5', $url);
281 $longpath = substr($shortpath, 0, 2);
283 if (is_dir($basepath) AND $writemode AND !is_dir($basepath . '/' . $longpath)) {
284 mkdir($basepath . '/' . $longpath);
285 chmod($basepath . '/' . $longpath, 0777);
288 $longpath .= '/' . strtr(base64_encode($url), '+/', '-_');
290 // Extract the URL extension
291 $extension = pathinfo(parse_url($url, PHP_URL_PATH), PATHINFO_EXTENSION);
293 $extensions = array('jpg', 'jpeg', 'gif', 'png');
294 if (in_array($extension, $extensions)) {
295 $shortpath .= '.' . $extension;
296 $longpath .= '.' . $extension;
299 $proxypath = App::get_baseurl() . '/proxy/' . $longpath;
305 // Too long files aren't supported by Apache
306 // Writemode in combination with long files shouldn't be possible
307 if ((strlen($proxypath) > 250) AND $writemode) {
309 } elseif (strlen($proxypath) > 250) {
310 return App::get_baseurl() . '/proxy/' . $shortpath . '?url=' . urlencode($url);
311 } elseif ($writemode) {
314 return $proxypath . $size;
322 function proxy_is_local_image($url) {
323 if ($url[0] == '/') {
327 if (strtolower(substr($url, 0, 5)) == 'data:') {
331 // links normalised - bug #431
332 $baseurl = normalise_link(App::get_baseurl());
333 $url = normalise_link($url);
334 return (substr($url, 0, strlen($baseurl)) == $baseurl);
338 * @brief Return the array of query string parameters from a URL
341 * @return array Associative array of query string parameters
343 function proxy_parse_query($url) {
344 $query = parse_url($url, PHP_URL_QUERY);
345 $query = html_entity_decode($query);
346 $query_list = explode('&', $query);
349 foreach ($query_list as $key_value) {
350 $key_value_list = explode('=', $key_value);
351 $arr[$key_value_list[0]] = $key_value_list[1];
354 unset($url, $query_list, $url);
358 function proxy_img_cb($matches) {
359 // if the picture seems to be from another picture cache then take the original source
360 $queryvar = proxy_parse_query($matches[2]);
361 if (($queryvar['url'] != '') AND (substr($queryvar['url'], 0, 4) == 'http')) {
362 $matches[2] = urldecode($queryvar['url']);
365 // following line changed per bug #431
366 if (proxy_is_local_image($matches[2])) {
367 return $matches[1] . $matches[2] . $matches[3];
370 return $matches[1] . proxy_url(htmlspecialchars_decode($matches[2])) . $matches[3];
373 function proxy_parse_html($html) {
374 $html = str_replace(normalise_link(App::get_baseurl()) . '/', App::get_baseurl() . '/', $html);
376 return preg_replace_callback('/(<img [^>]*src *= *["\'])([^"\']+)(["\'][^>]*>)/siU', 'proxy_img_cb', $html);