mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Upgrade gqlgen to v0.17.2 This enables builds on Go 1.18. github.com/vektah/gqlparser is upgraded to the newest version too. Getting this to work is a bit of a hazzle. I had to first remove vendoring from the repository, perform the upgrade and then re-introduce the vendor directory. I think gqlgens analysis went wrong for some reason on the upgrade. It would seem a clean-room installation fixed it. * Bump project to 1.18 * Update all packages, address gqlgenc breaking changes * Let `go mod tidy` handle the go.mod file * Upgrade linter to 1.45.2 * Introduce v1.45.2 of the linter The linter now correctly warns on `strings.Title` because it isn't unicode-aware. Fix this by using the suggested fix from x/text/cases to produce unicode-aware strings. The mapping isn't entirely 1-1 as this new approach has a larger iface: it spans all of unicode rather than just ASCII. It coincides for ASCII however, so things should be largely the same. * Ready ourselves for errchkjson and contextcheck. * Revert dockerfile golang version changes for now Co-authored-by: Kermie <kermie@isinthe.house> Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
87 lines
2.1 KiB
Go
87 lines
2.1 KiB
Go
package codegen
|
|
|
|
import (
|
|
"fmt"
|
|
"go/types"
|
|
|
|
"github.com/vektah/gqlparser/v2/ast"
|
|
|
|
"github.com/99designs/gqlgen/codegen/config"
|
|
)
|
|
|
|
type Interface struct {
|
|
*ast.Definition
|
|
Type types.Type
|
|
Implementors []InterfaceImplementor
|
|
InTypemap bool
|
|
}
|
|
|
|
type InterfaceImplementor struct {
|
|
*ast.Definition
|
|
|
|
Type types.Type
|
|
TakeRef bool
|
|
}
|
|
|
|
func (b *builder) buildInterface(typ *ast.Definition) (*Interface, error) {
|
|
obj, err := b.Binder.DefaultUserObject(typ.Name)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
i := &Interface{
|
|
Definition: typ,
|
|
Type: obj,
|
|
InTypemap: b.Config.Models.UserDefined(typ.Name),
|
|
}
|
|
|
|
interfaceType, err := findGoInterface(i.Type)
|
|
if interfaceType == nil || err != nil {
|
|
return nil, fmt.Errorf("%s is not an interface", i.Type)
|
|
}
|
|
|
|
for _, implementor := range b.Schema.GetPossibleTypes(typ) {
|
|
obj, err := b.Binder.DefaultUserObject(implementor.Name)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("%s has no backing go type", implementor.Name)
|
|
}
|
|
|
|
implementorType, err := findGoNamedType(obj)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("can not find backing go type %s: %w", obj.String(), err)
|
|
} else if implementorType == nil {
|
|
return nil, fmt.Errorf("can not find backing go type %s", obj.String())
|
|
}
|
|
|
|
anyValid := false
|
|
|
|
// first check if the value receiver can be nil, eg can we type switch on case Thing:
|
|
if types.Implements(implementorType, interfaceType) {
|
|
i.Implementors = append(i.Implementors, InterfaceImplementor{
|
|
Definition: implementor,
|
|
Type: obj,
|
|
TakeRef: !types.IsInterface(obj),
|
|
})
|
|
anyValid = true
|
|
}
|
|
|
|
// then check if the pointer receiver can be nil, eg can we type switch on case *Thing:
|
|
if types.Implements(types.NewPointer(implementorType), interfaceType) {
|
|
i.Implementors = append(i.Implementors, InterfaceImplementor{
|
|
Definition: implementor,
|
|
Type: types.NewPointer(obj),
|
|
})
|
|
anyValid = true
|
|
}
|
|
|
|
if !anyValid {
|
|
return nil, fmt.Errorf("%s does not satisfy the interface %s", implementorType.String(), i.Type.String())
|
|
}
|
|
}
|
|
|
|
return i, nil
|
|
}
|
|
|
|
func (i *InterfaceImplementor) CanBeNil() bool {
|
|
return config.IsNilable(i.Type)
|
|
}
|