-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccessClass.php
133 lines (122 loc) · 4.28 KB
/
AccessClass.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
<?php
/**
* Access class
*
* [CHANGELOG]
* 2021-03-08 -> Class created
* 2021-03-19 -> Improved return methods for unknows user agents - this can help to improve the info arrays
* 2022-09-25 -> Renamed class
*/
class Access
{
/** List of Browsers */
public $browsers = array(
'/msie/i' => 'Internet Explorer',
'/firefox/i' => 'Firefox',
'/safari/i' => 'Safari',
'/chrome/i' => 'Chrome',
'/edge/i' => 'Edge',
'/opera/i' => 'Opera',
'/netscape/i' => 'Netscape',
'/maxthon/i' => 'Maxthon',
'/konqueror/i' => 'Konqueror',
'/mobile/i' => 'Handheld Browser'
);
/** List of OSs */
public $OS = array(
'/windows nt 10/i' => 'Windows 10',
'/windows nt 6.3/i' => 'Windows 8.1',
'/windows nt 6.2/i' => 'Windows 8',
'/windows nt 6.1/i' => 'Windows 7',
'/windows nt 6.0/i' => 'Windows Vista',
'/windows nt 5.2/i' => 'Windows Server 2003/XP x64',
'/windows nt 5.1/i' => 'Windows XP',
'/windows xp/i' => 'Windows XP',
'/windows nt 5.0/i' => 'Windows 2000',
'/windows me/i' => 'Windows ME',
'/win98/i' => 'Windows 98',
'/win95/i' => 'Windows 95',
'/win16/i' => 'Windows 3.11',
'/macintosh|mac os x/i' => 'Mac OS X',
'/mac_powerpc/i' => 'Mac OS 9',
'/linux/i' => 'Linux',
'/ubuntu/i' => 'Ubuntu',
'/iphone/i' => 'iPhone',
'/ipod/i' => 'iPod',
'/ipad/i' => 'iPad',
'/android/i' => 'Android',
'/blackberry/i' => 'BlackBerry',
'/webos/i' => 'Mobile'
);
/** List of Crawlers */
public $crawlers = array(
'/google/i' => 'Google',
'/msnbot/i' => 'MSN',
'/Rambler/i' => 'Rambler',
'/Yahoo/i' => 'Yahoo',
'/AbachoBOT/i' => 'AbachoBOT',
'/Accoona/i' => 'Accoona',
'/AcoiRobot/i' => 'AcoiRobot',
'/ASPSeek/i' => 'ASPSeek',
'/CrocCrawler/i' => 'CrocCrawler',
'/Dumbot/i' => 'Dumbot',
'/FAST-WebCrawler/i' => 'FAST-WebCrawler',
'/GeonaBot/i' => 'GeonaBot',
'/Gigabot/i' => 'Gigabot',
'/Lycos/i' => 'Lycos spider',
'/MSRBOT/i' => 'MSRBOT',
'/Scooter/i' => 'Altavista robot',
'/Altavista/i' => 'AltaVista robot',
'/IDBot/i' => 'ID-Search Bot',
'/eStyle/i' => 'eStyle Bot',
'/Scrubby/i' => 'Scrubby robot'
);
/** Info array */
private $access = array();
public function __construct()
{
$this->access['browser'] = $this->getBrowser();
$this->access['browserVersion'] = $this->getBrowserVersion();
$this->access['OS'] = $this->getOS();
$this->access['robot'] = $this->getRobot();
$this->access['referer'] = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : "Direct";
$this->access['time'] = time();
return $this;
}
private function getBrowser()
{
foreach ($this->browsers as $regex => $name) {
if (preg_match($regex, $_SERVER['HTTP_USER_AGENT'])) {
return $name;
}
}
return "Unknown - " . $_SERVER['HTTP_USER_AGENT'];
}
private function getBrowserVersion()
{
$data = explode("/", $_SERVER['HTTP_USER_AGENT']);
return $data[count($data) - 1];
}
private function getOS()
{
foreach ($this->OS as $regex => $name) {
if (preg_match($regex, $_SERVER['HTTP_USER_AGENT'])) {
return $name;
}
}
return "Unknown - " . $_SERVER['HTTP_USER_AGENT'];
}
private function getRobot()
{
foreach ($this->crawlers as $regex => $name) {
if (preg_match($regex, $_SERVER['HTTP_USER_AGENT'])) {
return $name;
}
}
return "Unknown - " . $_SERVER['HTTP_USER_AGENT'];
}
public function getInfo()
{
return $this->access;
}
}