generated from axetroy/go-cli-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfslint.go
229 lines (187 loc) · 4.3 KB
/
fslint.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
package fslint
import (
"os"
"path/filepath"
"regexp"
"strings"
"github.com/axetroy/fslint/internal/parser"
zglob "github.com/mattn/go-zglob"
"github.com/pkg/errors"
glob "github.com/ryanuber/go-glob"
)
var (
ERR_MAX_ERROR = errors.New("MAX ERROR")
)
func isGlob(pattern string) bool {
return strings.Contains(pattern, "*")
}
func isOverMaxError(results *Results, maxError *int) bool {
if maxError == nil || *maxError <= 0 {
return false
}
if results.ErrorCount() >= *maxError {
return true
}
return false
}
func handleMatchFile(results *Results, selector Selector, exclude *[]string, maxError *int) error {
var (
isFolder bool = false
)
selectTarget := selector.File
if selector.Folder != "" {
selectTarget = selector.Folder
isFolder = true
}
if selectTarget == "" {
return errors.New("missing 'file' od 'folder' file in include block")
}
matchers, err := zglob.Glob(selectTarget)
if err != nil {
return errors.WithStack(err)
}
loop:
for _, file := range matchers {
// exclude
if exclude != nil {
paths := strings.Split(file, string(filepath.Separator))
for _, pattern := range *exclude {
if isGlob(pattern) {
if glob.Glob(pattern, file) {
continue loop
}
} else {
for _, p := range paths {
if p == pattern {
continue loop
}
}
}
}
}
// ignore for rules
if selector.Ignore != nil {
paths := strings.Split(file, string(filepath.Separator))
for _, pattern := range selector.Ignore {
if isGlob(pattern) {
if glob.Glob(pattern, file) {
continue loop
}
} else {
for _, p := range paths {
if p == pattern {
continue loop
}
}
}
}
}
var testTarget string
if isFolder {
stat, err := os.Stat(file)
if err != nil {
return errors.WithStack(err)
}
if !stat.IsDir() {
continue
}
splits := strings.Split(file, "/")
testTarget = splits[len(splits)-1]
} else {
fileName := filepath.Base(file)
filenameWithoutExtension := strings.TrimRight(fileName, filepath.Ext(fileName))
testTarget = filenameWithoutExtension
}
switch selector.Pattern {
case ModePascalCase:
if !parser.IsPascalCase(testTarget) {
results.Append(LintResult{
FilePath: file,
Expect: ModePascalCase,
Level: selector.Level,
})
if isOverMaxError(results, maxError) {
return ERR_MAX_ERROR
}
}
case ModeCamelCase:
if !parser.IsCamelCase(testTarget) {
results.Append(LintResult{
FilePath: file,
Expect: ModeCamelCase,
Level: selector.Level,
})
if isOverMaxError(results, maxError) {
return ERR_MAX_ERROR
}
}
case ModeKebabCase:
if !parser.IsKebabCase(testTarget) {
results.Append(LintResult{
FilePath: file,
Expect: ModeKebabCase,
Level: selector.Level,
})
if isOverMaxError(results, maxError) {
return ERR_MAX_ERROR
}
}
case ModeSnakeCase:
if !parser.IsSnakeCase(testTarget) {
results.Append(LintResult{
FilePath: file,
Expect: ModeSnakeCase,
Level: selector.Level,
})
if isOverMaxError(results, maxError) {
return ERR_MAX_ERROR
}
}
default:
if isRegExpStr(string(selector.Pattern)) {
val := strings.Trim(string(selector.Pattern), "/")
reg, err := regexp.Compile(val)
if err != nil {
return errors.WithMessagef(err, "invalid RegExp expression '%s'", string(selector.Pattern))
}
if !reg.MatchString(testTarget) {
results.Append(LintResult{
FilePath: file,
Expect: ModeRegExp,
Level: selector.Level,
})
if isOverMaxError(results, maxError) {
return ERR_MAX_ERROR
}
}
}
}
}
return nil
}
type LintOptions struct {
MaxError *int
}
func Lint(configFilepath string, options *LintOptions) (*Results, error) {
var (
results = NewResults()
)
config, err := readConfig(configFilepath)
if err != nil {
return nil, errors.WithStack(err)
}
if options != nil {
if options.MaxError != nil {
config.MaxError = options.MaxError
}
}
for _, selector := range config.Include {
if err := handleMatchFile(results, selector, config.Exclude, config.MaxError); err != nil {
if errors.Is(err, ERR_MAX_ERROR) {
return results, nil
}
return nil, errors.WithStack(err)
}
}
return results, nil
}