59b6df6aab
* ⚡️ Fixes #88. Accept array of string as valid input schema path.
164 lines
4.5 KiB
Go
164 lines
4.5 KiB
Go
package generate
|
|
|
|
import (
|
|
"fmt"
|
|
goAst "go/ast"
|
|
goParser "go/parser"
|
|
goToken "go/token"
|
|
"io/ioutil"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/vektah/gqlparser/v2"
|
|
"github.com/vektah/gqlparser/v2/ast"
|
|
"github.com/vektah/gqlparser/v2/parser"
|
|
"github.com/vektah/gqlparser/v2/validator"
|
|
)
|
|
|
|
func getSchema(filePatterns StringList) (*ast.Schema, error) {
|
|
sources, err := loadSchemaSources(filePatterns)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
schema, graphqlError := gqlparser.LoadSchema(sources...)
|
|
if graphqlError != nil {
|
|
filename, _ := graphqlError.Extensions["file"].(string)
|
|
return nil, errorf(nil, "invalid schema file %v: %v", filename, graphqlError)
|
|
}
|
|
return schema, nil
|
|
}
|
|
|
|
func getAndValidateQueries(basedir string, filenames []string, schema *ast.Schema) (*ast.QueryDocument, error) {
|
|
queryDoc, err := getQueries(basedir, filenames)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
// Cf. gqlparser.LoadQuery
|
|
graphqlErrors := validator.Validate(schema, queryDoc)
|
|
if graphqlErrors != nil {
|
|
return nil, errorf(nil, "query-spec does not match schema: %v", graphqlErrors)
|
|
}
|
|
|
|
return queryDoc, nil
|
|
}
|
|
|
|
func getQueries(basedir string, filenames []string) (*ast.QueryDocument, error) {
|
|
// We merge all the queries into a single query-document, since operations
|
|
// in one might reference fragments in another.
|
|
//
|
|
// TODO(benkraft): It might be better to merge just within a filename, so
|
|
// that fragment-names don't need to be unique across files. (Although
|
|
// then we may have other problems; and query-names still need to be.)
|
|
mergedQueryDoc := new(ast.QueryDocument)
|
|
addQueryDoc := func(queryDoc *ast.QueryDocument) {
|
|
mergedQueryDoc.Operations = append(mergedQueryDoc.Operations, queryDoc.Operations...)
|
|
mergedQueryDoc.Fragments = append(mergedQueryDoc.Fragments, queryDoc.Fragments...)
|
|
}
|
|
|
|
expandedFilenames := make([]string, 0, len(filenames))
|
|
for _, filename := range filenames {
|
|
matches, err := filepath.Glob(filename)
|
|
if err != nil {
|
|
return nil, errorf(nil, "can't expand file-glob %v: %v", filename, err)
|
|
}
|
|
expandedFilenames = append(expandedFilenames, matches...)
|
|
}
|
|
|
|
for _, filename := range expandedFilenames {
|
|
text, err := ioutil.ReadFile(filename)
|
|
if err != nil {
|
|
return nil, errorf(nil, "unreadable query-spec file %v: %v", filename, err)
|
|
}
|
|
|
|
switch filepath.Ext(filename) {
|
|
case ".graphql":
|
|
queryDoc, err := getQueriesFromString(string(text), basedir, filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
addQueryDoc(queryDoc)
|
|
|
|
case ".go":
|
|
queryDocs, err := getQueriesFromGo(string(text), basedir, filename)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for _, queryDoc := range queryDocs {
|
|
addQueryDoc(queryDoc)
|
|
}
|
|
|
|
default:
|
|
return nil, errorf(nil, "unknown file type: %v", filename)
|
|
}
|
|
}
|
|
|
|
return mergedQueryDoc, nil
|
|
}
|
|
|
|
func getQueriesFromString(text string, basedir, filename string) (*ast.QueryDocument, error) {
|
|
// make path relative to the config-directory
|
|
relname, err := filepath.Rel(basedir, filename)
|
|
if err == nil {
|
|
filename = relname
|
|
}
|
|
|
|
// Cf. gqlparser.LoadQuery
|
|
document, graphqlError := parser.ParseQuery(
|
|
&ast.Source{Name: filename, Input: text})
|
|
if graphqlError != nil { // ParseQuery returns type *graphql.Error, yuck
|
|
return nil, errorf(nil, "invalid query-spec file %v: %v", filename, graphqlError)
|
|
}
|
|
|
|
return document, nil
|
|
}
|
|
|
|
func getQueriesFromGo(text string, basedir, filename string) ([]*ast.QueryDocument, error) {
|
|
fset := goToken.NewFileSet()
|
|
f, err := goParser.ParseFile(fset, filename, text, 0)
|
|
if err != nil {
|
|
return nil, errorf(nil, "invalid Go file %v: %v", filename, err)
|
|
}
|
|
|
|
var retval []*ast.QueryDocument
|
|
goAst.Inspect(f, func(node goAst.Node) bool {
|
|
if err != nil {
|
|
return false // don't bother to recurse if something already failed
|
|
}
|
|
|
|
basicLit, ok := node.(*goAst.BasicLit)
|
|
if !ok || basicLit.Kind != goToken.STRING {
|
|
return true // recurse
|
|
}
|
|
|
|
var value string
|
|
value, err = strconv.Unquote(basicLit.Value)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
|
|
if !strings.HasPrefix(strings.TrimSpace(value), "# @genqlient") {
|
|
return true
|
|
}
|
|
|
|
// We put the filename as <real filename>:<line>, which errors.go knows
|
|
// how to parse back out (since it's what gqlparser will give to us in
|
|
// our errors).
|
|
pos := fset.Position(basicLit.Pos())
|
|
fakeFilename := fmt.Sprintf("%v:%v", pos.Filename, pos.Line)
|
|
var query *ast.QueryDocument
|
|
query, err = getQueriesFromString(value, basedir, fakeFilename)
|
|
if err != nil {
|
|
return false
|
|
}
|
|
retval = append(retval, query)
|
|
|
|
return true
|
|
})
|
|
|
|
return retval, err
|
|
}
|