-
Notifications
You must be signed in to change notification settings - Fork 313
/
Copy pathextract.go
104 lines (86 loc) · 2.07 KB
/
extract.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
//go:build ignore
package main
import (
"archive/zip"
"flag"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
)
func main() {
urlFlag := flag.String("url", "", "URL to download from")
outputFlag := flag.String("output", "", "Output directory")
flag.Parse()
if *urlFlag == "" || *outputFlag == "" {
flag.Usage()
os.Exit(1)
}
if err := os.RemoveAll(*outputFlag); err != nil {
fmt.Printf("Error removing directory: %v\n", err)
os.Exit(1)
}
if err := os.MkdirAll(*outputFlag, 0755); err != nil {
fmt.Printf("Error creating directory: %v\n", err)
os.Exit(1)
}
resp, err := http.Get(*urlFlag)
if err != nil {
fmt.Printf("Error downloading: %v\n", err)
os.Exit(1)
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
fmt.Printf("Bad status: %s\n", resp.Status)
os.Exit(1)
}
tmpFile, err := os.CreateTemp("", "download-*.zip")
if err != nil {
fmt.Printf("Error creating temp file: %v\n", err)
os.Exit(1)
}
defer os.Remove(tmpFile.Name())
defer tmpFile.Close()
_, err = io.Copy(tmpFile, resp.Body)
if err != nil {
fmt.Printf("Error saving download: %v\n", err)
os.Exit(1)
}
reader, err := zip.OpenReader(tmpFile.Name())
if err != nil {
fmt.Printf("Error opening zip: %v\n", err)
os.Exit(1)
}
defer reader.Close()
for _, file := range reader.File {
path := filepath.Join(*outputFlag, file.Name)
if file.FileInfo().IsDir() {
os.MkdirAll(path, os.ModePerm)
continue
}
if err := os.MkdirAll(filepath.Dir(path), os.ModePerm); err != nil {
fmt.Printf("Error creating directory for file: %v\n", err)
os.Exit(1)
}
dstFile, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, file.Mode())
if err != nil {
fmt.Printf("Error creating file: %v\n", err)
os.Exit(1)
}
srcFile, err := file.Open()
if err != nil {
dstFile.Close()
fmt.Printf("Error opening zip entry: %v\n", err)
os.Exit(1)
}
_, err = io.Copy(dstFile, srcFile)
dstFile.Close()
srcFile.Close()
if err != nil {
fmt.Printf("Error extracting file: %v\n", err)
os.Exit(1)
}
}
fmt.Println("UI Extracted successfully!")
}