-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdrivercheck.go
478 lines (441 loc) · 13.7 KB
/
drivercheck.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
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
package SeleniumDriverCheck
import (
"archive/zip"
"encoding/xml"
"fmt"
"io"
"io/ioutil"
"os"
"os/exec"
"os/user"
"path/filepath"
"runtime"
"strconv"
"strings"
"github.com/levigross/grequests"
"github.com/tidwall/gjson"
)
type ListBucketResult struct {
XMLName xml.Name `xml:"ListBucketResult"`
Contents []Contents `xml:"Contents"`
}
type Contents struct {
Key string `xml:"Key"`
}
var fileName = "SeleniumDriverPath"
var PcPaltform = runtime.GOOS
func CheckFile() (string, error) {
//检测用户系统是windows还是mac
if runtime.GOOS == "windows" {
//检测当前用户电脑用户名
u, err := user.Current()
if err == nil {
//查看C:\Users\u.Username\AppData\Local下有哪些文件
dir := fmt.Sprintf(`C:\Users\%s\AppData\Local`, GetRealName(u.Username))
files, readErr := ioutil.ReadDir(dir)
if readErr != nil {
return "", readErr
}
for _, checkfile := range files {
if checkfile.Name() == fileName {
return filepath.Join(dir, checkfile.Name()), nil
}
}
createErr := os.Mkdir(filepath.Join(dir, fileName), os.ModePerm)
if createErr == nil {
return filepath.Join(dir, fileName), nil
}
}
} else if runtime.GOOS == "darwin" {
//检测当前用户电脑用户名
u, err := user.Current()
if err == nil {
//查看/Users/u.Username/Library/Application Support下有哪些文件
dir := fmt.Sprintf(`/Users/%s/`, GetRealName(u.Username))
files, readErr := ioutil.ReadDir(dir)
if readErr != nil {
return "", readErr
}
for _, checkfile := range files {
if checkfile.Name() == fileName {
return filepath.Join(dir, checkfile.Name()), nil
}
}
createErr := os.Mkdir(filepath.Join(dir, fileName), os.ModePerm)
if createErr == nil {
return filepath.Join(dir, fileName), nil
}
}
} else if runtime.GOOS == "linux" {
//检测当前用户电脑用户名
//查看/home/u.Username/.local/share下有哪些文件
dir := `/home/`
files, readErr := ioutil.ReadDir(dir)
if readErr != nil {
return "", readErr
}
for _, checkfile := range files {
if checkfile.Name() == fileName {
return filepath.Join(dir, checkfile.Name()), nil
}
}
createErr := os.Mkdir(filepath.Join(dir, fileName), os.ModePerm)
if createErr == nil {
return filepath.Join(dir, fileName), nil
}
}
return "", nil
}
func GetRealName(fullName string) string {
if strings.Contains(fullName, "\\") {
realName := strings.Split(fullName, "\\")[1]
return realName
}
if strings.Contains(fullName, "/") {
realName := strings.Split(fullName, "/")[1]
return realName
}
return fullName
}
// 获取chrome主版本号,用于创建文件夹 >
func GetVersionForCreateFile() string {
status, chromeVersion := GetChromeVersion()
if status == true {
mainVersion := getMajorVersion(chromeVersion)
return mainVersion
} else {
panic("Chrome is not installed.")
}
}
// 获取电脑系统版本 > Get Pc Version
func GetPcVersion() (string, string) {
var platform, architecture string
if strings.HasPrefix(runtime.GOOS, "win") {
platform = "win"
architecture = "32"
} else if strings.HasPrefix(runtime.GOOS, "darwin") {
platform = "mac"
architecture = "64"
} else if strings.HasPrefix(runtime.GOOS, "linux") {
platform = "linux"
architecture = "64"
} else {
return "", ""
}
return platform, architecture
}
// 获取当前电脑Chrome版本号 > Get Version for chrome
func GetChromeVersion() (bool, string) {
if strings.HasPrefix(runtime.GOOS, "win") {
output, _ := exec.Command("reg", "query", "HKEY_CURRENT_USER\\Software\\Google\\Chrome\\BLBeacon").Output()
chromeVersion := strings.Split(string(output), "\n")
for _, v := range chromeVersion {
if strings.Contains(v, "version") {
temp_versionId := strings.Split(v, " ")[3]
versionId := strings.Split(temp_versionId, "\r")[0]
return true, versionId
}
}
return false, ""
} else if strings.HasPrefix(runtime.GOOS, "darwin") {
out, err := exec.Command("sh", "-c", `"/Applications/Google Chrome.app/Contents/MacOS/Google Chrome" --version`).Output()
if err != nil {
return false, ""
}
version := strings.Split(string(out), " ")[2]
return true, version
} else if strings.HasPrefix(runtime.GOOS, "linux") {
out, err := exec.Command("sh", "-c", `google-chrome --version`).Output()
if err != nil {
return false, ""
}
version := strings.Split(string(out), " ")[2]
return true, version
}
return false, "Can't Found"
}
// 获取Chrome Driver 链接 > Get Chrome Driver Url
func GetChromeDriverDownLoadUrl(version string) (string, bool) {
http_base_url := "http://chromedriver.storage.googleapis.com/"
platform, architecture := GetPcVersion()
if platform != "" && architecture != "" {
return http_base_url + version + "/chromedriver_" + platform + architecture + ".zip", true
} else {
return "", false
}
}
func GetNewChromeDriverDownLoadUrl(version string) (string, bool) {
http_base_url := "https://storage.googleapis.com/chrome-for-testing-public/"
platform, architecture := GetPcVersion()
if platform != "" && architecture != "" {
return http_base_url + version + "/" + platform + architecture + "/chromedriver-" + platform + architecture + ".zip", true
} else {
return "", false
}
}
// 获取Chromedriver主版本号 > Get Chromedriver major version
func getMajorVersion(version string) string {
return strings.Split(version, ".")[0]
}
// 获取对应的chromedriver版本 > Get matched chrome version
func GetMatchedChromeDriverVersion(version string) (string, error) {
http_url := "http://chromedriver.storage.googleapis.com"
res, err := grequests.Get(http_url, nil)
//res是xml,解析
if err == nil {
versionList := &ListBucketResult{}
xml.Unmarshal([]byte(res.String()), &versionList)
for _, k := range versionList.Contents {
if strings.Index(k.Key, getMajorVersion(version)+".") == 0 {
return strings.Split(k.Key, "/")[0], nil
}
}
}
return "", err
}
func GetNewDriverVersion(mainVersion string) (string, error) {
http_url := "https://googlechromelabs.github.io/chrome-for-testing/latest-versions-per-milestone.json"
res, err := grequests.Get(http_url, nil)
if err == nil {
DriverVersion := gjson.Get(res.String(), "milestones."+mainVersion+".version")
return DriverVersion.Str, nil
}
return "", err
}
// 下载Chrome Driver 临时文件 > Download Chrome Driver Temp File
func Download(mainVersion string) (string, string, error) {
var FilePath, DownLoadedFilePath, ChromeDriverVersion, DownLoadUrl string
var Err, err error
var localFile = &os.File{}
mainVersionNumber, err := strconv.Atoi(mainVersion)
LocalPath, Err := CheckFile()
if Err != nil {
return "", mainVersion, Err
}
Status, ChromeVersion := GetChromeVersion()
// Remove below, only for testing purposes
//ChromeVersion = "114.0.5735.90"
if !Status {
panic("Chrome is not installed.")
}
if mainVersionNumber < 115 {
if PcPaltform == "windows" {
ChromeDriverVersion, Err = GetMatchedChromeDriverVersion(ChromeVersion)
} else if PcPaltform == "darwin" {
ChromeDriverVersion, Err = GetMatchedChromeDriverVersion(ChromeVersion)
} else if PcPaltform == "linux" {
ChromeDriverVersion, Err = GetMatchedChromeDriverVersion(ChromeVersion)
}
if Err != nil {
return "", mainVersion, Err
}
DownLoadUrl, _ = GetChromeDriverDownLoadUrl(ChromeDriverVersion)
} else {
ChromeDriverVersion, Err := GetNewDriverVersion(mainVersion)
if Err != nil {
return "", mainVersion, Err
}
DownLoadUrl, _ = GetNewChromeDriverDownLoadUrl(ChromeDriverVersion)
}
// 下载 chromedriver
resp, err := grequests.Get(DownLoadUrl, nil)
if err != nil {
return "", mainVersion, Err
}
defer resp.Close()
// 保存文件到本地
if PcPaltform == "windows" {
localFile, err = os.Create(LocalPath + "\\Tempchromedriver.zip")
} else if PcPaltform == "darwin" {
localFile, err = os.Create(LocalPath + "/Tempchromedriver.zip")
} else if PcPaltform == "linux" {
localFile, err = os.Create(LocalPath + "/Tempchromedriver.zip")
}
if err != nil {
return "", mainVersion, Err
}
defer localFile.Close()
if _, copyErr := io.Copy(localFile, resp); err != nil {
return "", mainVersion, copyErr
}
if PcPaltform == "windows" {
FilePath = LocalPath + "\\Tempchromedriver.zip"
} else if PcPaltform == "darwin" {
FilePath = LocalPath + "/Tempchromedriver.zip"
} else if PcPaltform == "linux" {
FilePath = LocalPath + "/Tempchromedriver.zip"
}
//将filePath中的chromedriver.exe文件解压到当前文件夹
// 打开压缩包文件
zipRead, err := zip.OpenReader(FilePath)
if err != nil {
panic("There is no ChromeDriver that matches the current Chrome version. It is recommended to downgrade Chrome and try again!")
}
defer zipRead.Close()
// 遍历压缩包中的每一个文件
for _, f := range zipRead.File {
// 打开文件
if filepath.Ext(f.Name) == ".chromedriver" {
continue
}
rc, rangeErr := f.Open()
if rangeErr != nil {
return "", mainVersion, rangeErr
}
defer rc.Close()
// 创建目标文件
if PcPaltform == "windows" {
// Skip chromedriver files
if filepath.Ext(f.Name) == ".chromedriver" {
continue
}
// Open file in zip archive
rc, err := f.Open()
if err != nil {
return "", mainVersion, err
}
defer rc.Close()
// Extract the folder and file names
parts := strings.Split(f.Name, "/")
folderPath := ""
if len(parts) > 1 {
folderPath = strings.Join(parts[:len(parts)-1], string(os.PathSeparator))
}
// Create directories if needed
if folderPath != "" {
if err := os.MkdirAll(LocalPath+string(os.PathSeparator)+folderPath, os.ModePerm); err != nil {
return "", mainVersion, err
}
}
// Create target file
filePath := filepath.Join(LocalPath, f.Name)
if PcPaltform == "windows" {
filePath = strings.Replace(filePath, "/", "\\", -1)
}
createFile, creErr := os.Create(filePath)
if creErr != nil {
return "", mainVersion, creErr
}
// Copy file content
if _, copyErr := io.Copy(createFile, rc); copyErr != nil {
createFile.Close()
return "", mainVersion, copyErr
}
// Close the file
createFile.Close()
// Move the copied file one level up
newFilePath := filepath.Join(LocalPath, filepath.Base(filePath))
if err := os.Rename(filePath, newFilePath); err != nil {
return "", mainVersion, err
}
dirFilePath := filepath.Join(LocalPath, folderPath)
if err := os.Remove(dirFilePath); err != nil {
continue
}
} else if PcPaltform == "darwin" {
CreateFile, creErr := os.Create(LocalPath + "/" + f.Name)
if f.Name == "chromedriver" {
os.Rename(LocalPath+"/"+f.Name, LocalPath+"/"+mainVersion)
os.Chmod(LocalPath+"/"+mainVersion, 0755)
}
if creErr != nil {
return "", mainVersion, creErr
}
defer CreateFile.Close()
// 复制文件内容
if _, copyErr := io.Copy(CreateFile, rc); copyErr != nil {
return "", mainVersion, copyErr
}
} else if PcPaltform == "linux" {
CreateFile, creErr := os.Create(LocalPath + "/" + f.Name)
if f.Name == "chromedriver" {
os.Rename(LocalPath+"/"+f.Name, LocalPath+"/"+mainVersion)
os.Chmod(LocalPath+"/"+mainVersion, 0755)
}
if creErr != nil {
return "", mainVersion, creErr
}
defer CreateFile.Close()
// 复制文件内容
if _, copyErr := io.Copy(CreateFile, rc); copyErr != nil {
return "", mainVersion, copyErr
}
}
}
//删除 LocalPath + "\\Tempchromedriver.zip"
if PcPaltform == "windows" {
DownLoadedFilePath = LocalPath + "\\" + mainVersion + ".exe"
} else if PcPaltform == "darwin" {
DownLoadedFilePath = LocalPath + "/" + mainVersion
} else if PcPaltform == "linux" {
DownLoadedFilePath = LocalPath + "/" + mainVersion
}
return DownLoadedFilePath, mainVersion, nil
}
// 删除临时文件 > Delete Temp File
func DeleteTemFile(version string) {
LocalPath, _ := CheckFile()
if PcPaltform == "windows" {
os.Remove(LocalPath + "\\Tempchromedriver.zip")
os.Remove(LocalPath + "\\LICENSE.chromedriver")
os.Rename(LocalPath+"\\"+"chromedriver"+".exe", LocalPath+"\\"+version+".exe")
} else if PcPaltform == "darwin" {
os.Remove(LocalPath + "/Tempchromedriver.zip")
os.Remove(LocalPath + "/LICENSE.chromedriver")
} else if PcPaltform == "linux" {
os.Remove(LocalPath + "/Tempchromedriver.zip")
os.Remove(LocalPath + "/LICENSE.chromedriver")
}
}
// 查看driver实例是否存在 >
func CheckDriverInstace() (string, string) {
mainVersion := GetVersionForCreateFile()
LocalPath, err := CheckFile()
if PcPaltform == "windows" {
if err == nil && LocalPath != "" {
//查看 localPath+"\\"+mainVersion+".exe是否存在
_, findErr := os.Stat(LocalPath + "\\" + mainVersion + ".exe")
if findErr == nil {
return LocalPath + "\\" + mainVersion + ".exe", mainVersion
} else {
return "", mainVersion
}
}
} else if PcPaltform == "darwin" {
if err == nil && LocalPath != "" {
//查看 localPath+"\\"+mainVersion+".exe是否存在
_, findErr := os.Stat(LocalPath + "/" + mainVersion)
if findErr == nil {
return LocalPath + "/" + mainVersion, mainVersion
} else {
return "", mainVersion
}
}
} else if PcPaltform == "linux" {
if err == nil && LocalPath != "" {
//查看 localPath+"\\"+mainVersion+".exe是否存在
_, findErr := os.Stat(LocalPath + "/" + mainVersion)
if findErr == nil {
return LocalPath + "/" + mainVersion, mainVersion
} else {
return "", mainVersion
}
}
}
return "", mainVersion
}
// 流程 > Process > Main
func AutoDownload_ChromeDriver(printLog bool) string {
driverPatch, mainVersion := CheckDriverInstace()
if driverPatch != "" {
return driverPatch
}
// Remove below, only for testing purposes
//mainVersion = "114"
path, mainversion, _ := Download(mainVersion)
DeleteTemFile(mainversion)
if printLog {
fmt.Printf("successful checking chrome driver!")
}
return path
}