-
Notifications
You must be signed in to change notification settings - Fork 21
/
UserInfo.php
289 lines (236 loc) · 7 KB
/
UserInfo.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
<?php
/**
* Get information about user which visited page of your website
* @package UserInfo
* @uses browscap http://www.php.net/manual/en/misc.configuration.php#ini.browscap
* @uses cURL http://php.net/manual/en/book.curl.php
* @uses freegeoip http://freegeoip.net
* @author Oleg Koval <oleh.koval@gmail.com>
* @copyright Copyright (c) 2013 Oleg Koval -- http://olegkoval.com
* @version 1.1
* @link https://github.com/olegkoval/php-user_info
*/
class UserInfo {
private $browserInfo;
private $geoInfo;
/**
* Autoload information from external services and set values of internal proprties
*/
public function __construct() {
//use try-catch to prevent error when server is not configured to use browscap (get_browser() function)
try {
$this->browserInfo = get_browser($_SERVER['HTTP_USER_AGENT'], true);
}
catch(Exception $e) {
$this->browserInfo = array();
}
//or we got some cURL exception, etc.
try {
$this->geoInfo = $this->getGeoInfo();
if (!is_array($this->geoInfo)) {
throw new Exception('We do not got a valid JSON answer from Freegeoip service.', 1);
}
}
catch(Exception $e) {
$this->geoInfo = array();
}
}
/**
* Get user IP
* @return string
*/
public function getIP() {
$result = null;
//for proxy servers
if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && !empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$result = end(array_filter(array_map('trim', explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']))));
}
else {
$result = $_SERVER['REMOTE_ADDR'];
}
return $result;
}
/**
* Get user reverse DNS
* @return string
*/
public function getReverseDNS() {
return gethostbyaddr($this->getIP());
}
/**
* Get current page URL
* @return string
*/
public function getCurrentURL() {
return 'http'. (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on' ? 's': '')
. '://' . $_SERVER["SERVER_NAME"]
. ($_SERVER['SERVER_PORT'] != '80' ? $_SERVER['SERVER_PORT'] : '')
. $_SERVER["REQUEST_URI"];
}
/**
* Get referer URL
* @return string
*/
public function getRefererURL() {
return (isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : '');
}
/**
* Get user browser language
* @return string
*/
public function getLanguage() {
return strtoupper(substr($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2));
}
/**
* Get user Device info (PC/Mac/Mobile/iPhone/iPad/etc...)
* @return string
*/
public function getDevice() {
$result = '';
if (is_array($this->browserInfo) && isset($this->browserInfo['device_name'])) {
$result = $this->browserInfo['device_name'];
}
return $result;
}
/**
* Get user OS info
* @return string
*/
public function getOS() {
$result = '';
if (is_array($this->browserInfo) && isset($this->browserInfo['platform'])) {
$result = $this->browserInfo['platform'];
}
return $result;
}
/**
* Get user Browser info
* @return string
*/
public function getBrowser() {
$result = '';
if (is_array($this->browserInfo) && isset($this->browserInfo['browser'])) {
$result = $this->browserInfo['browser'] . (isset($this->browserInfo['version']) ? ' v.' . $this->browserInfo['version'] : '');
}
return $result;
}
/**
* Get user Country Code
* @return string
*/
public function getCountryCode() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['country_code'])) {
$result = $this->geoInfo['country_code'];
}
return $result;
}
/**
* Get user Country Name
* @return string
*/
public function getCountryName() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['country_name'])) {
$result = $this->geoInfo['country_name'];
}
return $result;
}
/**
* Get user Region Code
* @return string
*/
public function getRegionCode() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['region_code'])) {
$result = $this->geoInfo['region_code'];
}
return $result;
}
/**
* Get user Region Name
* @return string
*/
public function getRegionName() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['region_name'])) {
$result = $this->geoInfo['region_name'];
}
return $result;
}
/**
* Get user City
* @return string
*/
public function getCity() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['city'])) {
$result = $this->geoInfo['city'];
}
return $result;
}
/**
* Get user Zipcode
* @return string
*/
public function getZipcode() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['zipcode'])) {
$result = $this->geoInfo['zipcode'];
}
return $result;
}
/**
* Get user Latitude
* @return string
*/
public function getLatitude() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['latitude'])) {
$result = $this->geoInfo['latitude'];
}
return $result;
}
/**
* Get user Longitude
* @return string
*/
public function getLongitude() {
$result = '';
if (is_array($this->geoInfo) && isset($this->geoInfo['longitude'])) {
$result = $this->geoInfo['longitude'];
}
return $result;
}
/**
* Check if connection was through proxy
* @return boolean
*/
public function isProxy() {
$result = false;
//for proxy servers
if (isset($_SERVER['HTTP_X_FORWARDED_FOR']) && !empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
$addresses = explode(',', $_SERVER['HTTP_X_FORWARDED_FOR']);
if (count($addresses) > 0) {
$result = true;
}
}
return $result;
}
/**
* Get geo information about user. For this we use user IP and external service
* Freegeoip (http://freegeoip.net)
*/
private function getGeoInfo() {
$url = 'http://freegeoip.net/json/' . self::getIP();
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, 0);
curl_setopt($ch, CURLOPT_TIMEOUT, 15);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
$response = curl_exec($ch);
curl_close($ch);
$result = json_decode($response, true);
return $result;
}
}