-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagefile_helpers.go
357 lines (287 loc) · 7.43 KB
/
magefile_helpers.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
//go:build mage
// +build mage
package main
import (
"archive/zip"
"bufio"
"errors"
"fmt"
"io"
"os"
"os/exec"
"runtime"
"strings"
"sync"
"time"
"github.com/fatih/color"
"github.com/magefile/mage/sh"
)
const (
MODULE_NAME = "hmerritt/reactenv" // go.mod module name
LOG_LEVEL = 4 // 5 = debug, 4 = info, 3 = warn, 2 = error
)
// ----------------------------------------------------------------------------
// Runtime
// ----------------------------------------------------------------------------
// Runs a single cmd command, and streams the output to stdout
func RunStream(args []string, dir string, addPadding bool) error {
cmd := exec.Command(args[0], args[1:]...)
if dir != "" {
cmd.Dir = dir
}
if addPadding {
fmt.Println("")
}
stdout, _ := cmd.StdoutPipe()
stderr, _ := cmd.StderrPipe()
err := cmd.Start()
if err != nil {
return err
}
pipeHandler := func(pipe io.ReadCloser, textColor color.Attribute) {
scanner := bufio.NewScanner(pipe)
scanner.Split(bufio.ScanLines)
for scanner.Scan() {
color.Set(textColor)
fmt.Println(scanner.Text())
color.Unset()
}
}
go func() {
pipeHandler(stdout, color.Reset)
}()
go func() {
pipeHandler(stderr, color.Reset)
}()
cmd.Wait()
if addPadding {
fmt.Println("")
}
exitCode := cmd.ProcessState.ExitCode()
if exitCode != 0 {
return fmt.Errorf("command exited with code %d", exitCode)
}
return nil
}
// Runs multiple cmd commands one-by-one
func RunSync(commands [][]string) error {
for _, cmd := range commands {
if len(cmd) == 0 {
continue
}
if err := sh.Run(cmd[0], cmd[1:]...); err != nil {
return err
}
}
return nil
}
// Runs multiple commands in parallel
func RunParallel(commands [][]string) error {
var wg sync.WaitGroup
var errCatch error = nil
// Launch a goroutine for each command.
for _, cmd := range commands {
if len(cmd) == 0 {
continue
}
wg.Add(1)
go func(cmd []string) {
defer wg.Done()
if err := sh.Run(cmd[0], cmd[1:]...); err != nil {
errCatch = err
}
}(cmd)
}
// Wait for all the goroutines to finish.
wg.Wait()
// If any of the commands failed, return the first error.
if errCatch != nil {
return errCatch
}
return nil
}
// ----------------------------------------------------------------------------
// CLI
// ----------------------------------------------------------------------------
type Logger struct {
// The logging level the logger should log at. This is typically (and defaults
// to) `Info`, which allows Info(), Warn(), Error() and Fatal() to be logged.
Level uint32
// Name of the function Logger was initiated from.
FnInitName string
// Timestamp of Logger initiation.
InitTimestamp time.Time
// Timestamp of the most recent log. Used to calculate and show the time in
// milliseconds since last log.
PrevTimestamp time.Time
}
func NewLogger() *Logger {
// Function name
pc, _, _, _ := runtime.Caller(1)
funcName := runtime.FuncForPC(pc).Name()
funcName = funcName[strings.LastIndex(funcName, ".")+1:] // Removes package name
return &Logger{
Level: LOG_LEVEL,
FnInitName: funcName,
InitTimestamp: time.Now(),
PrevTimestamp: time.Now(),
}
}
func (l *Logger) log(level uint32, a ...interface{}) {
if l.Level < level {
return
}
currentTime := time.Now()
formattedTime := currentTime.Format("2006-01-02 15:04:05")
toLog := fmt.Sprintf("%s (%s) +%9s => ", formattedTime, l.FnInitName, DurationSince(l.PrevTimestamp))
messages := make([]interface{}, 0)
messages = append(messages, toLog)
messages = append(messages, a...)
fmt.Println(messages...)
l.PrevTimestamp = currentTime
}
func (l *Logger) SetLevel(level uint32) {
l.Level = level
}
func (l *Logger) Error(messages ...interface{}) error {
color.Set(color.FgRed)
defer color.Unset()
l.log(2, messages...)
return errors.New(strings.Trim(strings.Join(strings.Fields(fmt.Sprint(messages)), " "), "[]"))
}
func (l *Logger) Warn(messages ...interface{}) {
color.Set(color.FgYellow)
defer color.Unset()
l.log(3, messages...)
}
func (l *Logger) Info(messages ...interface{}) {
l.log(4, messages...)
}
func (l *Logger) Debug(messages ...interface{}) {
l.log(5, messages...)
}
func (l *Logger) End() {
color.Set(color.FgCyan)
defer color.Unset()
l.log(4, fmt.Sprintf("took %s", DurationSince(l.InitTimestamp)))
}
func DurationSince(since time.Time) string {
ms := time.Since(since).Milliseconds()
if ms < 1000 {
return fmt.Sprintf("%.2fms", float64(ms))
}
if ms < 60000 {
s := float64(ms) / 1000
return fmt.Sprintf("%.2fs", s)
}
m := float64(ms) / 60000
return fmt.Sprintf("%.2fm", m)
}
// ----------------------------------------------------------------------------
// FLAGS + GIT
// ----------------------------------------------------------------------------
func BuildLdFlagValue(packageName, name, value string) string {
return fmt.Sprintf("-X %s/%s.%s=%s", MODULE_NAME, packageName, name, value)
}
func LdFlagString() string {
return fmt.Sprintf(
"-s -w %s %s %s",
BuildLdFlagValue("version", "GitCommit", GitHash()),
BuildLdFlagValue("version", "GitBranch", GitBranch()),
BuildLdFlagValue("version", "BuildDate", time.Now().Format("2006-01-02+15:04:05")),
)
}
// Returns the short hash of the current Git commit.
func GitHash() string {
gitHash, _ := sh.Output("git", "rev-parse", "--short", "HEAD")
return gitHash
}
// Returns the current Git branch name.
//
// Patches inconsistencies with common CI environments.
func GitBranch() string {
gitBranch, _ := sh.Output("git", "rev-parse", "--abbrev-ref", "HEAD")
// Detect CircleCI
if len(os.Getenv("CIRCLE_BRANCH")) > 0 {
gitBranch = os.Getenv("CIRCLE_BRANCH")
}
// Detect GitHub Actions CI
if len(os.Getenv("GITHUB_REF_NAME")) > 0 && os.Getenv("GITHUB_REF_TYPE") == "branch" {
gitBranch = os.Getenv("GITHUB_REF_NAME")
}
// Detect GitLab CI
if len(os.Getenv("CI_COMMIT_BRANCH")) > 0 {
gitBranch = os.Getenv("CI_COMMIT_BRANCH")
}
// Detect Netlify CI + generic
if len(os.Getenv("BRANCH")) > 0 {
gitBranch = os.Getenv("BRANCH")
}
// Detect HEAD state, and remove it.
if gitBranch == "HEAD" {
gitBranch = ""
}
return gitBranch
}
// ----------------------------------------------------------------------------
// MISC
// ----------------------------------------------------------------------------
// Checks if an executable exists in PATH
func ExecExists(e string) bool {
_, err := exec.LookPath(e)
return err == nil
}
// Get ENV, or use fallback value
func GetEnv(key, fallback string) string {
if value, ok := os.LookupEnv(key); ok {
return value
}
return fallback
}
func CopyFile(src, dst string) error {
input, err := os.ReadFile(src)
if err != nil {
return err
}
err = os.WriteFile(dst, input, 0644)
if err != nil {
return err
}
return nil
}
// Zip one or more files
func ZipFiles(zipPath string, files ...string) error {
zipFile, err := os.Create(zipPath)
if err != nil {
return err
}
defer zipFile.Close()
zipWriter := zip.NewWriter(zipFile)
defer zipWriter.Close()
// Add the files to the ZIP archive
for _, file := range files {
fileToZip, err := os.Open(file)
if err != nil {
return err
}
defer fileToZip.Close()
info, err := fileToZip.Stat()
if err != nil {
return err
}
header, err := zip.FileInfoHeader(info)
if err != nil {
return err
}
header.Method = zip.Deflate
writer, err := zipWriter.CreateHeader(header)
if err != nil {
return err
}
_, err = io.Copy(writer, fileToZip)
if err != nil {
return err
}
}
return nil
}