-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspecificnormalizer.go
258 lines (201 loc) · 4.64 KB
/
specificnormalizer.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
package wurflgo
import (
"regexp"
"strings"
//"fmt"
)
type Android struct{
UANormalizer
}
var androidHandler = NewAndroidHandler(NewAndroid())
var htcMacHandler = NewHTCMacHandler(NewHTCMac())
var webOSHandler = NewWebOSHandler(NewWebOS())
func NewAndroid() *Android{
android := new(Android)
android.Regexp = `(Android)[ \-](\d\.\d)([^; \/\)]+)`
android.wordRx = regexp.MustCompile(android.Regexp)
return android
}
func (a *Android) Normalize(ua string) string{
ua = a.wordRx.ReplaceAllString(ua,`\1 \2`)
skipNormalization := []string{
"Opera Mini",
"Opera Mobi",
"Opera Tablet",
"Fennec",
"Firefox",
"UCWEB7",
"NetFrontLifeBrowser/2.2",
}
if util.CheckIfContainsAnyOf(ua, skipNormalization) != true{
model := androidHandler.GetAndroidModel(ua)
version := androidHandler.GetAndroidVersion(ua,false)
if model != "" && version != ""{
prefix := version + " " + model + RIS_DELIMITER
return prefix + ua
}
}
return ua
}
type Chrome struct{
}
func NewChrome() *Chrome{
return new(Chrome)
}
func (chr *Chrome) Normalize(ua string) string {
return chr.chromeWithMajorVersion(ua)
}
func (chr *Chrome) chromeWithMajorVersion(ua string) string{
startIdx := strings.Index(ua,"Chrome")
if startIdx > 0 {
endIdx := strings.Index(ua[startIdx:],".")
if endIdx == -1{
return ua[startIdx:]
} else {
return ua[startIdx:startIdx+endIdx]
}
}
return ua
}
type Firefox struct{
}
func NewFirefox() *Firefox{
return new(Firefox)
}
func (ff *Firefox) Normalize(ua string) string{
return ff.firefoxWithMajorVersion(ua)
}
func (ff *Firefox) firefoxWithMajorVersion(ua string) string{
index := strings.Index(ua, "Firefox")
if index > 0{
return ua[index:]
}
return ua
}
type HTCMac struct{
}
func NewHTCMac() *HTCMac{
return new(HTCMac)
}
func (htc *HTCMac) Normalize(ua string) string {
model := htcMacHandler.GetHTCMacModel(ua)
if model != ""{
prefix := model + RIS_DELIMITER
return prefix + ua
}
return ua
}
type Kindle struct{
}
func NewKindle() *Kindle{
return new(Kindle)
}
func (k *Kindle) Normalize(ua string) string{
if util.CheckIfContainsAll(ua,[]string{"Android", "Kindle Fire"}){
model := androidHandler.GetAndroidModel(ua)
version := androidHandler.GetAndroidVersion(ua,false)
if model != "" && version != ""{
prefix := version + " " + model + RIS_DELIMITER
return prefix + ua
}
}
return ua
}
type Konqueror struct{
}
func NewKonqueror() *Konqueror{
return new(Konqueror)
}
func (k *Konqueror) Normalize(ua string) string{
return k.konquerorWithMajorVersion(ua)
}
func (k *Konqueror) konquerorWithMajorVersion(ua string) string{
index := strings.Index(ua,"Konqueror")
if index > 0{
return ua[index:index+10]
}
return ua
}
type LG struct{
}
func NewLG() *LG{
return new(LG)
}
func (lg *LG) Normalize(ua string) string{
index := strings.Index(ua,"LG")
if index > 0{
return ua[index:]
}
return ua
}
type LGPLUS struct{
UANormalizer
}
func NewLGPLUS() *LGPLUS{
lgPLUS := new(LGPLUS)
lgPLUS.Regexp = `Mozilla.*(Windows (?:NT|CE)).*(POLARIS|WV).*lgtelecom;.*;(.*);.*`
lgPLUS.wordRx = regexp.MustCompile(lgPLUS.Regexp)
return lgPLUS
}
func (lgp *LGPLUS) Normalize(ua string) string{
return lgp.wordRx.ReplaceAllString(ua,`\3 \1 \2`)
}
type MSIE struct{
}
func NewMSIE() *MSIE{
return new(MSIE)
}
func (ms *MSIE) Normalize(ua string) string{
return ms.msieWithVersion(ua)
}
func (ms *MSIE) msieWithVersion(ua string) string{
index := strings.Index(ua,"MSIE")
if index > 0 {
if index + 8 <= len(ua){
return ua[index:index+8]
} else {
return ua[index:len(ua)]
}
}
return ua
}
type Opera struct{
}
func NewOpera() *Opera{
return new(Opera)
}
func (op *Opera) Normalize(ua string) string{
if util.CheckIfStartsWith(ua,"Opera/9.80"){
matchRx := regexp.MustCompile(`Version/(\d+\.\d+)`)
matches := matchRx.FindStringSubmatch(ua)
if len(matches) > 0{
ua = strings.Replace(ua,"Opera/9.80","Opera/" + matches[1], -1)
}
}
return ua
}
type Safari struct{
UANormalizer
}
func NewSafari() *Safari{
safari := new(Safari)
safari.Regexp = `(Mozilla\/5\.0.*U;)(?:.*)(Safari\/\d{0,3})(?:.*)`
return safari
}
func (s *Safari) Normalize(ua string) string{
return ua
}
type WebOS struct{
}
func NewWebOS() *WebOS{
return new(WebOS)
}
func (w *WebOS) Normalize(ua string) string {
model := webOSHandler.GetWebOSModelVersion(ua)
OSVer := webOSHandler.GetWebOSVersion(ua)
if model != "" && OSVer != ""{
prefix := model + " " + OSVer + RIS_DELIMITER
return prefix + ua
}
return ua
}