summaryrefslogtreecommitdiff
path: root/image.php
blob: 89d05d66036a49d379b3d39241365b22e7d729e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php
	set_include_path(get_include_path() . PATH_SEPARATOR .
		dirname(__FILE__) . "/include");

	require_once "config.php";

	$url = base64_decode($_GET['url']);

	$filename = CACHE_DIR . '/images/' . sha1($url) . '.png';

	if (file_exists($filename)) {
		header("Content-type: image/png");
		echo file_get_contents($filename);
	} else {
		header("Location: $url");
	}
?>