-
-
Notifications
You must be signed in to change notification settings - Fork 370
/
Copy pathbrowser.go
280 lines (239 loc) · 7.03 KB
/
browser.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
package launcher
import (
"bytes"
"context"
"errors"
"fmt"
"log"
"net/http"
"os"
"os/exec"
"path/filepath"
"runtime"
"strings"
"github.com/go-rod/rod/lib/defaults"
"github.com/go-rod/rod/lib/utils"
"github.com/ysmood/fetchup"
"github.com/ysmood/leakless"
)
// Host formats a revision number to a downloadable URL for the browser.
type Host func(revision int) string
var hostConf = map[string]struct {
urlPrefix string
zipName string
}{
"darwin_amd64": {"Mac", "chrome-mac.zip"},
"darwin_arm64": {"Mac_Arm", "chrome-mac.zip"},
"linux_amd64": {"Linux_x64", "chrome-linux.zip"},
"windows_386": {"Win", "chrome-win.zip"},
"windows_amd64": {"Win_x64", "chrome-win.zip"},
}[runtime.GOOS+"_"+runtime.GOARCH]
// HostGoogle to download browser.
func HostGoogle(revision int) string {
return fmt.Sprintf(
"https://storage.googleapis.com/chromium-browser-snapshots/%s/%d/%s",
hostConf.urlPrefix,
revision,
hostConf.zipName,
)
}
// HostNPM to download browser.
func HostNPM(revision int) string {
return fmt.Sprintf(
"https://registry.npmmirror.com/-/binary/chromium-browser-snapshots/%s/%d/%s",
hostConf.urlPrefix,
revision,
hostConf.zipName,
)
}
// HostPlaywright to download browser.
func HostPlaywright(revision int) string {
rev := RevisionPlaywright
if !(runtime.GOOS == "linux" && runtime.GOARCH == "arm64") {
rev = revision
}
return fmt.Sprintf(
"https://playwright.azureedge.net/builds/chromium/%d/chromium-linux-arm64.zip",
rev,
)
}
// DefaultBrowserDir for downloaded browser. For unix is "$HOME/.cache/rod/browser",
// for Windows it's "%APPDATA%\rod\browser".
var DefaultBrowserDir = filepath.Join(map[string]string{
"windows": os.Getenv("APPDATA"),
"darwin": filepath.Join(os.Getenv("HOME"), ".cache"),
"linux": filepath.Join(os.Getenv("HOME"), ".cache"),
}[runtime.GOOS], "rod", "browser")
// Browser is a helper to download browser smartly.
type Browser struct {
Context context.Context
// Hosts are the candidates to download the browser.
// Such as [HostGoogle] or [HostNPM].
Hosts []Host
// Revision of the browser to use
Revision int
// RootDir to download different browser versions.
RootDir string
// Log to print output
Logger utils.Logger
// LockPort a tcp port to prevent race downloading. Default is 2968 .
LockPort int
// HTTPClient to download the browser
HTTPClient *http.Client
}
// NewBrowser with default values.
func NewBrowser() *Browser {
return &Browser{
Context: context.Background(),
Revision: RevisionDefault,
Hosts: []Host{HostGoogle, HostNPM, HostPlaywright},
RootDir: DefaultBrowserDir,
Logger: log.New(os.Stdout, "[launcher.Browser]", log.LstdFlags),
LockPort: defaults.LockPort,
}
}
// Dir to download the browser.
func (lc *Browser) Dir() string {
return filepath.Join(lc.RootDir, fmt.Sprintf("chromium-%d", lc.Revision))
}
// BinPath to download the browser executable.
func (lc *Browser) BinPath() string {
bin := map[string]string{
"darwin": "Chromium.app/Contents/MacOS/Chromium",
"linux": "chrome",
"windows": "chrome.exe",
}[runtime.GOOS]
return filepath.Join(lc.Dir(), filepath.FromSlash(bin))
}
// Download browser from the fastest host.
// It will race downloading a TCP packet from each host and use the fastest host.
func (lc *Browser) Download() error {
us := []string{}
for _, host := range lc.Hosts {
us = append(us, host(lc.Revision))
}
dir := lc.Dir()
fu := fetchup.New(dir, us...)
fu.Ctx = lc.Context
fu.Logger = lc.Logger
if lc.HTTPClient != nil {
fu.HttpClient = lc.HTTPClient
}
err := fu.Fetch()
if err != nil {
return fmt.Errorf("can't find a browser binary for your OS, the doc might help https://go-rod.github.io/#/compatibility?id=os : %w", err) //nolint: lll
}
return fetchup.StripFirstDir(dir)
}
// Get is a smart helper to get the browser executable path.
// If [Browser.BinPath] is not valid it will auto download the browser to [Browser.BinPath].
func (lc *Browser) Get() (string, error) {
defer leakless.LockPort(lc.LockPort)()
if lc.Validate() == nil {
return lc.BinPath(), nil
}
// Try to cleanup before downloading
_ = os.RemoveAll(lc.Dir())
return lc.BinPath(), lc.Download()
}
// MustGet is similar with Get.
func (lc *Browser) MustGet() string {
p, err := lc.Get()
utils.E(err)
return p
}
// Validate returns nil if the browser executable is valid.
// If the executable is malformed it will return error.
func (lc *Browser) Validate() error {
_, err := os.Stat(lc.BinPath())
if err != nil {
return err
}
cmd := exec.Command(lc.BinPath(), "--headless", "--no-sandbox",
"--use-mock-keychain", "--disable-dev-shm-usage",
"--disable-gpu", "--dump-dom", "about:blank")
b, err := cmd.CombinedOutput()
if err != nil {
if strings.Contains(string(b), "error while loading shared libraries") {
// When the os is missing some dependencies for chromium we treat it as valid binary.
return nil
}
return fmt.Errorf("failed to run the browser: %w\n%s", err, b)
}
if !bytes.Contains(b, []byte(`<html><head></head><body></body></html>`)) {
return errors.New("the browser executable doesn't support headless mode")
}
return nil
}
// LookPath searches for the browser executable from often used paths on current operating system.
func LookPath() (found string, has bool) {
list := map[string][]string{
"darwin": {
"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome",
"/Applications/Chromium.app/Contents/MacOS/Chromium",
"/Applications/Microsoft Edge.app/Contents/MacOS/Microsoft Edge",
"/Applications/Google Chrome Canary.app/Contents/MacOS/Google Chrome Canary",
"/usr/bin/google-chrome-stable",
"/usr/bin/google-chrome",
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
},
"linux": {
"chrome",
"google-chrome",
"/usr/bin/google-chrome",
"microsoft-edge",
"/usr/bin/microsoft-edge",
"chromium",
"chromium-browser",
"google-chrome-stable",
"/usr/bin/google-chrome-stable",
"/usr/bin/chromium",
"/usr/bin/chromium-browser",
"/snap/bin/chromium",
"/data/data/com.termux/files/usr/bin/chromium-browser",
},
"openbsd": {
"chrome",
"chromium",
},
"windows": append([]string{"chrome", "edge"}, expandWindowsExePaths(
`Google\Chrome\Application\chrome.exe`,
`Chromium\Application\chrome.exe`,
`Microsoft\Edge\Application\msedge.exe`,
)...),
}[runtime.GOOS]
for _, path := range list {
var err error
found, err = exec.LookPath(path)
has = err == nil
if has {
break
}
}
return
}
// interface for testing.
var openExec = exec.Command
// Open tries to open the url via system's default browser.
func Open(url string) {
// Windows doesn't support format [::]
url = strings.Replace(url, "[::]", "[::1]", 1)
if bin, has := LookPath(); has {
p := openExec(bin, url)
_ = p.Start()
_ = p.Process.Release()
}
}
func expandWindowsExePaths(list ...string) []string {
newList := []string{}
for _, p := range list {
newList = append(
newList,
filepath.Join(os.Getenv("ProgramFiles"), p),
filepath.Join(os.Getenv("ProgramFiles(x86)"), p),
filepath.Join(os.Getenv("LocalAppData"), p),
)
}
return newList
}