-
Notifications
You must be signed in to change notification settings - Fork 115
/
errors.go
94 lines (77 loc) · 2.19 KB
/
errors.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
/*
Copyright 2021 Flant JSC
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 errors
import (
"fmt"
"strings"
"github.com/fatih/color"
"github.com/kyokomi/emoji"
)
type LintRuleError struct {
Text string
ID string
ObjectID string
Value interface{}
}
func (l *LintRuleError) EqualsTo(candidate LintRuleError) bool {
return l.ID == candidate.ID && l.Text == candidate.Text && l.ObjectID == candidate.ObjectID
}
func (l *LintRuleError) IsEmpty() bool {
return l.ID == "" && l.Text == "" && l.ObjectID == ""
}
func NewLintRuleError(id, objectID string, value interface{}, template string, a ...interface{}) LintRuleError {
return LintRuleError{
ObjectID: objectID,
Value: value,
Text: fmt.Sprintf(template, a...),
ID: id,
}
}
var EmptyRuleError = LintRuleError{Text: "", ID: "", ObjectID: ""}
type LintRuleErrorsList struct {
data []LintRuleError
}
func (l *LintRuleErrorsList) Add(e LintRuleError) {
if e.IsEmpty() {
return
}
for _, addedError := range l.data {
if e.EqualsTo(addedError) {
return
}
}
l.data = append(l.data, e)
}
func (l *LintRuleErrorsList) Merge(e LintRuleErrorsList) {
l.data = append(l.data, e.data...)
}
func (l *LintRuleErrorsList) ConvertToError() error {
if len(l.data) == 0 {
return nil
}
builder := strings.Builder{}
for _, err := range l.data {
builder.WriteString(fmt.Sprintf(
"%s%s\n\tMessage\t- %s\n\tObject\t- %s\n",
emoji.Sprintf(":monkey:"),
color.New(color.FgHiBlue).SprintfFunc()("[#%s]", err.ID),
color.New(color.FgRed).SprintfFunc()(err.Text),
err.ObjectID,
))
if err.Value != nil {
builder.WriteString(fmt.Sprintf("\tValue\t- %v\n", err.Value))
}
builder.WriteString("\n")
}
return fmt.Errorf(builder.String())
}