]> git.mxchange.org Git - friendica-addons.git/blobdiff - privacy_image_cache/privacy_image_cache.php
New cache system (used in privacy_image_cache)
[friendica-addons.git] / privacy_image_cache / privacy_image_cache.php
index f0d8e39ac55b24b2a5d4b31a1900d61911cc2bcc..93f9c34eec4e84d017cd17091c5bb359b3a82edf 100644 (file)
@@ -32,7 +32,24 @@ function privacy_image_cache_module() {}
 
 
 function privacy_image_cache_init() {
-       global $a;
+       global $a, $_SERVER;
+
+       if (isset($_SERVER['HTTP_IF_MODIFIED_SINCE'])) {
+               header('HTTP/1.1 304 Not Modified');
+               header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+               header('Etag: '.$_SERVER['HTTP_IF_NONE_MATCH']);
+               header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+               header("Cache-Control: max-age=31536000");
+               if(function_exists('header_remove')) {
+                       header_remove('Last-Modified');
+                       header_remove('Expires');
+                       header_remove('Cache-Control');
+               }
+               exit;
+       }
+
+       if ($a->config["system"]["db_log"] != "")
+               $stamp1 = microtime(true);
 
        if(function_exists('header_remove')) {
                header_remove('Pragma');
@@ -43,32 +60,49 @@ function privacy_image_cache_init() {
        // Double encoded url - happens with Diaspora
        $urlhash2 = 'pic:' . sha1(urldecode($_REQUEST['url']));
 
-       $cache = get_config('system','itemcache');
-       if (($cache != '') and is_dir($cache)) {
-               $cachefile = $cache."/".hash("md5", $urlhash);
+       $cachefile = get_cachefile(hash("md5", $_REQUEST['url']));
+       if ($cachefile != '') {
                if (file_exists($cachefile)) {
                        $img_str = file_get_contents($cachefile);
 
                        $mime = image_type_to_mime_type(exif_imagetype($cachefile));
 
                        header("Content-type: $mime");
-                       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT");
-                       header("Cache-Control: max-age=" . (3600*24));
+                       header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+                       header('Etag: "'.md5($img_str).'"');
+                       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+                       header("Cache-Control: max-age=31536000");
 
                        echo $img_str;
 
+                       if ($a->config["system"]["db_log"] != "") {
+                               $stamp2 = microtime(true);
+                               $duration = round($stamp2-$stamp1, 3);
+                               if ($duration > $a->config["system"]["db_loglimit"])
+                                       @file_put_contents($a->config["system"]["db_log"], $duration."\t".strlen($img_str)."\t".$_REQUEST['url']."\n", FILE_APPEND);
+                       }
+
                        killme();
                }
        }
 
+       require_once("Photo.php");
+
        $r = q("SELECT * FROM `photo` WHERE `resource-id` in ('%s', '%s') LIMIT 1", $urlhash, $urlhash2);
        if (count($r)) {
                $img_str = $r[0]['data'];
                $mime = $r[0]["desc"];
                if ($mime == "") $mime = "image/jpeg";
-       } else {
-               require_once("Photo.php");
 
+               // Test
+               //if ($mime == "image/jpeg") {
+               //      $img = new Photo($img_str);
+               //      if($img->is_valid()) {
+               //              $img->scaleImage(1000);
+               //              $img_str = $img->imageString();
+               //      }
+               //}
+       } else {
                // It shouldn't happen but it does - spaces in URL
                $_REQUEST['url'] = str_replace(" ", "+", $_REQUEST['url']);
 
@@ -110,6 +144,7 @@ function privacy_image_cache_init() {
                        $img = new Photo($img_str);
                        if($img->is_valid()) {
                                $img->store(0, 0, $urlhash, $_REQUEST['url'], '', 100);
+                               //$img->scaleImage(1000); // Test
                                $img_str = $img->imageString();
                        }
                        $mime = "image/jpeg";
@@ -117,15 +152,26 @@ function privacy_image_cache_init() {
        }
 
        // Writing in cachefile
-       if (isset($cachefile) && $cachefile != '')
+       // and (file_exists($cachefile)) and (exif_imagetype($cachefile) > 0))
+       if ($cachefile != '')
                file_put_contents($cachefile, $img_str);
 
        header("Content-type: $mime");
-       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT");
-       header("Cache-Control: max-age=" . (3600*24));
+       //header("Last-Modified: Sat, 01 Apr 1999 12:23:42 GMT");
+       header("Last-Modified: " . gmdate("D, d M Y H:i:s", time()) . " GMT");
+       header('Etag: "'.md5($img_str).'"');
+       header("Expires: " . gmdate("D, d M Y H:i:s", time() + (31536000)) . " GMT");
+       header("Cache-Control: max-age=31536000");
 
        echo $img_str;
 
+       if ($a->config["system"]["db_log"] != "") {
+               $stamp2 = microtime(true);
+               $duration = round($stamp2-$stamp1, 3);
+               if ($duration > $a->config["system"]["db_loglimit"])
+                       @file_put_contents($a->config["system"]["db_log"], $duration."\t".strlen($img_str)."\t".$_REQUEST['url']."\n", FILE_APPEND);
+       }
+
        killme();
 }
 
@@ -183,6 +229,8 @@ function privacy_image_cache_display_item_hook(&$a, &$o) {
             $o["output"]["thumb"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["thumb"])));
         if (isset($o["output"]["author-avatar"]) && !privacy_image_cache_is_local_image($o["output"]["author-avatar"]))
             $o["output"]["author-avatar"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["author-avatar"])));
+        if (isset($o["output"]["owner-avatar"]) && !privacy_image_cache_is_local_image($o["output"]["owner-avatar"]))
+            $o["output"]["owner-avatar"] = $a->get_baseurl() . "/privacy_image_cache/?url=" . escape_tags(addslashes(rawurlencode($o["output"]["owner-avatar"])));
     }
 }