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

	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']);
	}
?>