forked from hestiacp/hestiacp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbrowser.js
More file actions
396 lines (371 loc) · 12.3 KB
/
browser.js
File metadata and controls
396 lines (371 loc) · 12.3 KB
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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
/**
* jQBrowser v0.2 - Extend jQuery's browser detection capabilities
* * http://davecardwell.co.uk/javascript/jquery/plugins/jquery-browserdetect/0.2/
*
* Dave Cardwell <http://davecardwell.co.uk/>
*
* Built on the shoulders of giants:
* * John Resig <http://jquery.com/>
* * Peter-Paul Koch <http://www.quirksmode.org/?/js/detect.html>
*
*
* Copyright (c) 2006 Dave Cardwell, dual licensed under the MIT and GPL
* licenses:
* * http://www.opensource.org/licenses/mit-license.php
* * http://www.gnu.org/licenses/gpl.txt
*/
/**
* For the latest version of this plugin, and a discussion of its usage and
* implementation, visit:
* * http://davecardwell.co.uk/javascript/jquery/plugins/jquery-browserdetect/
*/
new function() {
/**
* The following functions and attributes form the Public interface of the
* jQBrowser plugin, accessed externally through the $.browser object.
* See the relevant function definition later in the source for further
* information.
*
* $.browser.browser()
* $.browser.version.number()
* $.browser.version.string()
* $.browser.OS()
*
* $.browser.aol()
* $.browser.camino()
* $.browser.firefox()
* $.browser.flock()
* $.browser.icab()
* $.browser.konqueror()
* $.browser.mozilla()
* $.browser.msie()
* $.browser.netscape()
* $.browser.opera()
* $.browser.safari()
*
* $.browser.linux()
* $.browser.mac()
* $.browser.win()
*/
var Public = {
// The current browser, its version as a number or a string, and the
// operating system its running on.
'browser': function() {
return Private.browser;
},
'version': {
'number': function() {
return Math.floor(Private.version.number);
},
'string': function() {
return Private.version.string;
}
},
'OS': function() {
return Private.OS;
},
// A boolean value indicating whether or not the given browser was
// detected.
'chrome': function() {
return Private.chrome;
},
'aol': function() {
return Private.aol;
},
'camino': function() {
return Private.camino;
},
'firefox': function() {
return Private.firefox;
},
'flock': function() {
return Private.flock;
},
'icab': function() {
return Private.icab;
},
'konqueror': function() {
return Private.konqueror;
},
'mozilla': function() {
return Private.mozilla;
},
'msie': function() {
return Private.msie;
},
'netscape': function() {
return Private.netscape;
},
'opera': function() {
return Private.opera;
},
'safari': function() {
return Private.safari;
},
// A boolean value indicating whether or not the given OS was
// detected.
'linux': function() {
return Private.linux;
},
'mac': function() {
return Private.mac;
},
'win': function() {
return Private.win;
}
};
// Allow external access to the 'Public' interface through the $.browser
// object.
$.browser = Public;
/**
* The following functions and attributes form the internal methods and
* state of the jQBrowser plugin. See the relevant function definition
* later in the source for further information.
*
* Private.browser
* Private.version
* Private.OS
*
* Private.aol
* Private.camino
* Private.firefox
* Private.flock
* Private.icab
* Private.konqueror
* Private.mozilla
* Private.msie
* Private.netscape
* Private.opera
* Private.safari
*
* Private.linux
* Private.mac
* Private.win
*/
var Private = {
// Initially set to 'Unknown', if detected each of these properties will
// be updated.
'browser': 'Unknown',
'version': {
'number': undefined,
'string': 'Unknown'
},
'OS': 'Unknown',
// Initially set to false, if detected one of the following browsers
// will be updated.
'chrome': false,
'aol': false,
'camino': false,
'firefox': false,
'flock': false,
'icab': false,
'konqueror': false,
'mozilla': false,
'msie': false,
'netscape': false,
'opera': false,
'safari': false,
// Initially set to false, if detected one of the following operating
// systems will be updated.
'linux': false,
'mac': false,
'win': false
};
/**
* Loop over the items in 'data' trying to find a browser match with the
* test in data[i].browser(). Once found, attempt to determine the
* browser version.
*
* 'name': A string containing the full name of the browser.
* 'identifier': By default this is a lowercase version of 'name', but
* this can be overwritten by explicitly defining an
* 'identifier'.
* 'browser': A function that returns a boolean value indicating
* whether or not the given browser is detected.
* 'version': An optional function that overwrites the default version
* testing. Must return the result of a .match().
*
* Please note that the order of the data array is important, as some
* browsers contain details of others in their navigator.userAgent string.
* For example, Flock's contains 'Firefox' so much come before Firefox's
* test to avoid false positives.
*/
for( var i = 0, // counter
ua = navigator.userAgent, // the navigator's user agent string
ve = navigator.vendor, // the navigator's vendor string
data = [ // browser tests and data
{ // Safari <http://www.apple.com/safari/>
'name': 'Chrome',
'browser': function() {
return /Google/.test(ve)
}
},
{ // Safari <http://www.apple.com/safari/>
'name': 'Safari',
'browser': function() {
return /Apple/.test(ve)
}
},
{ // Opera <http://www.opera.com/>
'name': 'Opera',
'browser': function() {
return window.opera != undefined
}
},
{ // iCab <http://www.icab.de/>
'name': 'iCab',
'browser': function() {
return /iCab/.test(ve)
}
},
{ // Konqueror <http://www.konqueror.org/>
'name': 'Konqueror',
'browser': function() {
return /KDE/.test(ve)
}
},
{ // AOL Explorer <http://downloads.channel.aol.com/browser>
'identifier': 'aol',
'name': 'AOL Explorer',
'browser': function() {
return /America Online Browser/.test(ua)
},
'version': function() {
return ua.match(/rev(\d+(?:\.\d+)+)/)
}
},
{ // Flock <http://www.flock.com/>
'name': 'Flock',
'browser': function() {
return /Flock/.test(ua)
}
},
{ // Camino <http://www.caminobrowser.org/>
'name': 'Camino',
'browser': function() {
return /Camino/.test(ve)
}
},
{ // Firefox <http://www.mozilla.com/firefox/>
'name': 'Firefox',
'browser': function() {
return /Firefox/.test(ua)
}
},
{ // Netscape <http://browser.netscape.com/>
'name': 'Netscape',
'browser': function() {
return /Netscape/.test(ua)
}
},
{ // Internet Explorer <http://www.microsoft.com/windows/ie/>
// <http://www.microsoft.com/mac/ie/>
'identifier': 'msie',
'name': 'Internet Explorer',
'browser': function() {
return /MSIE/.test(ua)
},
'version': function() {
return ua.match(
/MSIE (\d+(?:\.\d+)+(?:b\d*)?)/
)
}
},
{ // Mozilla <http://www.mozilla.org/products/mozilla1.x/>
'name': 'Mozilla',
'browser': function() {
return /Gecko|Mozilla/.test(ua)
},
'version': function() {
return ua.match(/rv:(\d+(?:\.\d+)+)/);
}
}
];
i < data.length;
i++
) {
if( data[i].browser() ) { // we have a match
// If the identifier is not explicitly set, use a lowercase
// version of the given name.
var identifier = data[i].identifier ? data[i].identifier
: data[i].name.toLowerCase();
// Make a note that this browser was detected.
Private[ identifier ] = true;
// $.browser.browser() will now return the correct browser.
Private.browser = data[i].name;
var result;
if( data[i].version != undefined && (result = data[i].version()) ) {
// Use the explicitly set test for browser version.
Private.version.string = result[1];
Private.version.number = parseFloat( result[1] );
} else {
// Otherwise use the default test which searches for the
// version number after the browser name in the user agent
// string.
var re = new RegExp(
data[i].name + '(?:\\s|\\/)(\\d+(?:\\.\\d+)+(?:(?:a|b)\\d*)?)'
);
result = ua.match(re);
if( result != undefined ) {
Private.version.string = result[1];
Private.version.number = parseFloat( result[1] );
}
}
// Once we've detected the browser there is no need to check the
// others.
break;
}
};
/**
* Loop over the items in 'data' trying to find a operating system match
* with the test in data[i].os().
*
* 'name': A string containing the full name of the operating
* system.
* 'identifier': By default this is a lowercase version of 'name', but
* this can be overwritten by explicitly defining an
* 'identifier'.
* 'OS': A function that returns a boolean value indicating
* whether or not the given operating system is detected.
*/
for( var i = 0, // counter
pl = navigator.platform, // the navigator's platform string
data = [ // OS data and tests
{ // Microsoft Windows <http://www.microsoft.com/windows/>
'identifier': 'win',
'name': 'Windows',
'OS': function() {
return /Win/.test(pl)
}
},
{ // Apple Mac OS <http://www.apple.com/macos/>
'name': 'Mac',
'OS': function() {
return /Mac/.test(pl)
}
},
{ // Linux <http://www.linux.org/>
'name': 'Linux',
'OS': function() {
return /Linux/.test(pl)
}
}
];
i < data.length;
i++
) {
if( data[i].OS() ) { // we have a match
// If the identifier is not explicitly set, use a lowercase
// version of the given name.
var identifier = data[i].identifier ? data[i].identifier
: data[i].name.toLowerCase();
// Make a note that the OS was detected.
Private[ identifier ] = true;
// $.browser.OS() will now return the correct OS.
Private.OS = data[i].name;
// Once we've detected the browser there is no need to check the
// others.
break;
}
};
}();