-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathformat.go
148 lines (119 loc) · 2.64 KB
/
format.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
package main
import (
"errors"
"fmt"
"github.com/dstmodders/mod-cli/tools"
"github.com/fatih/color"
)
type Format struct {
canRunPrettier bool
canRunStyLua bool
cfg *Config
tools *tools.Tools
}
func NewFormat(cfg *Config) (*Format, error) {
t, err := tools.New()
if err != nil {
return nil, err
}
t.Prettier.SetIgnore(cfg.Format.Prettier.Ignore)
if cfg.Format.Prettier.Docker {
t.Prettier.SetRunInDocker(true)
}
t.StyLua.SetIgnore(cfg.Format.StyLua.Ignore)
if cfg.Format.StyLua.Docker {
t.StyLua.SetRunInDocker(true)
}
return &Format{
cfg: cfg,
tools: t,
}, nil
}
func (f *Format) checkTools() {
var errPrettier, errStyLua error
err := errors.New("neither Prettier nor StyLua are available")
if !f.cfg.Format.Prettier.Enabled && !f.cfg.Format.StyLua.Enabled {
fatalError("both Prettier and StyLua are disabled. Enable at least one of them first")
}
if f.cfg.Format.Prettier.Enabled {
errPrettier = checkIfToolExists(f.tools.Docker, f.tools.Prettier)
if errPrettier == nil {
f.canRunPrettier = true
err = nil
}
}
if f.cfg.Format.StyLua.Enabled {
errStyLua = checkIfToolExists(f.tools.Docker, f.tools.StyLua)
if errStyLua == nil {
f.canRunStyLua = true
err = nil
}
}
if f.canRunStyLua || f.canRunPrettier {
if errPrettier != nil {
printWarning(errPrettier)
}
if errStyLua != nil {
printWarning(errStyLua)
}
}
if err != nil {
fatalError(err)
}
}
func (f *Format) printFormat(format tools.Format) {
if len(format.Files) == 0 {
fmt.Println("No issues found")
return
}
var state string
for _, file := range format.Files {
switch file.State {
case tools.FileStateSuccess:
state = color.GreenString("success")
default:
state = color.YellowString("warning")
}
fmt.Printf("%s %s\n", state, file.Path)
}
}
func (f *Format) runPrettier() (err error) {
var format tools.Format
if f.cfg.Format.Prettier.Fix {
format, err = f.tools.Prettier.Fix()
} else {
format, err = f.tools.Prettier.Check()
}
if err != nil {
return err
}
printTitle("Prettier")
f.printFormat(format)
return nil
}
func (f *Format) runStyLua() (err error) {
var format tools.Format
if f.cfg.Format.StyLua.Fix {
format, err = f.tools.StyLua.Fix()
} else {
format, err = f.tools.StyLua.Check()
}
if err != nil {
return err
}
printTitle("StyLua")
f.printFormat(format)
return nil
}
func (f *Format) run() {
f.checkTools()
if f.canRunPrettier && f.cfg.Format.Prettier.Enabled {
_ = f.runPrettier()
}
if f.canRunStyLua && f.cfg.Format.StyLua.Enabled {
if f.canRunPrettier && f.cfg.Format.Prettier.Enabled {
fmt.Println()
}
_ = f.runStyLua()
}
}