forked from qinggan/phpok
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpok.php
166 lines (156 loc) · 3.92 KB
/
phpok.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
<?php
/**
* PHPOK 官方提供的 SDK 接口
* @作者 苏相锟 <[email protected]>
* @版权 深圳市锟铻科技有限公司 / 苏相锟
* @主页 https://www.phpok.com
* @版本 5.x
* @授权 GNU Lesser General Public License https://www.phpok.com/lgpl.html
* @时间 2020年10月9日
**/
/**
* 安全限制,防止直接访问
**/
if(!defined("PHPOK_SET")){
exit("<h1>Access Denied</h1>");
}
class phpok_lib
{
private $_id = 0;
private $_key = '';
private $_server = '';
private $_get = false;
private $_ip = '';
public function __construct()
{
//
}
public function app_id($appid = 0)
{
if($appid){
$this->_id = $appid;
}
return $this->_id;
}
public function app_key($appkey='')
{
if($appkey != ''){
$this->_key = $appkey;
}
return $this->_key;
}
public function ip($ip='')
{
if($ip){
$this->_ip = $ip;
}
return $this->_ip;
}
public function server_url($url='')
{
if($url){
$this->_server = $url;
}
return $this->_server;
}
public function sign($data='')
{
$string = '_appid='.$this->_id.'&_appkey='.$this->_key;
if($data && is_array($data)){
ksort($data);
foreach($data as $key=>$value){
if($value != ''){
$string .= "&".$key."=".rawurlencode($value);
}
}
}
return md5($string);
}
public function content($data='')
{
$tmplist = array("_appid"=>$this->_id);
$tmplist['_sign'] = $this->sign($data);
if($data && is_array($data)){
$tmplist['params'] = $data;
}
$info = $this->_curl($tmplist);
if(!$info){
return false;
}
$info = trim($info);
if(substr($info,0,1) != '{'){
return $info;
}
return json_decode($info,true);
}
private function _curl($data)
{
$curl = curl_init();
curl_setopt($curl, CURLOPT_FORBID_REUSE, true);
curl_setopt($curl, CURLOPT_HEADER,true);
curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
curl_setopt($curl,CURLOPT_POST,true);
$post = http_build_query($data);
curl_setopt($curl,CURLOPT_POSTFIELDS,$post);
$headers = array();
$headers[] = 'Content-length: '.strlen($post);
curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,15);//等待时间,超时退出
curl_setopt($curl,CURLOPT_ENCODING ,'gzip');//GZIP压缩
curl_setopt($curl,CURLOPT_USERAGENT,$_SERVER['HTTP_USER_AGENT']);
$info = parse_url($this->_server);
$url = $this->_server;
if($this->_ip){
$port = $info['port'] ? $info['port'] : ($info['scheme'] == 'https' ? '443' : '80');
$headers[] = "Host: ".$info['host'].':'.$port;
if($info['scheme'] == 'http'){
$string = $info['scheme'].'://'.$info['host'];
$url = $info['scheme'].'://'.$this->_ip.substr($this->_server,strlen($string));
}
}
$headers[] = 'Expect: ';
curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
curl_setopt($curl, CURLOPT_URL, $url);
curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, false);
curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
$content = curl_exec($curl);
if (curl_errno($curl) != 0){
return false;
}
$separator = '/\r\n\r\n|\n\n|\r\r/';
list($head, $body) = preg_split($separator, $content, 2);
if($body){
$body = $this->_bom($body);
}
$code = curl_getinfo($curl, CURLINFO_HTTP_CODE);
curl_close($curl);
if($code == 301 || $code == 302){
$matches = array();
preg_match('/Location:(.*?)\n/', $head, $matches);
$url = @parse_url(trim(array_pop($matches)));
if (!$url){
return false;
}
$new_url = $url['scheme'] . '://' . $url['host'] . $url['path']
. (isset($url['query']) ? '?' . $url['query'] : '');
$new_url = stripslashes($new_url);
$this->server_url($new_url);
return $this->_curl($data);
}
if($code != '200'){
return false;
}
return $body;
}
private function _bom($info)
{
$info = trim($info);
$a1 = substr($info, 0, 1);
$a2 = substr($info, 1, 1);
$a3 = substr($info, 2, 1);
if(ord($a1) == 239 && ord($a2) == 187 && ord($a3) == 191){
return substr($info,3);
}
return $info;
}
}