generated from ntk148v/golang-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
templates.go
245 lines (212 loc) · 5.37 KB
/
templates.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
// Copyright 2021 Kien Nguyen-Tuan <[email protected]>
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
import (
"archive/zip"
"fmt"
"io"
"net/http"
"os"
"os/exec"
"os/user"
"path"
"path/filepath"
"regexp"
"strconv"
"strings"
"github.com/charmbracelet/bubbles/list"
"github.com/termie/go-shutil"
)
const (
gitignoreUrl = "https://github.com/github/gitignore"
dataDir = ".goignore"
)
var dataPath = path.Join(os.Getenv("HOME"), dataDir)
// commandExists checks if the given command exists
func commandExists(cmd string) bool {
_, err := exec.LookPath(cmd)
return err == nil
}
// unzip - get from https://stackoverflow.com/questions/20357223/easy-way-to-unzip-file-with-golang
func unzip(src, dest string) error {
r, err := zip.OpenReader(src)
if err != nil {
return err
}
defer func() {
if err := r.Close(); err != nil {
panic(err)
}
}()
os.MkdirAll(dest, 0755)
// 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)
// Check for ZipSlip (Directory traversal)
if !strings.HasPrefix(path, filepath.Clean(dest)+string(os.PathSeparator)) {
return fmt.Errorf("illegal file path: %s", path)
}
if f.FileInfo().IsDir() {
os.MkdirAll(path, f.Mode())
} else {
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
}
// downloadTemplates gets the templates from Github repository
// 1. If git is installed, use git clone.
// 2. If not, just download then unzip it.
func downloadTemplates() error {
// Check if git is already installed
if commandExists("git") {
// if data dir is empty, get the newest Gitignore templates.
// Setup directory
curUsr, err := user.Current()
if err != nil {
return err
}
os.MkdirAll(dataPath, 0755)
uid, _ := strconv.Atoi(curUsr.Uid)
gid, _ := strconv.Atoi(curUsr.Gid)
os.Chown(dataPath, uid, gid)
cmd := exec.Command("git", []string{"clone", "--", gitignoreUrl, dataPath}...)
cmd.Dir = dataPath
return cmd.Run()
}
archivePath := path.Join(os.TempDir(), "gitignore.zip")
// Create the file
out, err := os.Create(archivePath)
if err != nil {
return err
}
resp, err := http.Get(fmt.Sprintf("%s/archive/master.zip", gitignoreUrl))
if err != nil {
return err
}
defer func() {
resp.Body.Close()
out.Close()
os.Remove(archivePath)
}()
// Writer the body to file
_, err = io.Copy(out, resp.Body)
if err != nil {
return err
}
// Unzip to a temporary directory
if err = unzip(archivePath, os.TempDir()); err != nil {
return err
}
err = shutil.CopyTree(path.Join(os.TempDir(), "gitignore-master"), dataPath, nil)
if err != nil {
return err
}
return nil
}
// initTemplates run at start up
func initTemplates() error {
if _, err := os.Stat(dataPath); err != nil {
if !os.IsNotExist(err) {
return err
}
fmt.Println(statusMessageStyle("Initializing Gitignore template source..."))
if err := downloadTemplates(); err != nil {
// if error, clean the path
os.Remove(dataPath)
return err
}
fmt.Println(statusMessageStyle("Gitignore templates are downloaded"))
}
return nil
}
// updateTemplateList gets a list of templates from data dir
func updateTemplateList() ([]list.Item, error) {
items := make([]list.Item, 0)
ignoreRegEx, err := regexp.Compile("^.+(.gitignore)$")
if err != nil {
return items, err
}
err = filepath.Walk(dataPath, func(path string, info os.FileInfo, err error) error {
if err == nil && ignoreRegEx.MatchString(info.Name()) {
if info.IsDir() {
path = filepath.Join(path, info.Name())
}
items = append(items, item{
title: info.Name(),
path: path,
})
}
return nil
})
return items, err
}
// copyTemplate updates the .gitignore in current directory
// with the chosen gitignore
func copyTemplate(src, dest string) error {
srcFile, err := os.Open(src)
if err != nil {
return err
}
// create if file doesn't exist, append if file exists
destFile, err := os.OpenFile(dest, os.O_RDWR|os.O_CREATE|os.O_APPEND, 0660)
if err != nil {
return err
}
defer func() {
srcFile.Close()
destFile.Close()
}()
if _, err = io.Copy(destFile, srcFile); err != nil {
return err
}
err = destFile.Sync()
return err
}
// pullTemplateUpdates performs git pull
func pullTemplateUpdates() error {
cmd := exec.Command("git", []string{"pull"}...)
cmd.Dir = dataPath
err := cmd.Run()
return err
}