forked from SimpleMachines/SMF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
proxy.php
203 lines (167 loc) · 4.97 KB
/
proxy.php
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
<?php
/**
* This is a lightweight proxy for serving images, generally meant to be used alongside SSL
*
* Simple Machines Forum (SMF)
*
* @package SMF
* @author Simple Machines http://www.simplemachines.org
* @copyright 2017 Simple Machines and individual contributors
* @license http://www.simplemachines.org/about/smf/license.php BSD
*
* @version 2.1 Beta 3
*/
define('SMF', 'proxy');
/**
* Class ProxyServer
*/
class ProxyServer
{
/** @var bool $enabled Whether or not this is enabled */
protected $enabled;
/** @var int $maxSize The maximum size for files to cache */
protected $maxSize;
/** @var string $secret A secret code used for hashing */
protected $secret;
/** @var string The cache directory */
protected $cache;
/**
* Constructor, loads up the Settings for the proxy
*
* @access public
*/
public function __construct()
{
global $image_proxy_enabled, $image_proxy_maxsize, $image_proxy_secret, $cachedir, $sourcedir;
require_once(dirname(__FILE__) . '/Settings.php');
require_once($sourcedir . '/Class-CurlFetchWeb.php');
require_once($sourcedir . '/Subs.php');
// Turn off all error reporting; any extra junk makes for an invalid image.
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';
}
/**
* Checks whether the request is valid or not
*
* @access public
* @return bool Whether the request is valid
*/
public function checkRequest()
{
if (!$this->enabled)
return false;
// Try to create the image cache directory if it doesn't exist
if (!file_exists($this->cache))
if (!mkdir($this->cache) || !copy(dirname($this->cache) . '/index.php', $this->cache . '/index.php'))
return false;
if (empty($_GET['hash']) || empty($_GET['request']))
return false;
$hash = $_GET['hash'];
$request = $_GET['request'];
if (md5($request . $this->secret) != $hash)
return false;
// Attempt to cache the request if it doesn't exist
if (!$this->isCached($request))
return $this->cacheImage($request);
return true;
}
/**
* Serves the request
*
* @access public
* @return void
*/
public function serve()
{
$request = $_GET['request'];
$cached_file = $this->getCachedPath($request);
$cached = json_decode(file_get_contents($cached_file), true);
// Did we get an error when trying to fetch the image
$response = $this->checkRequest();
if (is_int($response)) {
// Throw a 404
header('HTTP/1.0 404 Not Found');
exit;
}
// Is the cache expired?
if (!$cached || time() - $cached['time'] > (5 * 86400))
{
@unlink($cached_file);
if ($this->checkRequest())
$this->serve();
redirectexit($request);
}
// Right, image not cached? Simply redirect, then.
if (!$response)
redirectexit($request);
// Make sure we're serving an image
$contentParts = explode('/', !empty($cached['content_type']) ? $cached['content_type'] : '');
if ($contentParts[0] != 'image')
exit;
header('Content-type: ' . $cached['content_type']);
header('Content-length: ' . $cached['size']);
echo base64_decode($cached['body']);
}
/**
* Returns the request's hashed filepath
*
* @access public
* @param string $request The request to get the path for
* @return string The hashed filepath for the specified request
*/
protected function getCachedPath($request)
{
return $this->cache . '/' . sha1($request . $this->secret);
}
/**
* Check whether the image exists in local cache or not
*
* @access protected
* @param string $request The image to check for in the cache
* @return bool Whether or not the requested image is cached
*/
protected function isCached($request)
{
return file_exists($this->getCachedPath($request));
}
/**
* Attempts to cache the image while validating it
*
* @access protected
* @param string $request The image to cache/validate
* @return bool|int Whether the specified image was cached or error code when accessing
*/
protected function cacheImage($request)
{
$dest = $this->getCachedPath($request);
$curl = new curl_fetch_web_data(array(CURLOPT_BINARYTRANSFER => 1));
$request = $curl->get_url_data($request);
$responseCode = $request->result('code');
$response = $request->result();
if (empty($response))
return false;
if ($responseCode != 200) {
return $request->result('code');
}
$headers = $response['headers'];
// Make sure the url is returning an image
$contentParts = explode('/', !empty($headers['content-type']) ? $headers['content-type'] : '');
if ($contentParts[0] != 'image')
return false;
// Validate the filesize
if ($response['size'] > ($this->maxSize * 1024))
return false;
return file_put_contents($dest, json_encode(array(
'content_type' => $headers['content-type'],
'size' => $response['size'],
'time' => time(),
'body' => base64_encode($response['body']),
)));
}
}
$proxy = new ProxyServer();
$proxy->serve();
?>