1
0
mirror of https://github.com/mgechev/revive.git synced 2025-11-23 22:04:49 +02:00
Files
revive/rule/error_strings.go
2025-05-27 07:44:24 +02:00

207 lines
4.6 KiB
Go

package rule
import (
"fmt"
"go/ast"
"go/token"
"strconv"
"strings"
"unicode"
"unicode/utf8"
"github.com/mgechev/revive/lint"
)
// ErrorStringsRule lints error strings.
type ErrorStringsRule struct {
errorFunctions map[string]map[string]struct{}
}
// Configure validates the rule configuration, and configures the rule accordingly.
//
// Configuration implements the [lint.ConfigurableRule] interface.
func (r *ErrorStringsRule) Configure(arguments lint.Arguments) error {
r.errorFunctions = map[string]map[string]struct{}{
"fmt": {
"Errorf": {},
},
"errors": {
"Errorf": {},
"WithMessage": {},
"Wrap": {},
"New": {},
"WithMessagef": {},
"Wrapf": {},
},
}
var invalidCustomFunctions []string
for _, argument := range arguments {
pkgFunction, ok := argument.(string)
if !ok {
continue
}
pkg, function, ok := strings.Cut(strings.TrimSpace(pkgFunction), ".")
if !ok || pkg == "" || function == "" {
invalidCustomFunctions = append(invalidCustomFunctions, pkgFunction)
continue
}
if _, ok := r.errorFunctions[pkg]; !ok {
r.errorFunctions[pkg] = map[string]struct{}{}
}
r.errorFunctions[pkg][function] = struct{}{}
}
if len(invalidCustomFunctions) != 0 {
return fmt.Errorf("found invalid custom function: %s", strings.Join(invalidCustomFunctions, ","))
}
return nil
}
// Apply applies the rule to given file.
func (r *ErrorStringsRule) Apply(file *lint.File, _ lint.Arguments) []lint.Failure {
var failures []lint.Failure
fileAst := file.AST
walker := lintErrorStrings{
file: file,
fileAst: fileAst,
errorFunctions: r.errorFunctions,
onFailure: func(failure lint.Failure) {
failures = append(failures, failure)
},
}
ast.Walk(walker, fileAst)
return failures
}
// Name returns the rule name.
func (*ErrorStringsRule) Name() string {
return "error-strings"
}
type lintErrorStrings struct {
file *lint.File
fileAst *ast.File
errorFunctions map[string]map[string]struct{}
onFailure func(lint.Failure)
}
// Visit browses the AST.
func (w lintErrorStrings) Visit(n ast.Node) ast.Visitor {
ce, ok := n.(*ast.CallExpr)
if !ok {
return w
}
if len(ce.Args) < 1 {
return w
}
// expression matches the known pkg.function
ok = w.match(ce)
if !ok {
return w
}
str, ok := w.getMessage(ce)
if !ok {
return w
}
s, _ := strconv.Unquote(str.Value) // can assume well-formed Go
if s == "" {
return w
}
clean, conf := lintErrorString(s)
if clean {
return w
}
w.onFailure(lint.Failure{
Node: str,
Confidence: conf,
Category: lint.FailureCategoryErrors,
Failure: "error strings should not be capitalized or end with punctuation or a newline",
})
return w
}
// match returns true if the expression corresponds to the known pkg.function,
// i.e.: errors.Wrap.
func (w lintErrorStrings) match(expr *ast.CallExpr) bool {
sel, ok := expr.Fun.(*ast.SelectorExpr)
if !ok {
return false
}
// retrieve the package
id, ok := sel.X.(*ast.Ident)
if !ok {
return false
}
functions, ok := w.errorFunctions[id.Name]
if !ok {
return false
}
// retrieve the function
_, ok = functions[sel.Sel.Name]
return ok
}
// getMessage returns the message depending on its position.
// Returns false if the cast is unsuccessful.
func (w lintErrorStrings) getMessage(expr *ast.CallExpr) (s *ast.BasicLit, success bool) {
str, ok := w.checkArg(expr, 0)
if ok {
return str, true
}
if len(expr.Args) < 2 {
return s, false
}
str, ok = w.checkArg(expr, 1)
if !ok {
return s, false
}
return str, true
}
func (lintErrorStrings) checkArg(expr *ast.CallExpr, arg int) (s *ast.BasicLit, success bool) {
str, ok := expr.Args[arg].(*ast.BasicLit)
if !ok {
return s, false
}
if str.Kind != token.STRING {
return s, false
}
return str, true
}
func lintErrorString(s string) (isClean bool, conf float64) {
const basicConfidence = 0.8
const capConfidence = basicConfidence - 0.2
last, _ := utf8.DecodeLastRuneInString(s)
if last == '.' || last == ':' || last == '!' || last == '\n' {
return false, basicConfidence
}
first, firstN := utf8.DecodeRuneInString(s)
if !unicode.IsUpper(first) {
return true, 0
}
// People use proper nouns and exported Go identifiers in error strings,
// so decrease the confidence of warnings for capitalization.
for _, r := range s[firstN:] {
if unicode.IsSpace(r) {
break
}
if unicode.IsUpper(r) || unicode.IsDigit(r) {
return true, 0 // accept words with more than 2 capital letters or digits (e.g. GitHub, URLs, I2000)
}
}
// Flag strings starting with something that doesn't look like an initialism.
return false, capConfidence
}