]> git.mxchange.org Git - friendica-addons.git/blob - privacy_image_cache/privacy_image_cache.php
privacy_image_cache: If the cached file would be too long then don't cache it.
[friendica-addons.git] / privacy_image_cache / privacy_image_cache.php
1 <?php
2
3 /**
4  * Name: Privacy Image Cache
5  * Version: 0.1
6  * Author: Tobias Hößl <https://github.com/CatoTH/>
7  */
8
9 define("PRIVACY_IMAGE_CACHE_DEFAULT_TIME", 86400); // 1 Day
10
11 require_once('include/security.php');
12
13 function privacy_image_cache_install() {
14     register_hook('prepare_body', 'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_prepare_body_hook');
15  //   register_hook('bbcode',       'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_bbcode_hook');
16     register_hook('display_item', 'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_display_item_hook');
17     register_hook('ping_xmlize',  'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_ping_xmlize_hook');
18     register_hook('cron',         'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_cron');
19 }
20
21
22 function privacy_image_cache_uninstall() {
23     unregister_hook('prepare_body', 'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_prepare_body_hook');
24     unregister_hook('bbcode',       'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_bbcode_hook');
25     unregister_hook('display_item', 'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_display_item_hook');
26     unregister_hook('ping_xmlize',  'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_ping_xmlize_hook');
27     unregister_hook('cron',         'addon/privacy_image_cache/privacy_image_cache.php', 'privacy_image_cache_cron');
28 }
29
30
31 function privacy_image_cache_module() {}
32
33 function privacy_image_cache_init() {
34         global $a, $_SERVER;
35
36         if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
37                 header('HTTP/1.1 304 Not Modified');
38                 header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
39                 header('Etag: '.$_SERVER['HTTP_IF_NONE_MATCH']);
40                 header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
41                 header("Cache-Control: max-age=31536000");
42                 if(function_exists('header_remove')) {
43                         header_remove('Last-Modified');
44                         header_remove('Expires');
45                         header_remove('Cache-Control');
46                 }
47                 exit;
48         }
49
50         //if ($a->config["system"]["db_log"] != "")
51         //      $stamp1 = microtime(true);
52
53         if(function_exists('header_remove')) {
54                 header_remove('Pragma');
55                 header_remove('pragma');
56         }
57
58         $thumb = false;
59
60         // Look for filename in the arguments
61         if (isset($a->argv[1]) OR isset($a->argv[2])) {
62                 if (isset($a->argv[2]))
63                         $url = $a->argv[2];
64                 else
65                         $url = $a->argv[1];
66
67                 $pos = strrpos($url, "==.");
68                 if ($pos)
69                         $url = substr($url, 0, $pos+2);
70
71                 $url = base64_decode(strtr($url, '-_', '+/'), true);
72                 if ($url)
73                         $_REQUEST['url'] = $url;
74
75                 $thumb = (isset($a->argv[3]) and ($a->argv[3] == "thumb"));
76         }
77
78         $urlhash = 'pic:' . sha1($_REQUEST['url']);
79         // Double encoded url - happens with Diaspora
80         $urlhash2 = 'pic:' . sha1(urldecode($_REQUEST['url']));
81
82         $cachefile = get_cachefile(hash("md5", $_REQUEST['url']));
83         if ($cachefile != '') {
84                 if (file_exists($cachefile)) {
85                         $img_str = file_get_contents($cachefile);
86
87                         $mime = image_type_to_mime_type(exif_imagetype($cachefile));
88
89                         header("Content-type: $mime");
90                         header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
91                         header('Etag: "'.md5($img_str).'"');
92                         header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
93                         header("Cache-Control: max-age=31536000");
94
95                         echo $img_str;
96
97                         //if ($a->config["system"]["db_log"] != "") {
98                         //      $stamp2 = microtime(true);
99                         //      $duration = round($stamp2-$stamp1, 3);
100                         //      if ($duration > $a->config["system"]["db_loglimit"])
101                         //              @file_put_contents($a->config["system"]["db_log"], $duration."\t".strlen($img_str)."\t".$_REQUEST['url']."\n", FILE_APPEND);
102                         //}
103
104                         killme();
105                 }
106         }
107
108         require_once("Photo.php");
109
110         $valid = true;
111
112         $r = q("SELECT * FROM `photo` WHERE `resource-id` in ('%s', '%s') LIMIT 1", $urlhash, $urlhash2);
113         if (count($r)) {
114                 $img_str = $r[0]['data'];
115                 $mime = $r[0]["desc"];
116                 if ($mime == "") $mime = "image/jpeg";
117
118         } else {
119                 // It shouldn't happen but it does - spaces in URL
120                 $_REQUEST['url'] = str_replace(" ", "+", $_REQUEST['url']);
121
122                 $img_str = fetch_url($_REQUEST['url'],true);
123
124                 $tempfile = tempnam(get_config("system","temppath"), "cache");
125                 file_put_contents($tempfile, $img_str);
126                 $mime = image_type_to_mime_type(exif_imagetype($tempfile));
127                 unlink($tempfile);
128
129                 // If there is an error then return a blank image
130                 if ((substr($a->get_curl_code(), 0, 1) == "4") or (!$img_str)) {
131                         $img_str = file_get_contents("images/blank.png");
132                         $mime = "image/png";
133                         $cachefile = ""; // Clear the cachefile so that the dummy isn't stored
134                         $valid = false;
135                         $img = new Photo($img_str);
136                         if($img->is_valid()) {
137                                 $img->scaleImage(1);
138                                 $img_str = $img->imageString();
139                         }
140                 //} else if (substr($img_str, 0, 6) == "GIF89a") {
141                 } else if ($mime != "image/jpeg") {
142                         $image = @imagecreatefromstring($img_str);
143
144                         if($image === FALSE) die();
145
146                         q("INSERT INTO `photo`
147                         ( `uid`, `contact-id`, `guid`, `resource-id`, `created`, `edited`, `filename`, `album`, `height`, `width`, `desc`, `data`, `scale`, `profile`, `allow_cid`, `allow_gid`, `deny_cid`, `deny_gid` )
148                         VALUES ( %d, %d, '%s', '%s', '%s', '%s', '%s', '%s', %d, %d, '%s', '%s', %d, %d, '%s', '%s', '%s', '%s' )",
149                                 0, 0, get_guid(), dbesc($urlhash),
150                                 dbesc(datetime_convert()),
151                                 dbesc(datetime_convert()),
152                                 dbesc(basename(dbesc($_REQUEST["url"]))),
153                                 dbesc(''),
154                                 intval(imagesy($image)),
155                                 intval(imagesx($image)),
156                                 $mime,
157                                 dbesc($img_str),
158                                 100,
159                                 intval(0),
160                                 dbesc(''), dbesc(''), dbesc(''), dbesc('')
161                         );
162
163                 } else {
164                         $img = new Photo($img_str);
165                         if($img->is_valid()) {
166                                 $img->store(0, 0, $urlhash, $_REQUEST['url'], '', 100);
167                                 if ($thumb)
168                                         $img->scaleImage(200); // Test
169                                 $img_str = $img->imageString();
170                         }
171                         $mime = "image/jpeg";
172                 }
173         }
174
175
176         // If there is a real existing directory then put the cache file there
177         // advantage: real file access is really fast
178         // Otherwise write in cachefile
179         if ($valid AND is_dir($_SERVER["DOCUMENT_ROOT"]."/privacy_image_cache"))
180                 file_put_contents($_SERVER["DOCUMENT_ROOT"]."/privacy_image_cache/".privacy_image_cache_cachename($_REQUEST['url'], true), $img_str);
181         elseif ($cachefile != '')
182                 file_put_contents($cachefile, $img_str);
183
184         header("Content-type: $mime");
185
186         // Only output the cache headers when the file is valid
187         if ($valid) {
188                 header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
189                 header('Etag: "'.md5($img_str).'"');
190                 header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
191                 header("Cache-Control: max-age=31536000");
192         }
193
194         echo $img_str;
195
196         //if ($a->config["system"]["db_log"] != "") {
197         //      $stamp2 = microtime(true);
198         //      $duration = round($stamp2-$stamp1, 3);
199         //      if ($duration > $a->config["system"]["db_loglimit"])
200         //              @file_put_contents($a->config["system"]["db_log"], $duration."\t".strlen($img_str)."\t".$_REQUEST['url']."\n", FILE_APPEND);
201         //}
202
203         killme();
204 }
205
206 function privacy_image_cache_cachename($url, $writemode = false) {
207         global $_SERVER;
208
209         $basepath = $_SERVER["DOCUMENT_ROOT"]."/privacy_image_cache";
210
211         $path = substr(hash("md5", $url), 0, 2);
212
213         if (is_dir($basepath) and $writemode)
214                 if (!is_dir($basepath."/".$path)) {
215                         mkdir($basepath."/".$path);
216                         chmod($basepath."/".$path, 0777);
217                 }
218
219         $path .= "/".strtr(base64_encode($url), '+/', '-_');
220
221         return($path);
222 }
223
224 /**
225  * @param $url string
226  * @return boolean
227  */
228 function privacy_image_cache_is_local_image($url) {
229         if ($url[0] == '/') return true;
230
231         if (strtolower(substr($url, 0, 5)) == "data:") return true;
232
233         // Check if the cached path would be longer than 255 characters - apache doesn't like it
234         if (is_dir($_SERVER["DOCUMENT_ROOT"]."/privacy_image_cache")) {
235                 $cachedurl = get_app()->get_baseurl()."/privacy_image_cache/". privacy_image_cache_cachename($url);
236                 if (strlen($url) > 255)
237                         return true;
238         }
239
240         // links normalised - bug #431
241         $baseurl = normalise_link(get_app()->get_baseurl());
242         $url = normalise_link($url);
243         return (substr($url, 0, strlen($baseurl)) == $baseurl);
244 }
245
246 /**
247  * @param array $matches
248  * @return string
249  */
250 function privacy_image_cache_img_cb($matches) {
251         // following line changed per bug #431
252         if (privacy_image_cache_is_local_image($matches[2]))
253                 return $matches[1] . $matches[2] . $matches[3];
254
255         //return $matches[1] . get_app()->get_baseurl() . "/privacy_image_cache/?url=" . addslashes(rawurlencode(htmlspecialchars_decode($matches[2]))) . $matches[3];
256
257         return $matches[1].get_app()->get_baseurl()."/privacy_image_cache/". privacy_image_cache_cachename(htmlspecialchars_decode($matches[2])).$matches[3];
258 }
259
260 /**
261  * @param App $a
262  * @param string $o
263  */
264 function privacy_image_cache_prepare_body_hook(&$a, &$o) {
265         $o["html"] = preg_replace_callback("/(<img [^>]*src *= *[\"'])([^\"']+)([\"'][^>]*>)/siU", "privacy_image_cache_img_cb", $o["html"]);
266 }
267
268 /**
269  * @param App $a
270  * @param string $o
271  * Function disabled because the plugin moved
272  */
273 function privacy_image_cache_bbcode_hook(&$a, &$o) {
274         //$o = preg_replace_callback("/(<img [^>]*src *= *[\"'])([^\"']+)([\"'][^>]*>)/siU", "privacy_image_cache_img_cb", $o);
275 }
276
277
278 /**
279  * @param App $a
280  * @param string $o
281  */
282 function privacy_image_cache_display_item_hook(&$a, &$o) {
283     if (isset($o["output"])) {
284         if (isset($o["output"]["thumb"]) && !privacy_image_cache_is_local_image($o["output"]["thumb"]))
285             $o["output"]["thumb"] = $a->get_baseurl() . "/privacy_image_cache/".privacy_image_cache_cachename($o["output"]["thumb"]);
286             //$o["output"]["thumb"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["thumb"])));
287         if (isset($o["output"]["author-avatar"]) && !privacy_image_cache_is_local_image($o["output"]["author-avatar"]))
288             $o["output"]["author-avatar"] = $a->get_baseurl() . "/privacy_image_cache/".privacy_image_cache_cachename($o["output"]["author-avatar"]);
289             //$o["output"]["author-avatar"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["author-avatar"])));
290         if (isset($o["output"]["owner-avatar"]) && !privacy_image_cache_is_local_image($o["output"]["owner-avatar"]))
291             $o["output"]["owner-avatar"] = $a->get_baseurl() . "/privacy_image_cache/".privacy_image_cache_cachename($o["output"]["owner-avatar"]);
292             //$o["output"]["owner-avatar"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["owner-avatar"])));
293     }
294 }
295
296
297 /**
298  * @param App $a
299  * @param string $o
300  */
301 function privacy_image_cache_ping_xmlize_hook(&$a, &$o) {
302     if ($o["photo"] != "" && !privacy_image_cache_is_local_image($o["photo"]))
303         $o["photo"] = $a->get_baseurl() . "/privacy_image_cache/".privacy_image_cache_cachename($o["photo"]);
304         //$o["photo"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["photo"])));
305 }
306
307
308 /**
309  * @param App $a
310  * @param null|object $b
311  */
312 function privacy_image_cache_cron(&$a = null, &$b = null) {
313     $cachetime = get_config('privacy_image_cache','cache_time');
314     if (!$cachetime) $cachetime = PRIVACY_IMAGE_CACHE_DEFAULT_TIME;
315
316     $last = get_config('pi_cache','last_delete');
317     $time = time();
318     if ($time < ($last + 3600)) return;
319
320     logger("Purging old Cache of the Privacy Image Cache", LOGGER_DEBUG);
321     q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%" AND `created` < NOW() - INTERVAL %d SECOND', $cachetime);
322     set_config('pi_cache', 'last_delete', $time);
323
324     clear_cache($a->get_basepath(), $a->get_basepath()."/privacy_image_cache");
325 }
326
327
328
329
330 /**
331  * @param App $a
332  * @param null|object $o
333  */
334 function privacy_image_cache_plugin_admin(&$a, &$o){
335
336
337     $o = '<input type="hidden" name="form_security_token" value="' . get_form_security_token("picsave") . '">';
338
339     $cachetime = get_config('privacy_image_cache','cache_time');
340     if (!$cachetime) $cachetime = PRIVACY_IMAGE_CACHE_DEFAULT_TIME;
341     $cachetime_h = Ceil($cachetime / 3600);
342
343     $o .= '<label for="pic_cachetime">' . t('Lifetime of the cache (in hours)') . '</label>
344         <input id="pic_cachetime" name="cachetime" type="text" value="' . escape_tags($cachetime_h) . '"><br style="clear: both;">';
345
346     $o .= '<input type="submit" name="save" value="' . t('Save') . '">';
347
348     $o .= '<h4>' . t('Cache Statistics') . '</h4>';
349
350     $num = q('SELECT COUNT(*) num, SUM(LENGTH(data)) size FROM `photo` WHERE `uid`=0 AND `contact-id`=0 AND `resource-id` LIKE "pic:%%"');
351     $o .= '<label for="statictics_num">' . t('Number of items') . '</label><input style="color: gray;" id="statistics_num" disabled value="' . escape_tags($num[0]['num']) . '"><br style="clear: both;">';
352     $size = Ceil($num[0]['size'] / (1024 * 1024));
353     $o .= '<label for="statictics_size">' . t('Size of the cache') . '</label><input style="color: gray;" id="statistics_size" disabled value="' . $size . ' MB"><br style="clear: both;">';
354
355     $o .= '<input type="submit" name="delete_all" value="' . t('Delete the whole cache') . '">';
356 }
357
358
359 /**
360  * @param App $a
361  * @param null|object $o
362  */
363 function privacy_image_cache_plugin_admin_post(&$a = null, &$o = null){
364     check_form_security_token_redirectOnErr('/admin/plugins/privacy_image_cache', 'picsave');
365
366     if (isset($_REQUEST['save'])) {
367         $cachetime_h = IntVal($_REQUEST['cachetime']);
368         if ($cachetime_h < 1) $cachetime_h = 1;
369         set_config('privacy_image_cache','cache_time', $cachetime_h * 3600);
370     }
371     if (isset($_REQUEST['delete_all'])) {
372         q('DELETE FROM `photo` WHERE `uid` = 0 AND `resource-id` LIKE "pic:%%"');
373     }
374 }