PHP反向代理类

5

改自PHP Reverse Proxy PRP,修改了原版中的一些错误,支持了文件上传以及上传文件类型识别,支持指定IP,自适应SAE环境。

2016年6月17日 修正了SAE跳转的BUG

使用方法

1
2
3
4
5
6
7
8
<?php
$proxy=new PhpReverseProxy();
$proxy->port="8080";
$proxy->host="www.xiumu.org";
//$proxy->ip="1.1.1.1";
$proxy->forward_path="";
$proxy->connect();
$proxy->output();


源代码

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
<?php
//Source Code: https://xiumu.org/technology/php-reverse-proxy-class.shtml
class PhpReverseProxy{
  public $publicBaseURL;
  public $outsideHeaders;
  public $XRequestedWith;
  public $sendPost;
  public $port,$host,$ip,$content,$forward_path,$content_type,$user_agent,
    $XFF,$request_method,$IMS,$cacheTime,$cookie,$authorization;
  private $http_code,$lastModified,$version,$resultHeader;
  const chunkSize = 10000;
  function __construct(){
    $this->version="PHP Reverse Proxy (PRP) 1.0";
    $this->port="8080";
    $this->host="127.0.0.1";
    $this->ip="";
    $this->content="";
    $this->forward_path="";
    $this->path="";
    $this->content_type="";
    $this->user_agent="";
    $this->http_code="";
    $this->XFF="";
    $this->request_method="GET";
    $this->IMS=false;
    $this->cacheTime=72000;
    $this->lastModified=gmdate("D, d M Y H:i:s",time()-72000)." GMT";
    $this->cookie="";
    $this->XRequestedWith = "";
    $this->authorization = "";
  }
  function translateURL($serverName) {
    $this->path=$this->forward_path.$_SERVER['REQUEST_URI'];
    if(IS_SAE)
      return $this->translateServer($serverName).$this->path;
    if($_SERVER['QUERY_STRING']=="")
      return $this->translateServer($serverName).$this->path;
    else
    return $this->translateServer($serverName).$this->path."?".$_SERVER['QUERY_STRING'];
  }
  function translateServer($serverName) {
    $s = empty($_SERVER["HTTPS"]) ? ''
      : ($_SERVER["HTTPS"] == "on") ? "s"
      : "";
    $protocol = $this->left(strtolower($_SERVER["SERVER_PROTOCOL"]), "/").$s;
    if($this->port=="") 
      return $protocol."://".$serverName;
    else
      return $protocol."://".$serverName.":".$this->port;
  }
  function left($s1, $s2) {
    return substr($s1, 0, strpos($s1, $s2));
  }
  function preConnect(){
    $this->user_agent=$_SERVER['HTTP_USER_AGENT'];
    $this->request_method=$_SERVER['REQUEST_METHOD'];
    $tempCookie="";
    foreach ($_COOKIE as $i => $value) {
      $tempCookie=$tempCookie." $i=$_COOKIE[$i];";
    }
    $this->cookie=$tempCookie;
    if(empty($_SERVER['HTTP_X_FORWARDED_FOR'])){
      $this->XFF=$_SERVER['REMOTE_ADDR'];
    } else {
      $this->XFF=$_SERVER['HTTP_X_FORWARDED_FOR'].", ".$_SERVER['REMOTE_ADDR'];
    }
 
  }
  function connect(){
    if(empty($_SERVER['HTTP_IF_MODIFIED_SINCE'])){
      $this->preConnect();
      $ch=curl_init();
      if($this->request_method=="POST"){
        curl_setopt($ch, CURLOPT_POST,1);
 
        $postData = array();
        $filePost = false;
        $uploadPath = 'uploads/';
        if (IS_SAE)
           $uploadPath = SAE_TMP_PATH;
 
        if(count($_FILES)>0){
            if(!is_writable($uploadPath)){
                die('You cannot upload to the specified directory, please CHMOD it to 777.');
            }
            foreach($_FILES as $key => $fileArray){ 
                copy($fileArray["tmp_name"], $uploadPath . $fileArray["name"]);
                $proxyLocation = "@" . $uploadPath . $fileArray["name"] . ";type=" . $fileArray["type"];
                $postData = array($key => $proxyLocation);
                $filePost = true;
            }
        }
 
        foreach($_POST as $key => $value){
            if(!is_array($value)){
          $postData[$key] = $value;
            }
            else{
          $postData[$key] = serialize($value);
            }
        }
 
        if(!$filePost){
            //$postData = http_build_query($postData);
           $postString = "";
           $firstLoop = true;
           foreach($postData as $key => $value){
            $parameterItem = urlencode($key)."=".urlencode($value);
            if($firstLoop){
          $postString .=  $parameterItem;
            }
            else{
          $postString .=  "&".$parameterItem;
            }
            $firstLoop = false; 
           }
           $postData = $postString;
        }
 
        //echo print_r($postData);
 
        //curl_setopt($ch, CURLOPT_VERBOSE, 0);
        //curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
        //curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/4.0 (compatible;)");
        $this->sendPost =  $postData;
        //var_dump(file_exists(str_replace('@','',$postData['imgfile'])));exit;
        curl_setopt($ch, CURLOPT_POSTFIELDS,$postData);
        //curl_setopt($ch, CURLOPT_POSTFIELDS,file_get_contents($proxyLocation));
        //curl_setopt($ch, CURLOPT_POSTFIELDS,file_get_contents("php://input"));
      }
 
      //gets rid of mulitple ? in URL
      $translateURL =  $this->translateURL(($this->ip)?$this->ip:$this->host);
      if(substr_count($translateURL, "?")>1){
          $firstPos = strpos($translateURL, "?", 0);
          $secondPos = strpos($translateURL, "?", $firstPos + 1);
          $translateURL = substr($translateURL, 0, $secondPos);
      }
 
      curl_setopt($ch,CURLOPT_URL,$translateURL);
 
      $proxyHeaders = array(
          "X-Forwarded-For: ".$this->XFF,
          "User-Agent: ".$this->user_agent,
          "Host: ".$this->host
      );
 
      if(strlen($this->XRequestedWith)>1){
          $proxyHeaders[] = "X-Requested-With: ".$this->XRequestedWith;
          //echo print_r($proxyHeaders);
      }
 
      curl_setopt($ch,CURLOPT_HTTPHEADER, $proxyHeaders);
 
      if($this->cookie!=""){
        curl_setopt($ch,CURLOPT_COOKIE,$this->cookie);
      }
      curl_setopt($ch,CURLOPT_FOLLOWLOCATION,false); 
      curl_setopt($ch,CURLOPT_AUTOREFERER,true); 
      curl_setopt($ch,CURLOPT_HEADER,true);
      curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
 
      $output=curl_exec($ch);
      $info = curl_getinfo( $ch );
      curl_close($ch);
      $this->postConnect($info,$output);
    }else {
      $this->lastModified=$_SERVER['HTTP_IF_MODIFIED_SINCE'];
      $this->IMS=true;
    }
  }
  function postConnect($info,$output){
    $this->content_type=$info["content_type"];
    $this->http_code=$info['http_code'];
    //var_dump($info);exit;
    if(!empty($info['last_modified'])){
      $this->lastModified=$info['last_modified'];
    }
    $this->resultHeader=substr($output,0,$info['header_size']);
    $content = substr($output,$info['header_size']);
 
    if($this->http_code=='200'){
      $this->content=$content;
    }elseif( ($this->http_code=='302' || $this->http_code=='301') && isset($info['redirect_url'])){
      $redirect_url = str_replace($this->host,$_SERVER['HTTP_HOST'],$info['redirect_url']);
      if (IS_SAE)
         $redirect_url = str_ireplace('http://fetchurl.sae.sina.com.cn/','',$info['redirect_url']);
      header("Location: $redirect_url");
      exit;
    }elseif($this->http_code=='404'){
      header("HTTP/1.1 404 Not Found");
      exit("HTTP/1.1 404 Not Found");
    }elseif($this->http_code=='500'){
      header('HTTP/1.1 500 Internal Server Error');
      exit("HTTP/1.1 500 Internal Server Error");
    }else{
      exit("HTTP/1.1 ".$this->http_code." Internal Server Error");
    }
  }
 
  function output(){
    $currentTimeString=gmdate("D, d M Y H:i:s",time());
    $expiredTime=gmdate("D, d M Y H:i:s",(time()+$this->cacheTime));
 
    $doOriginalHeaders = true;
    if($doOriginalHeaders){
        if($this->IMS){
          header("HTTP/1.1 304 Not Modified");
          header("Date: Wed, $currentTimeString GMT");
          header("Last-Modified: $this->lastModified");
          header("Server: $this->version");
        }else{
 
          header("HTTP/1.1 200 OK");
          header("Date: Wed, $currentTimeString GMT");
          header("Content-Type: ".$this->content_type);
          header("Last-Modified: $this->lastModified");
          header("Cache-Control: max-age=$this->cacheTime");
          header("Expires: $expiredTime GMT");
          header("Server: $this->version");
          preg_match("/Set-Cookie:[^\n]*/i",$this->resultHeader,$result);
          foreach($result as $i=>$value){
            header($result[$i]);
          }
          preg_match("/Content-Encoding:[^\n]*/i",$this->resultHeader,$result);
          foreach($result as $i=>$value){
            //header($result[$i]);
          }
          preg_match("/Transfer-Encoding:[^\n]*/i",$this->resultHeader,$result);
          foreach($result as $i=>$value){
            //header($result[$i]);
          }
          echo($this->content);
          /*
          if(stristr($this->content, "error")){
        echo print_r($this->sendPost);
          }
          */
        }
    }
    else{
        $headerString = $this->resultHeader; //string 
        $headerArray = explode("\n", $headerString);
        foreach($headerArray as $privHeader){
      header($privHeader);
        }
 
        if(stristr($headerString, "Transfer-encoding: chunked")){
      flush();
      ob_flush();
      $i = 0;
      $maxLen = strlen($this->content);
 
      while($i < $maxLen){
          $endChar = $i + self::chunkSize;
          if($endChar >= $maxLen){
        $endChar = $maxLen - 1;
          }
          $chunk = substr($this->content, $i, $endChar);
          $this->dump_chunk($chunk);
          flush();
          ob_flush();
          $i = $i + $endChar;
      }
        }
        else{
       echo($this->content);
        }
 
        //echo "header: ".print_r($headerArray);
        //header($this->resultHeader);
    }
 
  }
 
 
  function dump_chunk($chunk) {
      echo sprintf("%x\r\n", strlen($chunk));
      echo $chunk;
      echo "\r\n";
  }
 
 
  function getOutsideHeaders(){
      $headers = array();
      foreach ($_SERVER as $name => $value){ 
    if (substr($name, 0, 5) == 'HTTP_') { 
        $name = str_replace(' ', '-', ucwords(strtolower(str_replace('_', ' ', substr($name, 5))))); 
        $headers[$name] = $value; 
    }elseif ($name == "CONTENT_TYPE") { 
        $headers["Content-Type"] = $value; 
    }elseif ($name == "CONTENT_LENGTH") { 
        $headers["Content-Length"] = $value; 
    }elseif(stristr($name, "X-Requested-With")) { 
        $headers["X-Requested-With"] = $value;
        $this->XRequestedWith = $value;
    }
      } 
 
      //echo print_r($headers);
 
      $this->outsideHeaders = $headers;
      return $headers;
  }  
 
}
?>

共 5 条评论

  1. 回复

    我之前用的一个叫phproxy的程序也不错的,演示站:p.qnid.cc

  2. 回复

    我发现7ghost https代理不了不知道这个行不行?

  3. 回复

    这个最后效果和url显性转发差不多,最后网址都是原网址,有什么办法达成隐性转发吗

  4. 回复

    博主 没搞懂 能不能教教我怎么用
    谢谢

    • 回复

      用法已经标明了啊,引入类,修改成自己的域名和端口,如果对PHP一点都不懂的话
      新建文件index.php 内容把第二段代码放到前面第一段代码放到尾部,把Wordpress的.htaccess文件放到根目录就可以了。

发表评论

您的邮箱不会公开,当您的评论有新的回复时,会通过您填写的邮箱向您发送评论内容。 必填字段 *

为何看不到我发布的评论?

正在提交, 请稍候...