-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnodecheck.go
76 lines (64 loc) · 1.67 KB
/
nodecheck.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
package nodecheck
import (
"regexp"
"strings"
"github.com/vektah/gqlparser/v2/ast"
"github.com/gqlgo/gqlanalysis"
)
func Analyzer(excludes string) *gqlanalysis.Analyzer {
return &gqlanalysis.Analyzer{
Name: "nodecheck",
Doc: "nodecheck will find any GraphQL schema that is not conform to Node interface",
Run: run(excludes),
}
}
func run(excludes string) func(pass *gqlanalysis.Pass) (interface{}, error) {
return func(pass *gqlanalysis.Pass) (interface{}, error) {
allTypes := map[string]*ast.Definition{}
for _, def := range pass.Schema.Types {
if def.Kind == ast.Object {
allTypes[def.Name] = def
}
}
allNodeImplements := map[string]*ast.Definition{}
for name, t := range allTypes {
for _, typeInterface := range pass.Schema.Implements[name] {
if typeInterface.Kind == ast.Interface && typeInterface.Name == "Node" {
allNodeImplements[name] = t
}
}
}
unconformedTypes := map[string]*ast.Definition{}
for k, v := range allTypes {
if _, ok := allNodeImplements[k]; !ok {
unconformedTypes[v.Name] = v
}
}
needToNodeTypes := []*ast.Definition{}
for k, v := range unconformedTypes {
ok := false
for _, rule := range strings.Split(excludes, ",") {
if len(rule) > 0 {
regex := regexp.MustCompile(rule)
if ok {
break
}
if regex.MatchString(k) {
ok = true
}
}
}
if !ok {
needToNodeTypes = append(needToNodeTypes, v)
}
}
for _, t := range needToNodeTypes {
// Skip private type. e.g) __Directive, __Enum ...
if strings.HasPrefix(t.Name, "__") {
continue
}
pass.Reportf(t.Position, "%+v should conform to Node", t.Name)
}
return nil, nil
}
}