-
Notifications
You must be signed in to change notification settings - Fork 20
/
gomobiledetect.go
351 lines (317 loc) · 10.6 KB
/
gomobiledetect.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
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
// Gomobiledetect is a lightweight Go package imported from PHP for detecting mobile devices (including tablets). It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment
package mobiledetect
import (
"net/http"
"regexp"
"strings"
"github.com/gorilla/context"
)
const (
//A frequently used regular expression to extract version #s.
verRegex = `([\w._\+]+)`
MOBILE_GRADE_A = "A"
MOBILE_GRADE_B = "B"
MOBILE_GRADE_C = "C"
)
// Vars returns the route variables for the current request, if any.
func Device(r *http.Request) string {
if rv := context.Get(r, "Device"); rv != nil {
return rv.(string)
}
return ""
}
type DeviceHandler interface {
Mobile(w http.ResponseWriter, r *http.Request, m *MobileDetect)
Tablet(w http.ResponseWriter, r *http.Request, m *MobileDetect)
Desktop(w http.ResponseWriter, r *http.Request, m *MobileDetect)
}
func Handler(h DeviceHandler, rules *rules) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
m := NewMobileDetect(r, rules)
if m.IsTablet() {
h.Tablet(w, r, m)
} else if m.IsMobile() {
h.Mobile(w, r, m)
} else {
h.Desktop(w, r, m)
}
})
}
func HandlerMux(s *http.ServeMux, rules *rules) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
m := NewMobileDetect(r, rules)
if m.IsTablet() {
context.Set(r, "Device", "Tablet")
} else if m.IsMobile() {
context.Set(r, "Device", "Mobile")
} else {
context.Set(r, "Device", "Desktop")
}
s.ServeHTTP(w, r)
})
}
// MobileDetect holds the structure to figure out a browser from a UserAgent string and methods necessary to make it happen
type MobileDetect struct {
rules *rules
userAgent string
httpHeaders map[string]string
mobileDetectionRules map[string]string
compiledRegexRules map[string]*regexp.Regexp
*properties
}
// NewMobileDetect creates the MobileDetect object
func NewMobileDetect(r *http.Request, rules *rules) *MobileDetect {
if nil == rules {
rules = NewRules()
}
md := &MobileDetect{
rules: rules,
userAgent: r.UserAgent(),
httpHeaders: getHttpHeaders(r),
compiledRegexRules: make(map[string]*regexp.Regexp, len(rules.mobileDetectionRules())),
properties: newProperties(),
}
return md
}
func getHttpHeaders(r *http.Request) map[string]string {
httpHeaders := map[string]string{
"SERVER_SOFTWARE": r.Header.Get("SERVER_SOFTWARE"),
"REQUEST_METHOD": r.Method,
"HOST": r.Host,
"X_REAL_IP": r.Header.Get("X_REAL_IP"),
"X_FORWARDED_FOR": r.Header.Get("X_FORWARDED_FOR"),
"CONNECTION": r.Header.Get("CONNECTION"),
"USER-AGENT": r.UserAgent(),
"ACCEPT": r.Header.Get("ACCEPT"),
"ACCEPT-LANGUAGE": r.Header.Get("ACCEPT-LANGUAGE"),
"ACCEPT-ENCODING": r.Header.Get("ACCEPT-ENCODING"),
"X_REQUESTED_WITH": r.Header.Get("X_REQUESTED_WITH"),
"REFERER": r.Referer(),
"PRAGMA": r.Header.Get("PRAGMA"),
"CACHE_CONTROL": r.Header.Get("CACHE_CONTROL"),
"REMOTE_ADDR": r.RemoteAddr,
"REQUEST_TIME": r.Header.Get("REQUEST_TIME"),
}
return httpHeaders
}
func (md *MobileDetect) PreCompileRegexRules() *MobileDetect {
for _, ruleValue := range md.rules.mobileDetectionRules() {
md.match(ruleValue)
}
return md
}
func (md *MobileDetect) SetUserAgent(userAgent string) *MobileDetect {
md.userAgent = userAgent
return md
}
func (md *MobileDetect) SetHttpHeaders(httpHeaders map[string]string) *MobileDetect {
md.httpHeaders = httpHeaders
return md
}
// IsMobile is a specific case to detect only mobile browsers.
func (md *MobileDetect) IsMobile() bool {
if md.CheckHttpHeadersForMobile() {
return true
}
return md.matchDetectionRulesAgainstUA()
}
// IsMobile is a specific case to detect only mobile browsers on tablets. Do not overlap with IsMobile
func (md *MobileDetect) IsTablet() bool {
for _, ruleValue := range md.rules.tabletDevices {
if md.match(ruleValue) {
return true
}
}
return false
}
// Is compared the detected browser with a "rule" from the existing rules list
func (md *MobileDetect) IsKey(key int) bool {
return md.matchUAAgainstKey(key)
}
// It is recommended to use IsKey instead
func (md *MobileDetect) Is(key interface{}) bool {
switch key.(type) {
case string:
name := strings.ToLower(key.(string))
ruleKey, ok := md.rules.nameToKey(name)
if !ok {
return false
}
return md.matchUAAgainstKey(ruleKey)
case int:
ruleKey := key.(int)
return md.IsKey(ruleKey)
}
return false
}
// VersionFloat does the same as Version, but returns a float number good for version comparison
func (md *MobileDetect) VersionFloatKey(propertyVal int) float64 {
return md.properties.versionFloat(propertyVal, md.userAgent)
}
// Version detects the browser version returning as string
func (md *MobileDetect) VersionKey(propertyVal int) string {
return md.properties.version(propertyVal, md.userAgent)
}
// It is recommended to use VersionFloatKey instead
func (md *MobileDetect) VersionFloat(propertyName interface{}) float64 {
switch propertyName.(type) {
case string:
return md.properties.versionFloatName(propertyName.(string), md.userAgent)
case int:
return md.VersionFloatKey(propertyName.(int))
}
return 0.0
}
// It is recommended to use VersionKey instead
func (md *MobileDetect) Version(propertyName interface{}) string {
switch propertyName.(type) {
case string:
return md.properties.versionByName(propertyName.(string), md.userAgent)
case int:
return md.VersionKey(propertyName.(int))
}
return ""
}
//Search for a certain key in the rules array.
//If the key is found the try to match the corresponding regex agains the User-Agent.
func (md *MobileDetect) matchUAAgainstKey(key int) bool {
ret := false
rules := md.rules.mobileDetectionRules()
for ruleKey, ruleValue := range rules {
if key == ruleKey {
ret = md.match(ruleValue)
break
}
}
return ret
}
//Find a detection rule that matches the current User-agent.
func (md *MobileDetect) matchDetectionRulesAgainstUA() bool {
for _, ruleValue := range md.rules.mobileDetectionRules() {
if "" != ruleValue {
if md.match(ruleValue) {
return true
}
}
}
return false
}
// Some detection rules are relative (not standard),because of the diversity of devices, vendors and
// their conventions in representing the User-Agent or the HTTP headers.
// This method will be used to check custom regexes against the User-Agent string.
// @todo: search in the HTTP headers too.
func (md *MobileDetect) match(ruleValue string) bool {
//Escape the special character which is the delimiter
//rule = strings.Replace(rule, `\`, `\/`, -1)
ruleValue = `(?is)` + ruleValue
var re *regexp.Regexp
re = md.compiledRegexRules[ruleValue]
if nil == re {
md.compiledRegexRules[ruleValue] = regexp.MustCompile(ruleValue)
}
re = md.compiledRegexRules[ruleValue]
ret := re.MatchString(md.userAgent)
return ret
}
// CheckHttpHeadersForMobile looks for mobile rules to confirm if the browser is a mobile browser
func (md *MobileDetect) CheckHttpHeadersForMobile() bool {
for _, mobileHeader := range md.mobileHeaders() {
if headerString, ok := md.httpHeaders[mobileHeader]; ok {
mobileHeaderMatches := md.mobileHeaderMatches()
if matches, ok := mobileHeaderMatches[mobileHeader]; ok {
for _, match := range matches {
if -1 != strings.Index(headerString, match) {
return true
}
}
return false
} else {
return true
}
}
}
return false
}
func (md *MobileDetect) mobileHeaders() []string {
return []string{
"HTTP_ACCEPT",
"HTTP_X_WAP_PROFILE",
"HTTP_X_WAP_CLIENTID",
"HTTP_WAP_CONNECTION",
"HTTP_PROFILE",
// Reported by Opera on Nokia devices (eg. C3).
"HTTP_X_OPERAMINI_PHONE_UA",
"HTTP_X_NOKIA_GATEWAY_ID",
"HTTP_X_ORANGE_ID",
"HTTP_X_VODAFONE_3GPDPCONTEXT",
"HTTP_X_HUAWEI_USERID",
// Reported by Windows Smartphones.
"HTTP_UA_OS",
// Reported by Verizon, Vodafone proxy system.
"HTTP_X_MOBILE_GATEWAY",
// Seend this on HTC Sensation. @ref: SensationXE_Beats_Z715e.
"HTTP_X_ATT_DEVICEID",
// Seen this on a HTC.
"HTTP_UA_CPU",
}
}
func (md *MobileDetect) mobileHeaderMatches() map[string][]string {
return map[string][]string{
"HTTP_ACCEPT": []string{
// Opera Mini; @reference: http://dev.opera.com/articles/view/opera-binary-markup-language/
"application/x-obml2d",
// BlackBerry devices.
"application/vnd.rim.html",
"text/vnd.wap.wml",
"application/vnd.wap.xhtml+xml",
},
"HTTP_UA_CPU": []string{"ARM"},
}
}
// MobileGrade returns a graduation similar to jQuery's Graded Browse Support
func (md *MobileDetect) MobileGrade() string {
isMobile := md.IsMobile()
if md.isMobileGradeA(isMobile) {
return MOBILE_GRADE_A
}
if md.isMobileGradeB() {
return MOBILE_GRADE_B
}
return MOBILE_GRADE_C
}
func (md *MobileDetect) isMobileGradeA(isMobile bool) bool {
if md.VersionFloat("iPad") >= 4.3 || md.VersionFloat("iPhone") >= 3.1 || md.VersionFloat("iPod") >= 3.1 ||
(md.VersionFloat("Android") > 2.1 && md.Is("Webkit")) ||
md.VersionFloat("Windows Phone OS") >= 7.0 ||
md.Is("BlackBerry") && md.VersionFloat("BlackBerry") >= 6.0 ||
md.match("Playbook.*Tablet") ||
(md.VersionFloat("webOS") >= 1.4 && md.match("Palm|Pre|Pixi")) ||
md.match("hp.*TouchPad") ||
(md.Is("Firefox") && md.VersionFloat("Firefox") >= 12) ||
(md.Is("Chrome") && md.Is("AndroidOS") && md.VersionFloat("Android") >= 4.0) ||
(md.Is("Skyfire") && md.VersionFloat("Skyfire") >= 4.1 && md.Is("AndroidOS") && md.VersionFloat("Android") >= 2.3) ||
(md.Is("Opera") && md.VersionFloat("Opera Mobi") > 11 && md.Is("AndroidOS")) ||
md.Is("MeeGoOS") ||
md.Is("Tizen") ||
md.Is("Dolfin") && md.VersionFloat("Bada") >= 2.0 ||
((md.Is("UC Browser") || md.Is("Dolfin")) && md.VersionFloat("Android") >= 2.3) ||
(md.match("Kindle Fire") || md.Is("Kindle") && md.VersionFloat("Kindle") >= 3.0) ||
(md.Is("AndroidOS") && md.Is("NookTablet")) ||
(md.VersionFloat("Chrome") >= 11 && isMobile) ||
(md.VersionFloat("Safari") >= 5.0 && isMobile) ||
(md.VersionFloat("Firefox") >= 4.0 && isMobile) ||
(md.VersionFloat("MSIE") >= 7.0 && isMobile) ||
(md.VersionFloat("Opera") >= 10 && isMobile) {
return true
}
return false
}
func (md *MobileDetect) isMobileGradeB() bool {
if (md.Is("Blackberry") && md.VersionFloat("BlackBerry") >= 5 && md.VersionFloat("BlackBerry") < 6) ||
(md.VersionFloat("Opera Mini") >= 5.0 && md.VersionFloat("Opera Mini") <= 6.5 && (md.VersionFloat("Android") >= 2.3 || md.Is("iOS"))) ||
md.match("NokiaN8|NokiaC7|N97.*Series60|Symbian/3") ||
(md.VersionFloat("Opera Mobi") >= 11 && md.Is("SymbianOS")) {
return true
}
return false
}