-
Notifications
You must be signed in to change notification settings - Fork 83
/
Copy pathev.cls.php
executable file
·304 lines (270 loc) · 8.71 KB
/
ev.cls.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
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
<?php
/*
* This file is part of the phpems/phpems.
*
* (c) oiuv <[email protected]>
*
* 项目维护:oiuv(QQ:7300637) | 定制服务:火眼(QQ:278768688)
*
* This source file is subject to the MIT license that is bundled.
*/
class ev
{
public $cookie;
public $post;
public $get;
public $file;
public $url;
public $G;
private $e;
public function __construct(&$G)
{
$this->G = $G;
$this->strings = $this->G->make('strings');
if (ini_get('magic_quotes_gpc')) {
$get = $this->stripSlashes($_REQUEST);
$post = $this->stripSlashes($_POST);
$this->cookie = $this->stripSlashes($_COOKIE);
} else {
$get = $_REQUEST;
$post = $_POST;
$this->cookie = $_COOKIE;
}
$this->file = $_FILES;
$this->get = $this->initData($get);
$this->post = $this->initData($post);
$this->url = $this->parseUrl();
$this->cookie = $this->initData($this->cookie);
}
public function isWeixin()
{
if (false !== strpos($_SERVER['HTTP_USER_AGENT'], 'MicroMessenger')) {
return true;
}
return false;
}
public function isMobile()
{
$_SERVER['ALL_HTTP'] = isset($_SERVER['ALL_HTTP']) ? $_SERVER['ALL_HTTP'] : '';
$mobile_browser = '0';
if (preg_match('/(up.browser|up.link|mmp|symbian|smartphone|midp|wap|phone|iphone|ipad|ipod|android|xoom)/i', strtolower($_SERVER['HTTP_USER_AGENT']))) {
$mobile_browser++;
}
if ((isset($_SERVER['HTTP_ACCEPT'])) and (false !== strpos(strtolower($_SERVER['HTTP_ACCEPT']), 'application/vnd.wap.xhtml+xml'))) {
$mobile_browser++;
}
if (isset($_SERVER['HTTP_X_WAP_PROFILE'])) {
$mobile_browser++;
}
if (isset($_SERVER['HTTP_PROFILE'])) {
$mobile_browser++;
}
$mobile_ua = strtolower(substr($_SERVER['HTTP_USER_AGENT'], 0, 4));
$mobile_agents = [
'w3c ', 'acs-', 'alav', 'alca', 'amoi', 'audi', 'avan', 'benq', 'bird', 'blac',
'blaz', 'brew', 'cell', 'cldc', 'cmd-', 'dang', 'doco', 'eric', 'hipt', 'inno',
'ipaq', 'java', 'jigs', 'kddi', 'keji', 'leno', 'lg-c', 'lg-d', 'lg-g', 'lge-',
'maui', 'maxo', 'midp', 'mits', 'mmef', 'mobi', 'mot-', 'moto', 'mwbp', 'nec-',
'newt', 'noki', 'oper', 'palm', 'pana', 'pant', 'phil', 'play', 'port', 'prox',
'qwap', 'sage', 'sams', 'sany', 'sch-', 'sec-', 'send', 'seri', 'sgh-', 'shar',
'sie-', 'siem', 'smal', 'smar', 'sony', 'sph-', 'symb', 't-mo', 'teli', 'tim-',
'tosh', 'tsm-', 'upg1', 'upsi', 'vk-v', 'voda', 'wap-', 'wapa', 'wapi', 'wapp',
'wapr', 'webc', 'winw', 'winw', 'xda', 'xda-',
];
if (in_array($mobile_ua, $mobile_agents)) {
$mobile_browser++;
}
if (false !== strpos(strtolower($_SERVER['ALL_HTTP']), 'operamini')) {
$mobile_browser++;
}
if (false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'windows')) {
$mobile_browser = 0;
}
if (false !== strpos(strtolower($_SERVER['HTTP_USER_AGENT']), 'windows phone')) {
$mobile_browser++;
}
if ($mobile_browser > 0) {
return true;
}
return false;
}
//解析url
public function parseUrl()
{
if (isset($_REQUEST['route'])) {
$r = explode('-', $_REQUEST['route']);
foreach ($r as $key => $p) {
$r[$key] = urlencode($p);
}
} elseif (isset($_SERVER['QUERY_STRING'])) {
$tmp = explode('#', $_SERVER['QUERY_STRING'], 2);
$tp = explode('&', $tmp[0], 2);
$r = explode('-', $tp[0]);
foreach ($r as $key => $p) {
$r[$key] = urlencode($p);
}
} else {
return false;
}
if (!$r[0] || !file_exists('app/'.$r[0].'/')) {
$r[0] = $this->G->defaultApp;
}
if (!file_exists('app/'.$r[0].'/'.$r[1].'.php')) {
$r[1] = 'app';
}
if (!file_exists('app/'.$r[0].'/controller/'.$r[2].'.'.$r[1].'.php')) {
$r[2] = 'index';
}
if ('app' == $r[1] && $this->isMobile()) {
$r[1] = 'phone';
}
return $r;
}
//返回$_REQUEST数组内的值
public function get($par)
{
if (isset($this->get[$par])) {
return $this->get[$par];
}
return false;
}
//返回$_POST数组内的值
public function post($par)
{
if (isset($this->post[$par])) {
return $this->post[$par];
}
return false;
}
//返回URL数组中的值
public function url($par)
{
$par = intval($par);
if (isset($this->url[$par])) {
return $this->url[$par];
}
return false;
}
//设置COOKIE
public function setCookie($name, $value, $time = 3600)
{
if ($time) {
$time = TIME + $time;
} else {
$time = 0;
}
if (CDO) {
setcookie(CH.$name, $value, $time, CP, CDO, false, false);
} else {
setcookie(CH.$name, $value, $time, CP, '', false, false);
}
}
//获取cookie
public function getCookie($par, $nohead = 0)
{
if (isset($this->cookie[CH.$par])) {
return $this->cookie[CH.$par];
} elseif (isset($this->cookie[$par]) && $nohead) {
return $this->cookie[$par];
}
return false;
}
//获取$_FILE
public function getFile($par)
{
if (isset($this->file[$par])) {
return $this->file[$par];
}
return false;
}
//初始化数据
public function initData($data)
{
//if($_SERVER['HTTP_HOST'] != '127.0.0.1')return false;
if (is_array($data)) {
foreach ($data as $key => $value) {
if (false === $this->strings->isAllowKey($key)) {
unset($data[$key]);
} else {
$data[$key] = $this->initData($value);
}
}
return $data;
}
if (is_numeric($data)) {
if (0 === $data[0]) {
return $this->addSlashes(htmlspecialchars($data));
}
if (strlen($data) >= 11) {
return $this->addSlashes(htmlspecialchars($data));
}
if (strpos($data, '.')) {
return floatval($data);
}
return $data;
}
if (is_string($data)) {
return $this->addSlashes(htmlspecialchars($data));
}
if (is_bool($data)) {
return (bool) $data;
}
return false;
}
//去除转义字符
public function stripSlashes($data)
{
if (is_array($data)) {
foreach ($data as $key => $value) {
$data[$key] = $this->stripSlashes($value);
}
} else {
$data = stripslashes(trim($data));
}
return $data;
}
//添加转义字符
public function addSlashes($data)
{
if (is_array($data)) {
foreach ($data as $key => $value) {
$data[$key] = $this->addSlashes($value);
}
} else {
$data = addslashes(trim($data));
}
return $data;
}
//获取客户端IP
public function getClientIp()
{
if (!isset($this->e['ip'])) {
if (getenv('HTTP_CLIENT_IP') && strcasecmp(getenv('HTTP_CLIENT_IP'), 'unknown')) {
$ip = getenv('HTTP_CLIENT_IP');
} elseif (getenv('HTTP_X_FORWARDED_FOR') && strcasecmp(getenv('HTTP_X_FORWARDED_FOR'), 'unknown')) {
$ip = getenv('HTTP_X_FORWARDED_FOR');
} elseif (getenv('REMOTE_ADDR') && strcasecmp(getenv('REMOTE_ADDR'), 'unknown')) {
$ip = getenv('REMOTE_ADDR');
} elseif (isset($_SERVER['REMOTE_ADDR']) && $_SERVER['REMOTE_ADDR'] && strcasecmp($_SERVER['REMOTE_ADDR'], 'unknown')) {
$ip = $_SERVER['REMOTE_ADDR'];
} else {
$ip = 'unknown';
}
$this->e['ip'] = $ip;
}
return $this->e['ip'];
}
//根据二级域名获取信息
public function getSecondDomain()
{
$domain = $_SERVER['HTTP_HOST'];
$domain = str_replace(['com.cn', 'net.cn', 'gov.cn', 'org.cn'], 'com', $domain);
$tmp = explode('.', $domain);
if (count($tmp) < 3) {
return false;
} elseif (is_numeric($tmp[0])) {
return false;
}
return $tmp[0];
}
}