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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
|
/*
@VaadinApache2LicenseForJavaFiles@
*/
package com.vaadin.terminal.gwt.client;
import java.io.Serializable;
import com.vaadin.terminal.gwt.server.WebBrowser;
/**
* Class that parses the user agent string from the browser and provides
* information about the browser. Used internally by {@link BrowserInfo} and
* {@link WebBrowser}. Should not be used directly.
*
* @author Vaadin Ltd.
* @version @VERSION@
* @since 6.3
*/
public class VBrowserDetails implements Serializable {
private boolean isGecko = false;
private boolean isWebKit = false;
private boolean isPresto = false;
private boolean isSafari = false;
private boolean isChrome = false;
private boolean isFirefox = false;
private boolean isOpera = false;
private boolean isIE = false;
private OperatingSystem os = OperatingSystem.UNKNOWN;
public enum OperatingSystem {
UNKNOWN, WINDOWS, MACOSX, LINUX, IOS, ANDROID;
}
private float browserEngineVersion = -1;
private int browserMajorVersion = -1;
private int browserMinorVersion = -1;
private int osMajorVersion = -1;
private int osMinorVersion = -1;
/**
* Create an instance based on the given user agent.
*
* @param userAgent
* User agent as provided by the browser.
*/
public VBrowserDetails(String userAgent) {
userAgent = userAgent.toLowerCase();
// browser engine name
isGecko = userAgent.indexOf("gecko") != -1
&& userAgent.indexOf("webkit") == -1;
isWebKit = userAgent.indexOf("applewebkit") != -1;
isPresto = userAgent.indexOf(" presto/") != -1;
// browser name
isChrome = userAgent.indexOf(" chrome/") != -1;
isSafari = !isChrome && userAgent.indexOf("safari") != -1;
isOpera = userAgent.indexOf("opera") != -1;
isIE = userAgent.indexOf("msie") != -1 && !isOpera
&& (userAgent.indexOf("webtv") == -1);
isFirefox = userAgent.indexOf(" firefox/") != -1;
// Rendering engine version
try {
if (isGecko) {
int rvPos = userAgent.indexOf("rv:");
if (rvPos >= 0) {
String tmp = userAgent.substring(rvPos + 3);
tmp = tmp.replaceFirst("(\\.[0-9]+).+", "$1");
browserEngineVersion = Float.parseFloat(tmp);
}
} else if (isWebKit) {
String tmp = userAgent
.substring(userAgent.indexOf("webkit/") + 7);
tmp = tmp.replaceFirst("([0-9]+)[^0-9].+", "$1");
browserEngineVersion = Float.parseFloat(tmp);
}
} catch (Exception e) {
// Browser engine version parsing failed
System.err.println("Browser engine version parsing failed for: "
+ userAgent);
}
// Browser version
try {
if (isIE) {
String ieVersionString = userAgent.substring(userAgent
.indexOf("msie ") + 5);
ieVersionString = safeSubstring(ieVersionString, 0,
ieVersionString.indexOf(";"));
parseVersionString(ieVersionString);
} else if (isFirefox) {
int i = userAgent.indexOf(" firefox/") + 9;
parseVersionString(safeSubstring(userAgent, i, i + 5));
} else if (isChrome) {
int i = userAgent.indexOf(" chrome/") + 8;
parseVersionString(safeSubstring(userAgent, i, i + 5));
} else if (isSafari) {
int i = userAgent.indexOf(" version/") + 9;
parseVersionString(safeSubstring(userAgent, i, i + 5));
} else if (isOpera) {
int i = userAgent.indexOf(" version/");
if (i != -1) {
// Version present in Opera 10 and newer
i += 9; // " version/".length
} else {
i = userAgent.indexOf("opera/") + 6;
}
parseVersionString(safeSubstring(userAgent, i, i + 5));
}
} catch (Exception e) {
// Browser version parsing failed
System.err.println("Browser version parsing failed for: "
+ userAgent);
}
// Operating system
if (userAgent.contains("windows ")) {
os = OperatingSystem.WINDOWS;
} else if (userAgent.contains("linux")) {
if (userAgent.contains("android")) {
os = OperatingSystem.ANDROID;
parseAndroidVersion(userAgent);
} else {
os = OperatingSystem.LINUX;
}
} else if (userAgent.contains("macintosh")
|| userAgent.contains("mac osx")
|| userAgent.contains("mac os x")) {
if (userAgent.contains("ipad") || userAgent.contains("ipod")
|| userAgent.contains("iphone")) {
os = OperatingSystem.IOS;
parseIOSVersion(userAgent);
} else {
os = OperatingSystem.MACOSX;
}
}
}
private void parseAndroidVersion(String userAgent) {
// Android 5.1;
if (!userAgent.contains("android")) {
return;
}
String osVersionString = safeSubstring(userAgent,
userAgent.indexOf("android ") + "android ".length(),
userAgent.length());
osVersionString = safeSubstring(osVersionString, 0,
osVersionString.indexOf(";"));
String[] parts = osVersionString.split("\\.");
parseOsVersion(parts);
}
private void parseIOSVersion(String userAgent) {
// OS 5_1 like Mac OS X
if (!userAgent.contains("os ") || !userAgent.contains(" like mac")) {
return;
}
String osVersionString = safeSubstring(userAgent,
userAgent.indexOf("os ") + 3, userAgent.indexOf(" like mac"));
String[] parts = osVersionString.split("_");
parseOsVersion(parts);
}
private void parseOsVersion(String[] parts) {
osMajorVersion = -1;
osMinorVersion = -1;
if (parts.length >= 1) {
try {
osMajorVersion = Integer.parseInt(parts[0]);
} catch (Exception e) {
}
}
if (parts.length >= 2) {
try {
osMinorVersion = Integer.parseInt(parts[1]);
} catch (Exception e) {
}
// Some Androids report version numbers as "2.1-update1"
if (osMinorVersion == -1 && parts[1].contains("-")) {
try {
osMinorVersion = Integer.parseInt(parts[1].substring(0,
parts[1].indexOf('-')));
} catch (Exception ee) {
}
}
}
}
private void parseVersionString(String versionString) {
int idx = versionString.indexOf('.');
if (idx < 0) {
idx = versionString.length();
}
browserMajorVersion = Integer.parseInt(safeSubstring(versionString, 0,
idx));
int idx2 = versionString.indexOf('.', idx + 1);
if (idx2 < 0) {
idx2 = versionString.length();
}
try {
browserMinorVersion = Integer.parseInt(safeSubstring(versionString,
idx + 1, idx2).replaceAll("[^0-9].*", ""));
} catch (NumberFormatException e) {
// leave the minor version unmodified (-1 = unknown)
}
}
private String safeSubstring(String string, int beginIndex, int endIndex) {
if (beginIndex < 0) {
beginIndex = 0;
}
if (endIndex < 0 || endIndex > string.length()) {
endIndex = string.length();
}
return string.substring(beginIndex, endIndex);
}
/**
* Tests if the browser is Firefox.
*
* @return true if it is Firefox, false otherwise
*/
public boolean isFirefox() {
return isFirefox;
}
/**
* Tests if the browser is using the Gecko engine
*
* @return true if it is Gecko, false otherwise
*/
public boolean isGecko() {
return isGecko;
}
/**
* Tests if the browser is using the WebKit engine
*
* @return true if it is WebKit, false otherwise
*/
public boolean isWebKit() {
return isWebKit;
}
/**
* Tests if the browser is using the Presto engine
*
* @return true if it is Presto, false otherwise
*/
public boolean isPresto() {
return isPresto;
}
/**
* Tests if the browser is Safari.
*
* @return true if it is Safari, false otherwise
*/
public boolean isSafari() {
return isSafari;
}
/**
* Tests if the browser is Chrome.
*
* @return true if it is Chrome, false otherwise
*/
public boolean isChrome() {
return isChrome;
}
/**
* Tests if the browser is Opera.
*
* @return true if it is Opera, false otherwise
*/
public boolean isOpera() {
return isOpera;
}
/**
* Tests if the browser is Internet Explorer.
*
* @return true if it is Internet Explorer, false otherwise
*/
public boolean isIE() {
return isIE;
}
/**
* Returns the version of the browser engine. For WebKit this is an integer
* e.g., 532.0. For gecko it is a float e.g., 1.8 or 1.9.
*
* @return The version of the browser engine
*/
public float getBrowserEngineVersion() {
return browserEngineVersion;
}
/**
* Returns the browser major version e.g., 3 for Firefox 3.5, 4 for Chrome
* 4, 8 for Internet Explorer 8.
* <p>
* Note that Internet Explorer 8 and newer will return the document mode so
* IE8 rendering as IE7 will return 7.
* </p>
*
* @return The major version of the browser.
*/
public final int getBrowserMajorVersion() {
return browserMajorVersion;
}
/**
* Returns the browser minor version e.g., 5 for Firefox 3.5.
*
* @see #getBrowserMajorVersion()
*
* @return The minor version of the browser, or -1 if not known/parsed.
*/
public final int getBrowserMinorVersion() {
return browserMinorVersion;
}
/**
* Sets the version for IE based on the documentMode. This is used to return
* the correct the correct IE version when the version from the user agent
* string and the value of the documentMode property do not match.
*
* @param documentMode
* The current document mode
*/
public void setIEMode(int documentMode) {
browserMajorVersion = documentMode;
browserMinorVersion = 0;
}
/**
* Tests if the browser is run on Windows.
*
* @return true if run on Windows, false otherwise
*/
public boolean isWindows() {
return os == OperatingSystem.WINDOWS;
}
/**
* Tests if the browser is run on Mac OSX.
*
* @return true if run on Mac OSX, false otherwise
*/
public boolean isMacOSX() {
return os == OperatingSystem.MACOSX;
}
/**
* Tests if the browser is run on Linux.
*
* @return true if run on Linux, false otherwise
*/
public boolean isLinux() {
return os == OperatingSystem.LINUX;
}
/**
* Tests if the browser is run on Android.
*
* @return true if run on Android, false otherwise
*/
public boolean isAndroid() {
return os == OperatingSystem.ANDROID;
}
/**
* Tests if the browser is run in iOS.
*
* @return true if run in iOS, false otherwise
*/
public boolean isIOS() {
return os == OperatingSystem.IOS;
}
/**
* Returns the major version of the operating system. Currently only
* supported for mobile devices (iOS/Android)
*
* @return The major version or -1 if unknown
*/
public int getOperatingSystemMajorVersion() {
return osMajorVersion;
}
/**
* Returns the minor version of the operating system. Currently only
* supported for mobile devices (iOS/Android)
*
* @return The minor version or -1 if unknown
*/
public int getOperatingSystemMinorVersion() {
return osMinorVersion;
}
}
|