You've already forked golang-base-project
198 lines
4.2 KiB
Go
198 lines
4.2 KiB
Go
package swag
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"go/ast"
|
|
"strings"
|
|
|
|
"github.com/go-openapi/spec"
|
|
)
|
|
|
|
const (
|
|
// ARRAY array.
|
|
ARRAY = "array"
|
|
// OBJECT object.
|
|
OBJECT = "object"
|
|
// PRIMITIVE primitive.
|
|
PRIMITIVE = "primitive"
|
|
// BOOLEAN boolean.
|
|
BOOLEAN = "boolean"
|
|
// INTEGER integer.
|
|
INTEGER = "integer"
|
|
// NUMBER number.
|
|
NUMBER = "number"
|
|
// STRING string.
|
|
STRING = "string"
|
|
// FUNC func.
|
|
FUNC = "func"
|
|
// ANY any
|
|
ANY = "any"
|
|
// NIL nil
|
|
NIL = "nil"
|
|
)
|
|
|
|
// CheckSchemaType checks if typeName is not a name of primitive type.
|
|
func CheckSchemaType(typeName string) error {
|
|
if !IsPrimitiveType(typeName) {
|
|
return fmt.Errorf("%s is not basic types", typeName)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// IsSimplePrimitiveType determine whether the type name is a simple primitive type.
|
|
func IsSimplePrimitiveType(typeName string) bool {
|
|
switch typeName {
|
|
case STRING, NUMBER, INTEGER, BOOLEAN:
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// IsPrimitiveType determine whether the type name is a primitive type.
|
|
func IsPrimitiveType(typeName string) bool {
|
|
switch typeName {
|
|
case STRING, NUMBER, INTEGER, BOOLEAN, ARRAY, OBJECT, FUNC:
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// IsNumericType determines whether the swagger type name is a numeric type.
|
|
func IsNumericType(typeName string) bool {
|
|
return typeName == INTEGER || typeName == NUMBER
|
|
}
|
|
|
|
// TransToValidSchemeType indicates type will transfer golang basic type to swagger supported type.
|
|
func TransToValidSchemeType(typeName string) string {
|
|
switch typeName {
|
|
case "uint", "int", "uint8", "int8", "uint16", "int16", "byte":
|
|
return INTEGER
|
|
case "uint32", "int32", "rune":
|
|
return INTEGER
|
|
case "uint64", "int64":
|
|
return INTEGER
|
|
case "float32", "float64":
|
|
return NUMBER
|
|
case "bool":
|
|
return BOOLEAN
|
|
case "string":
|
|
return STRING
|
|
}
|
|
|
|
return typeName
|
|
}
|
|
|
|
// IsGolangPrimitiveType determine whether the type name is a golang primitive type.
|
|
func IsGolangPrimitiveType(typeName string) bool {
|
|
switch typeName {
|
|
case "uint",
|
|
"int",
|
|
"uint8",
|
|
"int8",
|
|
"uint16",
|
|
"int16",
|
|
"byte",
|
|
"uint32",
|
|
"int32",
|
|
"rune",
|
|
"uint64",
|
|
"int64",
|
|
"float32",
|
|
"float64",
|
|
"bool",
|
|
"string":
|
|
return true
|
|
}
|
|
|
|
return false
|
|
}
|
|
|
|
// TransToValidCollectionFormat determine valid collection format.
|
|
func TransToValidCollectionFormat(format string) string {
|
|
switch format {
|
|
case "csv", "multi", "pipes", "tsv", "ssv":
|
|
return format
|
|
}
|
|
|
|
return ""
|
|
}
|
|
|
|
// TypeDocName get alias from comment '// @name ', otherwise the original type name to display in doc.
|
|
func TypeDocName(pkgName string, spec *ast.TypeSpec) string {
|
|
if spec != nil {
|
|
if spec.Comment != nil {
|
|
for _, comment := range spec.Comment.List {
|
|
text := strings.TrimSpace(comment.Text)
|
|
text = strings.TrimLeft(text, "//")
|
|
text = strings.TrimSpace(text)
|
|
texts := strings.Split(text, " ")
|
|
if len(texts) > 1 && strings.ToLower(texts[0]) == "@name" {
|
|
return texts[1]
|
|
}
|
|
}
|
|
}
|
|
if spec.Name != nil {
|
|
return fullTypeName(strings.Split(pkgName, ".")[0], spec.Name.Name)
|
|
}
|
|
}
|
|
|
|
return pkgName
|
|
}
|
|
|
|
// RefSchema build a reference schema.
|
|
func RefSchema(refType string) *spec.Schema {
|
|
return spec.RefSchema("#/definitions/" + refType)
|
|
}
|
|
|
|
// PrimitiveSchema build a primitive schema.
|
|
func PrimitiveSchema(refType string) *spec.Schema {
|
|
return &spec.Schema{SchemaProps: spec.SchemaProps{Type: []string{refType}}}
|
|
}
|
|
|
|
// BuildCustomSchema build custom schema specified by tag swaggertype.
|
|
func BuildCustomSchema(types []string) (*spec.Schema, error) {
|
|
if len(types) == 0 {
|
|
return nil, nil
|
|
}
|
|
|
|
switch types[0] {
|
|
case PRIMITIVE:
|
|
if len(types) == 1 {
|
|
return nil, errors.New("need primitive type after primitive")
|
|
}
|
|
|
|
return BuildCustomSchema(types[1:])
|
|
case ARRAY:
|
|
if len(types) == 1 {
|
|
return nil, errors.New("need array item type after array")
|
|
}
|
|
schema, err := BuildCustomSchema(types[1:])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return spec.ArrayProperty(schema), nil
|
|
case OBJECT:
|
|
if len(types) == 1 {
|
|
return PrimitiveSchema(types[0]), nil
|
|
}
|
|
schema, err := BuildCustomSchema(types[1:])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return spec.MapProperty(schema), nil
|
|
default:
|
|
err := CheckSchemaType(types[0])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return PrimitiveSchema(types[0]), nil
|
|
}
|
|
}
|