mirror of
https://github.com/go-gitea/gitea.git
synced 2024-11-01 08:47:40 -04:00
4f63f283c4
Co-authored-by: techknowlogick <techknowlogick@gitea.io>
152 lines
3.6 KiB
Go
152 lines
3.6 KiB
Go
package rule
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/mgechev/revive/lint"
|
|
"go/ast"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
const (
|
|
defaultStrLitLimit = 2
|
|
kindFLOAT = "FLOAT"
|
|
kindINT = "INT"
|
|
kindSTRING = "STRING"
|
|
)
|
|
|
|
type whiteList map[string]map[string]bool
|
|
|
|
func newWhiteList() whiteList {
|
|
return map[string]map[string]bool{kindINT: map[string]bool{}, kindFLOAT: map[string]bool{}, kindSTRING: map[string]bool{}}
|
|
}
|
|
|
|
func (wl whiteList) add(kind string, list string) {
|
|
elems := strings.Split(list, ",")
|
|
for _, e := range elems {
|
|
wl[kind][e] = true
|
|
}
|
|
}
|
|
|
|
// AddConstantRule lints unused params in functions.
|
|
type AddConstantRule struct{}
|
|
|
|
// Apply applies the rule to given file.
|
|
func (r *AddConstantRule) Apply(file *lint.File, arguments lint.Arguments) []lint.Failure {
|
|
strLitLimit := defaultStrLitLimit
|
|
var whiteList = newWhiteList()
|
|
if len(arguments) > 0 {
|
|
args, ok := arguments[0].(map[string]interface{})
|
|
if !ok {
|
|
panic(fmt.Sprintf("Invalid argument to the add-constant rule. Expecting a k,v map, got %T", arguments[0]))
|
|
}
|
|
for k, v := range args {
|
|
kind := ""
|
|
switch k {
|
|
case "allowFloats":
|
|
kind = kindFLOAT
|
|
fallthrough
|
|
case "allowInts":
|
|
if kind == "" {
|
|
kind = kindINT
|
|
}
|
|
fallthrough
|
|
case "allowStrs":
|
|
if kind == "" {
|
|
kind = kindSTRING
|
|
}
|
|
list, ok := v.(string)
|
|
if !ok {
|
|
panic(fmt.Sprintf("Invalid argument to the add-constant rule, string expected. Got '%v' (%T)", v, v))
|
|
}
|
|
whiteList.add(kind, list)
|
|
case "maxLitCount":
|
|
sl, ok := v.(string)
|
|
if !ok {
|
|
panic(fmt.Sprintf("Invalid argument to the add-constant rule, expecting string representation of an integer. Got '%v' (%T)", v, v))
|
|
}
|
|
|
|
limit, err := strconv.Atoi(sl)
|
|
if err != nil {
|
|
panic(fmt.Sprintf("Invalid argument to the add-constant rule, expecting string representation of an integer. Got '%v'", v))
|
|
}
|
|
strLitLimit = limit
|
|
}
|
|
}
|
|
}
|
|
|
|
var failures []lint.Failure
|
|
|
|
onFailure := func(failure lint.Failure) {
|
|
failures = append(failures, failure)
|
|
}
|
|
|
|
w := lintAddConstantRule{onFailure: onFailure, strLits: make(map[string]int, 0), strLitLimit: strLitLimit, whiteLst: whiteList}
|
|
|
|
ast.Walk(w, file.AST)
|
|
|
|
return failures
|
|
}
|
|
|
|
// Name returns the rule name.
|
|
func (r *AddConstantRule) Name() string {
|
|
return "add-constant"
|
|
}
|
|
|
|
type lintAddConstantRule struct {
|
|
onFailure func(lint.Failure)
|
|
strLits map[string]int
|
|
strLitLimit int
|
|
whiteLst whiteList
|
|
}
|
|
|
|
func (w lintAddConstantRule) Visit(node ast.Node) ast.Visitor {
|
|
switch n := node.(type) {
|
|
case *ast.GenDecl:
|
|
return nil // skip declarations
|
|
case *ast.BasicLit:
|
|
switch kind := n.Kind.String(); kind {
|
|
case kindFLOAT, kindINT:
|
|
w.checkNumLit(kind, n)
|
|
case kindSTRING:
|
|
w.checkStrLit(n)
|
|
}
|
|
}
|
|
|
|
return w
|
|
|
|
}
|
|
|
|
func (w lintAddConstantRule) checkStrLit(n *ast.BasicLit) {
|
|
if w.whiteLst[kindSTRING][n.Value] {
|
|
return
|
|
}
|
|
|
|
count := w.strLits[n.Value]
|
|
if count >= 0 {
|
|
w.strLits[n.Value] = count + 1
|
|
if w.strLits[n.Value] > w.strLitLimit {
|
|
w.onFailure(lint.Failure{
|
|
Confidence: 1,
|
|
Node: n,
|
|
Category: "style",
|
|
Failure: fmt.Sprintf("string literal %s appears, at least, %d times, create a named constant for it", n.Value, w.strLits[n.Value]),
|
|
})
|
|
w.strLits[n.Value] = -1 // mark it to avoid failing again on the same literal
|
|
}
|
|
}
|
|
}
|
|
|
|
func (w lintAddConstantRule) checkNumLit(kind string, n *ast.BasicLit) {
|
|
if w.whiteLst[kind][n.Value] {
|
|
return
|
|
}
|
|
|
|
w.onFailure(lint.Failure{
|
|
Confidence: 1,
|
|
Node: n,
|
|
Category: "style",
|
|
Failure: fmt.Sprintf("avoid magic numbers like '%s', create a named constant for it", n.Value),
|
|
})
|
|
}
|