diff options
author | Michael <icarus@dabo.de> | 2012-05-16 08:10:28 +0200 |
---|---|---|
committer | Michael <icarus@dabo.de> | 2012-05-16 08:10:28 +0200 |
commit | 2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7 (patch) | |
tree | 8c569c61c06e50c943addc132286d44c2f8ec178 /mod/photo.php | |
parent | 188829ed46be6d3c7a91380226e26e8292c327be (diff) | |
parent | a3f08c44be78d4517e9f1619811def09b2ec7e7a (diff) | |
download | volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.tar.gz volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.tar.bz2 volse-hubzilla-2b8c4df544f59d611ad1e8fc0dbc5fcd38bee8f7.zip |
Merge branch 'master' of github.com:annando/friendica
Diffstat (limited to 'mod/photo.php')
-rw-r--r-- | mod/photo.php | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/mod/photo.php b/mod/photo.php index 3a7025120..1d38fe8e4 100644 --- a/mod/photo.php +++ b/mod/photo.php @@ -4,6 +4,30 @@ require_once('include/security.php'); function photo_init(&$a) { + // To-Do: + // - checking with realpath + // - checking permissions + /* + $cache = get_config('system','itemcache'); + if (($cache != '') and is_dir($cache)) { + $cachefile = $cache."/".$a->argc."-".$a->argv[1]."-".$a->argv[2]."-".$a->argv[3]; + if (file_exists($cachefile)) { + $data = file_get_contents($cachefile); + + if(function_exists('header_remove')) { + header_remove('Pragma'); + header_remove('pragma'); + } + + header("Content-type: image/jpeg"); + header("Expires: " . gmdate("D, d M Y H:i:s", time() + (3600*24)) . " GMT"); + header("Cache-Control: max-age=" . (3600*24)); + echo $data; + killme(); + // NOTREACHED + } + }*/ + switch($a->argc) { case 4: $person = $a->argv[3]; @@ -27,6 +51,7 @@ function photo_init(&$a) { if(isset($type)) { + /** * Profile photos */ @@ -144,6 +169,10 @@ function photo_init(&$a) { } } + // Writing in cachefile + if (isset($cachefile) && $cachefile != '') + file_put_contents($cachefile, $data); + if(function_exists('header_remove')) { header_remove('Pragma'); header_remove('pragma'); |