]> git.wh0rd.org - tt-rss.git/blame - image.php
send Last-Modified header with the local image
[tt-rss.git] / image.php
CommitLineData
236ac05c 1<?php
88e8fb3a
AD
2 set_include_path(dirname(__FILE__) ."/include" . PATH_SEPARATOR .
3 get_include_path());
107d0cf3 4
bc0f0785 5 require_once "config.php";
236ac05c 6
f0bd8e65
AD
7 // backwards compatible wrapper for old-style image caching
8 /* if (isset($_GET['url'])) {
9 $url = base64_decode($_GET['url']);
487f0750 10
f0bd8e65 11 $filename = CACHE_DIR . '/images/' . sha1($url) . '.png';
3c696512 12
f0bd8e65
AD
13 if (file_exists($filename)) {
14 header("Content-type: image/png");
15 echo file_get_contents($filename);
16 } else {
17 header("Location: $url");
18 }
19
20 return;
21 } */
22
23 @$hash = basename($_GET['hash']);
24
25 if ($hash) {
26
27 $filename = CACHE_DIR . '/images/' . $hash . '.png';
28
29 if (file_exists($filename)) {
30 header("Content-type: image/png");
dd856b48
MF
31 $stamp = gmdate("D, d M Y H:i:s", filemtime($filename)). " GMT";
32 header("Last-Modified: $stamp", true);
f0bd8e65
AD
33 echo file_get_contents($filename);
34 } else {
35 header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
36 echo "File not found.";
37 }
3c696512 38 }
f0bd8e65 39
236ac05c 40?>