php-proxy.php

Gesponsorde koppelingen

PHP script bestanden

  1. php-proxy.php

« Lees de omschrijving en reacties

Code (php)
PHP script in nieuw venster Selecteer het PHP script
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
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
<?php
/**
* Copyright (C) 2012 Pim de Haan
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
* of the Software, and to permit persons to whom the Software is furnished to do
* so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/

/**
* The Proxy class
* Allows the user to easily create a proxy to any site.
* Simple copy both the .htaccess and this file to any map in the webserver
* and that's it.
*/

class Proxy
{
    /**
*
* @var curl_handle
*/

    protected $ch;
    
    /**
* URI to add before relative urls as well as default URL
* @var string
*/

    protected $prefix = 'http://google.com';
    
    /**
* Array of domains whose links will be routed through the proxy
* @var array
*/

    protected $blockedDomains = array('google.com');
    
    /**
* Mime type of page
* @var string
*/

    protected $pageType;
    
    /**
* Callback for setting a specific banner. The DOM is given as argument
* @var callback
*/

    protected $bannerCallback;
    
    /**
* Url to proxy.php
* @var string
*/

    protected $baseUrl;
    
    public function __construct()
    {

        $this->ch = curl_init();
        curl_setopt($this->ch, CURLOPT_HEADER, true);
        curl_setopt($this->ch, CURLOPT_RETURNTRANSFER, true);
        @
curl_setopt($this->ch, CURLOPT_FOLLOWLOCATION, true);
        curl_setopt($this->ch, CURLOPT_MAXREDIRS, 10);
        curl_setopt($this->ch, CURLOPT_USERAGENT, 'Opera/9.23 (Windows NT 5.1; U; en)');
        
        // URL without proxy.php
        $this->baseUrl = substr($_SERVER['PHP_SELF'], 0, -9);
    }

    
    /**
* @see $bannerCallback
* @param calback $callback
*/

    public function setBannerCallback($callback)
    {

        if(!is_callable($callback))
            throw new InvalidArgumentException('Argument should be callable');
        $this->bannerCallback = $callback;
    }

    
    /**
* Run
* @param string $url
* @param array $get $_GET global var
* @param array $post $_POST global var
* @return string Response
*/

    public function run($url, $get, $post)
    {

        // Use default
        if(empty($url))
            $url = $this->prefix;
        // Decode
        else
            $url = $this->decodeUrl($url);
        
        // Apppend get params to request
        if($get) {
            $url .= '?'.http_build_query($get);
        }

        
        curl_setopt($this->ch, CURLOPT_URL, $url);
        
        // set optional post params
        if($post) {
            curl_setopt($this->ch, CURLOPT_POSTFIELDS, $post);
            curl_setopt($this->ch, CURLOPT_POST, true);
        }

        
        // See below
        $return = $this->curlExecFollow($this->ch);
        
        // Throw exception on error
        if($return === false)
            throw new Exception($this->error());
        
        // Strip redirect headers
        $body = $return;
        while(strpos($body, 'HTTP') === 0) {
            list($header, $body) = explode("\r\n\r\n", $body, 2);
        }

        
        // Set response headers
        $this->setResponseHeaders($header);
              
        
        // Rewrite links according to page type
        if($this->pageType == 'text/html')
            $body = $this->rewriteHtml($body);
        elseif($this->pageType == 'text/css')
            $body = $this->rewriteLinksInCss($body);
        
        return $body;
    }

    
    protected function setResponseHeaders($header)
    {

        // Headers that should be mapped to client
        $mappedHeaders = array(
            'Set-Cookie',
            'Expires',
            'Last-Modified',
            'Cache-Control',
            'Content-Type',
            'Pragma'
        );
        
        // Parse headers
        $headers = $this->parseHeaders($header);
        foreach($headers as $name => $value) {
            // If header isn't mapped, don't set it
            if(!array_search($name, $mappedHeaders))
                continue;
            
            // Support for multiple values with same name
            if(is_array($value))
                foreach($value as $part)
                    header($name.': '.$part, false);
            else
                header($name.': '.$value);
        }

        // Set page type
        list($this->pageType) = explode(';', $headers['Content-Type']);
    }

    
    // Parse headers into array
    protected function parseHeaders($header)
    {

        $retVal = array();
        $fields = explode("\r\n", preg_replace('/\x0D\x0A[\x09\x20]+/', ' ', $header));
        foreach( $fields as $field ) {
            if( preg_match('/([^:]+): (.+)/m', $field, $match) ) {
                $match[1] = preg_replace('/(?<=^|[\x09\x20\x2D])./e', 'strtoupper("\0")', strtolower(trim($match[1])));
                if( isset($retVal[$match[1]]) ) {
                    $retVal[$match[1]] = array($retVal[$match[1]], $match[2]);
                }
else {
                    $retVal[$match[1]] = trim($match[2]);
                }
            }
        }

        return $retVal;
    }

    
    /**
* Convert html for use in proxy
* @param string $source HTML input
* @return string HTML output
*/

    protected function rewriteHtml($source)
    {

        // Use dom to easily find links
        $dom = new DOMDocument;
        @
$dom->loadHTML($source);
        
        // Map field to attribute name
        $map = array(
            'form' =>'action',
            'a' => 'href',
            'img' => 'src',
            'script' => 'src',
            'link' => 'href'
        );
        
        // Rewrite each type
        foreach($map as $tagName => $attributeName) {
            // Use Xpath to find all nodes
            foreach($dom->getElementsByTagName($tagName) as $node) {
                // Rewrite attribute accordingly
                if($node->hasAttribute($attributeName)) {
                    $attribute = $node->getAttributeNode($attributeName);
                    $attribute->value = $this->rewriteLink($attribute->value);
                }
            }
        }

        
        // Rewrite links in <style> tag
        foreach($dom->getElementsByTagName('style') as $node) {
            $node->nodeValue = $this->rewriteLinksInCss($node->nodeValue);
        }

        
        // Call bannerCallback to update DOM
        if(isset($this->bannerCallback)) {
            $callback = $this->bannerCallback;
            $dom = $callback($dom);
        }

        
        $html = $dom->saveHTML();
        
        // Allow this ajax call to be routed trough the proxy as well
        $html = str_replace("new Ajax.Updater('artistDetails', '/ajax_details_artinfo.php', {",
                "new Ajax.Updater('artistDetails', '".$this->rewriteLink('/ajax_details_artinfo.php')."', {", $html);
        return $html;
        
    }

    
    /**
* Update links in (inline) css
* @param string $css
* @return string
*/

    protected function rewriteLinksInCss($css)
    {

        // Match on url('x') in css
        return preg_replace_callback('#url\(\'?([^\'\)]+)\'?\)#', array($this, 'rewritleLinksInCssCallback'), $css);
    }

    
    /**
* Helper function
* @param array $matches
* @return string
*/

    protected function rewritleLinksInCssCallback($matches) {
        return "url('".$this->rewriteLink($matches[1])."')";
    }

    
    /**
* Update url so that it routes trough the proxy
* @param string $url
* @return string
*/

    public function rewriteLink($url)
    {

        // Make relative links absolute
        if(strpos($url, '/') === 0 && strpos($url, '/', 1) !== 1) {
            $url = $this->prefix . $url;
        // Add http: to protocol-relative links
        } elseif(strpos($url, '//') === 0) {
            $url = 'http:'.$url;
        }

        
        // Only rewrite blocked domains
        $host = parse_url($url, PHP_URL_HOST);
        foreach($this->blockedDomains as $domain) {
            if(strpos($host, $domain) !== false) {
                $url = $this->encodeUrl($url);
                break;
            }
        }

        
        return htmlentities($url);
    }

    
    /**
*
* @param string $url
* @return string
*/

    protected function encodeUrl($url)
    {

        return $this->baseUrl.substr($url,7);
    }

    
    /**
*
* @param string $url
* @return string
*/

    protected function decodeUrl($url)
    {

        return 'http://'.str_replace(' ', '%20', $url);
    }

    
    /**
* Get error message
* @return string
*/

    protected function error()
    {

        return curl_error($this->ch);
    }

    
    /**
* Allow redirects under safe mode
* @param curl_handle $ch
* @return string
*/

    protected function curlExecFollow($ch)
    {

        $mr = 5;
        if (ini_get('open_basedir') == '' && (ini_get('safe_mode') == 'Off' || ini_get('safe_mode') == '')) {
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, $mr > 0);
            curl_setopt($ch, CURLOPT_MAXREDIRS, $mr);
        }
else {
            curl_setopt($ch, CURLOPT_FOLLOWLOCATION, false);
            if ($mr > 0) {
                $newurl = curl_getinfo($ch, CURLINFO_EFFECTIVE_URL);

                $rch = curl_copy_handle($ch);
                curl_setopt($rch, CURLOPT_HEADER, true);
                curl_setopt($rch, CURLOPT_NOBODY, true);
                curl_setopt($rch, CURLOPT_FORBID_REUSE, false);
                curl_setopt($rch, CURLOPT_RETURNTRANSFER, true);
                do {
                    if(strpos($newurl, '/') === 0)
                            $newurl = $this->prefix.$newurl;
                    
                    curl_setopt($rch, CURLOPT_URL, $newurl);
                    $header = curl_exec($rch);
                    if (curl_errno($rch)) {
                        $code = 0;
                    }
else {
                        $code = curl_getinfo($rch, CURLINFO_HTTP_CODE);
                        if ($code == 301 || $code == 302) {
                            preg_match('/Location:(.*?)\n/', $header, $matches);
                            $newurl = str_replace(' ', '%20', trim(array_pop($matches)));
                        }
else {
                            $code = 0;
                        }
                    }
                }
while ($code && --$mr);
                curl_close($rch);
                if (!$mr) {
                    if ($maxredirect === null) {
                        trigger_error('Too many redirects. When following redirects, libcurl hit the maximum amount.', E_USER_WARNING);
                    }
else {
                        $maxredirect = 0;
                    }

                    return false;
                }

                curl_setopt($ch, CURLOPT_URL, $newurl);
            }
        }

        return curl_exec($ch);
    }
}


try {
    // Use '' al default
    if(isset($_GET['url'])) {
        $url = $_GET['url'];
        unset($_GET['url']);
    }
else {
        $url = '';
    }

    $proxy = new Proxy();
    echo $proxy->run($url, $_GET, $_POST);
}
catch(Exception $e) {
    echo 'Error: '.$e->getMessage();
}

?>

 
 

Om de gebruiksvriendelijkheid van onze website en diensten te optimaliseren maken wij gebruik van cookies. Deze cookies gebruiken wij voor functionaliteiten, analytische gegevens en marketing doeleinden. U vindt meer informatie in onze privacy statement.