This repository was archived by the owner on Feb 5, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoptions.go
More file actions
195 lines (165 loc) · 4.02 KB
/
options.go
File metadata and controls
195 lines (165 loc) · 4.02 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
package legitagent
import (
"strconv"
"strings"
)
type Browser string
const (
BrowserRandom Browser = "random"
BrowserChrome Browser = "chrome"
BrowserOpera Browser = "opera"
BrowserEdge Browser = "edge"
BrowserBrave Browser = "brave"
BrowserFirefox Browser = "firefox"
BrowserSafari Browser = "safari"
)
type Platform string
const (
PlatformRandom Platform = "random"
PlatformDesktop Platform = "desktop"
PlatformMobile Platform = "mobile"
)
type OperatingSystem string
const (
OSRandom OperatingSystem = "random"
OSWindows OperatingSystem = "windows"
OSWindows11 OperatingSystem = "windows11"
OSLinux OperatingSystem = "linux"
OSMac OperatingSystem = "mac"
OSAndroid OperatingSystem = "android"
OSiOS OperatingSystem = "ios"
OSChromeOS OperatingSystem = "chromeos"
osMacIntel OperatingSystem = "mac_intel"
osMacAppleSilicon OperatingSystem = "mac_apple_silicon"
osUbuntu OperatingSystem = "ubuntu"
osFedora OperatingSystem = "fedora"
)
type RequestType string
const (
RequestTypeNavigate RequestType = "navigate"
RequestTypeSubresource RequestType = "subresource"
RequestTypeXHR RequestType = "xhr"
)
type FingerprintProfile int
const (
FingerprintProfileNormal FingerprintProfile = iota
FingerprintProfileMaximum
FingerprintProfileExtreme
)
type H2RandomizationProfile int
const (
H2RandomizationProfileNone H2RandomizationProfile = iota
H2RandomizationProfileNormal
H2RandomizationProfileMaximum
)
type Option func(*Generator)
func WithBrowsers(b ...Browser) Option {
return func(g *Generator) {
if len(b) > 0 {
g.browsers = b
}
}
}
func WithPlatforms(p ...Platform) Option {
return func(g *Generator) {
if len(p) > 0 {
g.platforms = p
}
}
}
func WithOS(os ...OperatingSystem) Option {
return func(g *Generator) {
if len(os) > 0 {
g.os = os
}
}
}
func WithVersionRange(min, max int) Option {
return func(g *Generator) {
if min > 0 {
g.minVersion = min
}
if max > 0 && max >= min {
g.maxVersion = max
}
}
}
func parseLanguageHeader(header string) []AcceptHeaderPart {
partsStr := strings.Split(header, ",")
parts := make([]AcceptHeaderPart, 0, len(partsStr))
for _, partStr := range partsStr {
partStr = strings.TrimSpace(partStr)
if strings.Contains(partStr, ";q=") {
split := strings.SplitN(partStr, ";q=", 2)
q, err := strconv.ParseFloat(split[1], 64)
if err == nil {
parts = append(parts, AcceptHeaderPart{Value: split[0], Q: q})
}
} else {
parts = append(parts, AcceptHeaderPart{Value: partStr})
}
}
return parts
}
func WithLanguages(langs ...string) Option {
return func(g *Generator) {
if len(langs) > 0 {
profiles := make([][]AcceptHeaderPart, 0, len(langs))
for _, langStr := range langs {
profiles = append(profiles, parseLanguageHeader(langStr))
}
g.languageProfiles = profiles
}
}
}
func WithRequestType(rt RequestType) Option {
return func(g *Generator) { g.requestType = rt }
}
func WithHeaderSorter(sorter HeaderSorter) Option {
return func(g *Generator) {
if sorter != nil {
g.headerSorter = sorter
}
}
}
func WithFullFingerprint(full bool) Option {
return func(g *Generator) {
g.fullFingerprint = full
}
}
func WithH2Only(h2 bool) Option {
return func(g *Generator) {
g.h2Only = h2
}
}
func WithFingerprintProfile(profile FingerprintProfile) Option {
return func(g *Generator) {
g.fingerprintProfile = profile
}
}
func WithH2Randomization(profile H2RandomizationProfile) Option {
return func(g *Generator) {
g.h2RandomizationProfile = profile
}
}
func WithBotAgents(bots ...string) Option {
return func(g *Generator) {
g.useBotAgents = true
g.botAgentTypes = bots
}
}
func WithAcceptEncoding(enabled bool) Option {
return func(g *Generator) {
g.acceptEncodingEnabled = enabled
}
}
func WithAccept(enabled bool) Option {
return func(g *Generator) {
g.acceptEnabled = enabled
}
}
func WithZeroHeader(enabled bool) Option {
return func(g *Generator) {
g.zeroHeader = enabled
}
}