-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproperties.go
301 lines (282 loc) · 7.85 KB
/
properties.go
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
package mobiledetect
import (
"regexp"
"strconv"
"strings"
)
const (
PropMobile = iota
PropBuild
PropVersion
PropVendorid
PropIpad
PropIphone
PropIpod
PropKindle
PropChrome
PropCoast
PropDolfin
PropFirefox
PropFennec
PropIe
PropNetfront
PropNokiabrowser
PropOpera
PropOperaMini
PropOperaMobi
PropUcBrowser
PropMqqbrowser
PropMicromessenger
PropBaiduboxapp
PropBaidubrowser
PropSafari
PropSkyfire
PropTizen
PropWebkit
PropGecko
PropTrident
PropPresto
PropIos
PropAndroid
PropBlackberry
PropBrew
PropJava
PropWindowsPhoneOs
PropWindowsPhone
PropWindowsCe
PropWindowsNt
PropSymbian
PropWebos
)
var (
propertiesNameToVal = map[string]int{
"mobile": PropMobile,
"build": PropBuild,
"version": PropVersion,
"vendorid": PropVendorid,
"ipad": PropIpad,
"iphone": PropIphone,
"ipod": PropIpod,
"kindle": PropKindle,
"chrome": PropChrome,
"coast": PropCoast,
"dolfin": PropDolfin,
"firefox": PropFirefox,
"fennec": PropFennec,
"ie": PropIe,
"netfront": PropNetfront,
"nokiabrowser": PropNokiabrowser,
"opera": PropOpera,
"opera mini": PropOperaMini,
"opera mobi": PropOperaMobi,
"uc browser": PropUcBrowser,
"mqqbrowser": PropMqqbrowser,
"micromessenger": PropMicromessenger,
"baiduboxapp": PropBaiduboxapp,
"baidubrowser": PropBaidubrowser,
"safari": PropSafari,
"skyfire": PropSkyfire,
"tizen": PropTizen,
"webkit": PropWebkit,
"gecko": PropGecko,
"trident": PropTrident,
"presto": PropPresto,
"ios": PropIos,
"android": PropAndroid,
"blackberry": PropBlackberry,
"brew": PropBrew,
"java": PropJava,
"windows phone os": PropWindowsPhoneOs,
"windows phone": PropWindowsPhone,
"windows ce": PropWindowsCe,
"windows nt": PropWindowsNt,
"symbian": PropSymbian,
"webos": PropWebos,
}
// Properties helps parsing User Agent string, extracting useful segments of text.
// VER refers to the regular expression defined in the constant self::VER.
props = [...][]string{
// Build
// MOBILE:PROP_
[]string{`Mobile/[VER]`},
// PROP_BUILD:
[]string{`Build/[VER]`},
// PROP_VERSION:
[]string{`Version/[VER]`},
// PROP_VENDORID:
[]string{`VendorID/[VER]`},
// Devices
// PROP_IPAD:
[]string{`iPad.*CPU[a-z ]+[VER]`},
// PROP_IPHONE:
[]string{`iPhone.*CPU[a-z ]+[VER]`},
// PROP_IPOD:
[]string{`iPod.*CPU[a-z ]+[VER]`},
// `BlackBerry` : array(`BlackBerry[VER]`, `BlackBerry [VER];`),
// PROP_KINDLE:
[]string{`Kindle/[VER]`},
// Browser
// PROP_CHROME:
[]string{`Chrome/[VER]`, `CriOS/[VER]`, `CrMo/[VER]`},
// PROP_COAST:
[]string{`Coast/[VER]`},
// PROP_DOLFIN:
[]string{`Dolfin/[VER]`},
// @reference: https://developer.mozilla.org/en-US/docs/User_Agent_Strings_Reference
// PROP_FIREFOX:
[]string{`Firefox/[VER]`},
// PROP_FENNEC:
[]string{`Fennec/[VER]`},
// @reference: http://msdn.microsoft.com/en-us/library/ms537503(v=vs.85).aspx
// PROP_IE:
[]string{`IEMobile/[VER];`, `IEMobile [VER]`, `MSIE [VER];`},
// http://en.wikipedia.org/wiki/NetFront
// PROP_NETFRONT:
[]string{`NetFront/[VER]`},
// PROP_NOKIABROWSER:
[]string{`NokiaBrowser/[VER]`},
// PROP_OPERA:
[]string{` OPR/[VER]`, `Opera Mini/[VER]`, `Version/[VER]`},
// PROP_OPERA_MINI:
[]string{`Opera Mini/[VER]`},
// PROP_OPERA_MOBI:
[]string{`Version/[VER]`},
// PROP_UC_BROWSER:
[]string{`UC Browser[VER]`},
// PROP_MQQBROWSER:
[]string{`MQQBrowser/[VER]`},
// PROP_MICROMESSENGER:
[]string{`MicroMessenger/[VER]`},
// PROP_BAIDUBOXAPP
[]string{`baiduboxapp/[VER]`},
// PROP_BAIDUBROWSER
[]string{`baidubrowser/[VER]`},
// @note: Safari 7534.48.3 is actually Version 5.1.
// @note: On BlackBerry the Version is overwriten by the OS.
// PROP_SAFARI:
[]string{`Version/[VER]`, `Safari/[VER]`},
// PROP_SKYFIRE:
[]string{`Skyfire/[VER]`},
// PROP_TIZEN:
[]string{`Tizen/[VER]`},
// PROP_WEBKIT:
[]string{`webkit[ /][VER]`},
// Engine
// PROP_GECKO:
[]string{`Gecko/[VER]`},
// PROP_TRIDENT:
[]string{`Trident/[VER]`},
// PROP_PRESTO:
[]string{`Presto/[VER]`},
// OS
// PROP_IOS:
[]string{` \bOS\b [VER] `},
// PROP_ANDROID:
[]string{`Android [VER]`},
// PROP_BLACKBERRY:
[]string{`BlackBerry[\w]+/[VER]`, `BlackBerry.*Version/[VER]`, `Version/[VER]`},
// PROP_BREW:
[]string{`BREW [VER]`},
// PROP_JAVA:
[]string{`Java/[VER]`},
// @reference: http://windowsteamblog.com/windows_phone/b/wpdev/archive/2011/08/29/introducing-the-ie9-on-windows-phone-mango-user-agent-string.aspx
// @reference: http://en.wikipedia.org/wiki/Windows_NT#Releases
// PROP_WINDOWS_PHONE_OS:
[]string{`Windows Phone OS [VER]`, `Windows Phone [VER]`},
// PROP_WINDOWS_PHONE:
[]string{`Windows Phone [VER]`},
// PROP_WINDOWS_CE:
[]string{`Windows CE/[VER]`},
// http://social.msdn.microsoft.com/Forums/en-US/windowsdeveloperpreviewgeneral/thread/6be392da-4d2f-41b4-8354-8dcee20c85cd
// PROP_WINDOWS_NT:
[]string{`Windows NT [VER]`},
// PROP_SYMBIAN:
[]string{`SymbianOS/[VER]`, `Symbian/[VER]`},
// PROP_WEBOS:
[]string{`webOS/[VER]`, `hpwOS/[VER];`},
}
)
type properties struct {
cache map[string]*regexp.Regexp
}
func newProperties() *properties {
p := &properties{}
p.cache = make(map[string]*regexp.Regexp)
p.preCompile()
return p
}
func (p *properties) preCompile() {
for _, property := range props {
for _, pattern := range property {
p.compiledRegexByPattern(pattern)
}
}
}
func (p *properties) compiledRegexByPattern(propertyPattern string) *regexp.Regexp {
re, ok := p.cache[propertyPattern]
if !ok {
p.cache[propertyPattern] = regexp.MustCompile(propertyPattern)
}
re = p.cache[propertyPattern]
return re
}
func (p *properties) version(propertyVal int, userAgent string) string {
if len(props) >= propertyVal {
for _, propertyMatchString := range props[propertyVal] {
propertyPattern := `(?is)` + strings.Replace(string(propertyMatchString), `[VER]`, verRegex, -1)
// Escape the special character which is the delimiter.
// propertyPattern = strings.Replace(propertyPattern, `/`, `\/`, -1)
// Identify and extract the version.
re := p.compiledRegexByPattern(propertyPattern)
match := re.FindStringSubmatch(userAgent)
if len(match) > 0 {
return match[1]
}
}
}
return ""
}
func (p *properties) nameToKey(propertyName string) int {
propertyName = strings.ToLower(propertyName)
propertyVal, ok := propertiesNameToVal[propertyName]
if !ok {
return -1
}
return propertyVal
}
func (p *properties) versionByName(propertyName, userAgent string) string {
if "" != propertyName {
propertyVal := p.nameToKey(propertyName)
if -1 != propertyVal {
return p.version(propertyVal, userAgent)
}
}
return ""
}
func (p *properties) versionFloatName(propertyName, userAgent string) float64 {
propertyVal := p.nameToKey(propertyName)
if -1 != propertyVal {
return p.versionFloat(propertyVal, userAgent)
}
return 0.0
}
func (p *properties) versionFloat(propertyVal int, userAgent string) float64 {
version := p.version(propertyVal, userAgent)
replacer := strings.NewReplacer(`_`, `.`, `/`, `.`)
version = replacer.Replace(version)
versionNumbers := strings.Split(version, `.`)
versionNumbersLength := len(versionNumbers)
if versionNumbersLength > 1 {
firstNumber := versionNumbers[0]
retVersion := make([]string, versionNumbersLength-1)
for i := 1; i < versionNumbersLength; i++ {
retVersion[(i - 1)] = strings.Replace(versionNumbers[i], `.`, ``, -1)
}
version = firstNumber + `.` + strings.Join(retVersion, ``)
}
versionFloat, err := strconv.ParseFloat(version, 64)
if nil != err {
return 0.0
}
return versionFloat
}