1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250: 251: 252: 253: 254: 255: 256: 257: 258: 259: 260: 261: 262: 263: 264: 265: 266: 267: 268: 269: 270: 271: 272: 273: 274: 275: 276: 277: 278: 279: 280: 281: 282:
<?php
if (!defined('SMF'))
define('SMF', 'proxy');
if (!defined('SMF_VERSION'))
define('SMF_VERSION', '2.1 RC1');
if (!defined('SMF_FULL_VERSION'))
define('SMF_FULL_VERSION', 'SMF ' . SMF_VERSION);
if (!defined('SMF_SOFTWARE_YEAR'))
define('SMF_SOFTWARE_YEAR', '2019');
global $proxyhousekeeping;
class ProxyServer
{
protected $enabled;
protected $maxSize;
protected $secret;
protected $cache;
protected $maxDays;
public function __construct()
{
global $image_proxy_enabled, $image_proxy_maxsize, $image_proxy_secret, $cachedir, $sourcedir;
require_once(dirname(__FILE__) . '/Settings.php');
require_once($sourcedir . '/Subs.php');
error_reporting(0);
$this->enabled = (bool) $image_proxy_enabled;
$this->maxSize = (int) $image_proxy_maxsize;
$this->secret = (string) $image_proxy_secret;
$this->cache = $cachedir . '/images';
$this->maxDays = 5;
}
public function checkRequest()
{
if (!$this->enabled)
return false;
if (!file_exists($this->cache))
if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php'))
return false;
$_GET['request'] = validate_iri($_GET['request']);
if (empty($_GET['hash']) || empty($_GET['request']))
return false;
$hash = $_GET['hash'];
$request = $_GET['request'];
if (md5($request . $this->secret) != $hash)
return false;
$request = iri_to_url($request);
if (!$this->isCached($request))
return $this->cacheImage($request);
return true;
}
public function serve()
{
$request = $_GET['request'];
$cached_file = $this->getCachedPath($request);
$cached = json_decode(file_get_contents($cached_file), true);
$response = $this->checkRequest();
if ($response === -1)
{
send_http_status(404);
exit;
}
if ($response === 0)
{
$this::redirectexit($request);
}
$time = time();
if (!$cached || $time - $cached['time'] > ($this->maxDays * 86400))
{
@unlink($cached_file);
if ($this->checkRequest())
$this->serve();
$this::redirectexit($request);
}
$eTag = '"' . substr(sha1($request) . $cached['time'], 0, 64) . '"';
if (!empty($_SERVER['HTTP_IF_NONE_MATCH']) && strpos($_SERVER['HTTP_IF_NONE_MATCH'], $eTag) !== false)
{
send_http_status(304);
exit;
}
$contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : '');
if ($contentParts[0] != 'image')
exit;
$max_age = $time - $cached['time'] + (5 * 86400);
header('content-type: ' . $cached['content_type']);
header('content-length: ' . $cached['size']);
header('cache-control: public, max-age=' . $max_age);
header('last-modified: ' . gmdate('D, d M Y H:i:s', $cached['time']) . ' GMT');
header('etag: ' . $eTag);
echo base64_decode($cached['body']);
}
protected function getCachedPath($request)
{
return $this->cache . '/' . sha1($request . $this->secret);
}
protected function isCached($request)
{
return file_exists($this->getCachedPath($request));
}
protected function cacheImage($request)
{
$dest = $this->getCachedPath($request);
$ext = strtolower(pathinfo(parse_url($request, PHP_URL_PATH), PATHINFO_EXTENSION));
$image = fetch_web_data($request);
if (empty($image))
return 0;
$finfo = finfo_open(FILEINFO_MIME_TYPE);
$mime_type = finfo_buffer($finfo, $image);
if ($ext == 'svg' && $mime_type == 'text/plain')
$mime_type = 'image/svg+xml';
if (strpos($mime_type, 'image/') !== 0)
return 0;
$size = strlen($image);
if ($size > ($this->maxSize * 1024))
return 0;
return file_put_contents($dest, json_encode(array(
'content_type' => $mime_type,
'size' => $size,
'time' => time(),
'body' => base64_encode($image),
))) === false ? -1 : 1;
}
static public function redirectexit($request)
{
header('Location: ' . un_htmlspecialchars($request), false, 301);
exit;
}
public function housekeeping()
{
$path = $this->cache . '/';
if ($handle = opendir($path))
{
while (false !== ($file = readdir($handle)))
{
$filelastmodified = filemtime($path . $file);
if ((time() - $filelastmodified) > ($this->maxDays * 86400))
{
unlink($path . $file);
}
}
closedir($handle);
}
}
}
if (empty($proxyhousekeeping))
{
$proxy = new ProxyServer();
$proxy->serve();
}
?>