-
Notifications
You must be signed in to change notification settings - Fork 19
/
template.go
133 lines (103 loc) · 2.51 KB
/
template.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
package main
import (
"archive/zip"
"fmt"
"io"
"net/http"
"os"
"path/filepath"
"strings"
"github.com/GoAdminGroup/go-admin/modules/utils"
)
func getThemeTemplate(moduleName, themeName string) {
downloadTo("http://file.go-admin.cn/go_admin/template/template.zip", "tmp.zip")
checkError(unzipDir("tmp.zip", "."))
checkError(os.Rename("./QiAtztVk83CwCh", "./"+themeName))
replaceContents("./"+themeName, moduleName, themeName)
checkError(os.Rename("./"+themeName+"/template.go", "./"+themeName+"/"+themeName+".go"))
fmt.Println()
fmt.Println("generate theme template success!!🍺🍺")
fmt.Println()
}
func downloadTo(url, output string) {
defer func() {
_ = os.Remove(output)
}()
req, err := http.NewRequest("GET", url, nil)
checkError(err)
res, err := http.DefaultClient.Do(req)
checkError(err)
defer func() {
_ = res.Body.Close()
}()
file, err := os.Create(output)
checkError(err)
_, err = io.Copy(file, res.Body)
checkError(err)
}
func unzipDir(src, dest string) error {
r, err := zip.OpenReader(src)
if err != nil {
return err
}
defer func() {
if err := r.Close(); err != nil {
panic(err)
}
}()
checkError(os.MkdirAll(dest, 0750))
// Closure to address file descriptors issue with all the deferred .Close() methods
extractAndWriteFile := func(f *zip.File) error {
rc, err := f.Open()
if err != nil {
return err
}
defer func() {
if err := rc.Close(); err != nil {
panic(err)
}
}()
path := filepath.Join(dest, f.Name)
if f.FileInfo().IsDir() {
checkError(os.MkdirAll(path, f.Mode()))
} else {
checkError(os.MkdirAll(filepath.Dir(path), f.Mode()))
f, err := os.OpenFile(path, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, f.Mode())
if err != nil {
return err
}
defer func() {
if err := f.Close(); err != nil {
panic(err)
}
}()
_, err = io.Copy(f, rc)
if err != nil {
return err
}
}
return nil
}
for _, f := range r.File {
err := extractAndWriteFile(f)
if err != nil {
return err
}
}
return nil
}
func replaceContents(fileDir, moduleName, themeName string) {
files, err := os.ReadDir(fileDir)
checkError(err)
for _, file := range files {
path := fileDir + "/" + file.Name()
if !file.IsDir() {
buf, err := os.ReadFile(path)
checkError(err)
content := string(buf)
newContent := utils.ReplaceAll(content, "github.com/GoAdminGroup/themes/adminlte", moduleName,
"adminlte", themeName, "Adminlte", strings.Title(themeName))
checkError(os.WriteFile(path, []byte(newContent), 0))
}
}
}