summaryrefslogtreecommitdiff
path: root/mobile
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2011-12-26 13:11:08 +0400
committerAndrew Dolgov <[email protected]>2011-12-26 13:11:08 +0400
commit3c696512fcf85331158f26078616e5684f46a68e (patch)
tree1884f68866d25cc738e631f8a2bfdc38c06f607f /mobile
parent7a5d9b95c4298660c282dc8879d057e6269d2521 (diff)
universal image caching and automatic cache directories maintenance
Diffstat (limited to 'mobile')
-rw-r--r--mobile/image.php19
1 files changed, 16 insertions, 3 deletions
diff --git a/mobile/image.php b/mobile/image.php
index 1fb8368b2..eec72947f 100644
--- a/mobile/image.php
+++ b/mobile/image.php
@@ -1,6 +1,19 @@
<?php
- require_once "../config.php";
- require_once "../lib/simplepie/simplepie.inc";
+ set_include_path(get_include_path() . PATH_SEPARATOR .
+ dirname(__FILE__) . PATH_SEPARATOR .
+ dirname(dirname(__FILE__)) . PATH_SEPARATOR .
+ dirname(dirname(__FILE__)) . "/include" );
- SimplePie_Misc::display_cached_file($_GET['i'], '../'.SIMPLEPIE_CACHE_DIR, 'spi');
+ require_once "config.php";
+
+ chdir('..');
+
+ $filename = CACHE_DIR . '/images/' . sha1($_GET['url']) . '.png';
+
+ if (file_exists($filename)) {
+ header("Content-type: image/png");
+ echo file_get_contents($filename);
+ } else {
+ header("Location: " . $_GET['url']);
+ }
?>