mirror of
https://github.com/beego/bee.git
synced 2024-11-22 10:10:53 +00:00
Merge pull request #286 from sergeylanzman/swagger-support-multi-package
Swaager - add support multi package with golang way myPackage.struct
This commit is contained in:
commit
244e9ccdc9
131
g_docs.go
131
g_docs.go
@ -33,6 +33,8 @@ import (
|
|||||||
|
|
||||||
"gopkg.in/yaml.v2"
|
"gopkg.in/yaml.v2"
|
||||||
|
|
||||||
|
"io/ioutil"
|
||||||
|
|
||||||
"github.com/astaxie/beego/swagger"
|
"github.com/astaxie/beego/swagger"
|
||||||
"github.com/astaxie/beego/utils"
|
"github.com/astaxie/beego/utils"
|
||||||
)
|
)
|
||||||
@ -50,6 +52,30 @@ var importlist map[string]string
|
|||||||
var controllerList map[string]map[string]*swagger.Item //controllername Paths items
|
var controllerList map[string]map[string]*swagger.Item //controllername Paths items
|
||||||
var modelsList map[string]map[string]swagger.Schema
|
var modelsList map[string]map[string]swagger.Schema
|
||||||
var rootapi swagger.Swagger
|
var rootapi swagger.Swagger
|
||||||
|
var astPkgs map[string]*ast.Package
|
||||||
|
|
||||||
|
// refer to builtin.go
|
||||||
|
var basicTypes = map[string]string{
|
||||||
|
"bool": "boolean:",
|
||||||
|
"uint": "integer:int32",
|
||||||
|
"uint8": "integer:int32",
|
||||||
|
"uint16": "integer:int32",
|
||||||
|
"uint32": "integer:int32",
|
||||||
|
"uint64": "integer:int64",
|
||||||
|
"int": "integer:int64",
|
||||||
|
"int8": "integer:int32",
|
||||||
|
"int16:int32": "integer:int32",
|
||||||
|
"int32": "integer:int32",
|
||||||
|
"int64": "integer:int64",
|
||||||
|
"uintptr": "integer:int64",
|
||||||
|
"float32": "number:float",
|
||||||
|
"float64": "number:double",
|
||||||
|
"string": "string:",
|
||||||
|
"complex64": "number:float",
|
||||||
|
"complex128": "number:double",
|
||||||
|
"byte": "string:byte",
|
||||||
|
"rune": "string:byte",
|
||||||
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
pkgCache = make(map[string]struct{})
|
pkgCache = make(map[string]struct{})
|
||||||
@ -57,6 +83,39 @@ func init() {
|
|||||||
importlist = make(map[string]string)
|
importlist = make(map[string]string)
|
||||||
controllerList = make(map[string]map[string]*swagger.Item)
|
controllerList = make(map[string]map[string]*swagger.Item)
|
||||||
modelsList = make(map[string]map[string]swagger.Schema)
|
modelsList = make(map[string]map[string]swagger.Schema)
|
||||||
|
curPath, _ := os.Getwd()
|
||||||
|
astPkgs = map[string]*ast.Package{}
|
||||||
|
parsePackagesFromDir(curPath)
|
||||||
|
}
|
||||||
|
|
||||||
|
func parsePackagesFromDir(path string) {
|
||||||
|
parsePackageFromDir(path)
|
||||||
|
list, err := ioutil.ReadDir(path)
|
||||||
|
if err != nil {
|
||||||
|
ColorLog("[ERRO] Can't read directory %s : %s\n", path, err)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
for _, item := range list {
|
||||||
|
if item.IsDir() && item.Name() != "vendor" {
|
||||||
|
parsePackagesFromDir(path + "/" + item.Name())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
func parsePackageFromDir(path string) {
|
||||||
|
fileSet := token.NewFileSet()
|
||||||
|
folderPkgs, err := parser.ParseDir(fileSet, path, func(info os.FileInfo) bool {
|
||||||
|
name := info.Name()
|
||||||
|
return !info.IsDir() && !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go")
|
||||||
|
}, parser.ParseComments)
|
||||||
|
|
||||||
|
if err != nil {
|
||||||
|
ColorLog("[ERRO] the model %s parser.ParseDir error\n", path)
|
||||||
|
os.Exit(1)
|
||||||
|
}
|
||||||
|
for k, v := range folderPkgs {
|
||||||
|
astPkgs[k] = v
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func generateDocs(curpath string) {
|
func generateDocs(curpath string) {
|
||||||
@ -414,13 +473,13 @@ func parserComments(comments *ast.CommentGroup, funcName, controllerName, pkgpat
|
|||||||
schema.Type = typeFormat[0]
|
schema.Type = typeFormat[0]
|
||||||
schema.Format = typeFormat[1]
|
schema.Format = typeFormat[1]
|
||||||
} else {
|
} else {
|
||||||
cmpath, m, mod, realTypes := getModel(schemaName)
|
m, mod, realTypes := getModel(schemaName)
|
||||||
schema.Ref = "#/definitions/" + m
|
schema.Ref = "#/definitions/" + m
|
||||||
if _, ok := modelsList[pkgpath+controllerName]; !ok {
|
if _, ok := modelsList[pkgpath+controllerName]; !ok {
|
||||||
modelsList[pkgpath+controllerName] = make(map[string]swagger.Schema, 0)
|
modelsList[pkgpath+controllerName] = make(map[string]swagger.Schema, 0)
|
||||||
}
|
}
|
||||||
modelsList[pkgpath+controllerName][schemaName] = mod
|
modelsList[pkgpath+controllerName][schemaName] = mod
|
||||||
appendModels(cmpath, pkgpath, controllerName, realTypes)
|
appendModels(pkgpath, controllerName, realTypes)
|
||||||
}
|
}
|
||||||
if isArray {
|
if isArray {
|
||||||
rs.Schema = &swagger.Schema{
|
rs.Schema = &swagger.Schema{
|
||||||
@ -460,7 +519,7 @@ func parserComments(comments *ast.CommentGroup, funcName, controllerName, pkgpat
|
|||||||
pp := strings.Split(p[2], ".")
|
pp := strings.Split(p[2], ".")
|
||||||
typ := pp[len(pp)-1]
|
typ := pp[len(pp)-1]
|
||||||
if len(pp) >= 2 {
|
if len(pp) >= 2 {
|
||||||
cmpath, m, mod, realTypes := getModel(p[2])
|
m, mod, realTypes := getModel(p[2])
|
||||||
para.Schema = &swagger.Schema{
|
para.Schema = &swagger.Schema{
|
||||||
Ref: "#/definitions/" + m,
|
Ref: "#/definitions/" + m,
|
||||||
}
|
}
|
||||||
@ -468,7 +527,7 @@ func parserComments(comments *ast.CommentGroup, funcName, controllerName, pkgpat
|
|||||||
modelsList[pkgpath+controllerName] = make(map[string]swagger.Schema, 0)
|
modelsList[pkgpath+controllerName] = make(map[string]swagger.Schema, 0)
|
||||||
}
|
}
|
||||||
modelsList[pkgpath+controllerName][typ] = mod
|
modelsList[pkgpath+controllerName][typ] = mod
|
||||||
appendModels(cmpath, pkgpath, controllerName, realTypes)
|
appendModels(pkgpath, controllerName, realTypes)
|
||||||
} else {
|
} else {
|
||||||
isArray := false
|
isArray := false
|
||||||
paraType := ""
|
paraType := ""
|
||||||
@ -610,22 +669,10 @@ func getparams(str string) []string {
|
|||||||
return r
|
return r
|
||||||
}
|
}
|
||||||
|
|
||||||
func getModel(str string) (pkgpath, objectname string, m swagger.Schema, realTypes []string) {
|
func getModel(str string) (objectname string, m swagger.Schema, realTypes []string) {
|
||||||
strs := strings.Split(str, ".")
|
strs := strings.Split(str, ".")
|
||||||
objectname = strs[len(strs)-1]
|
objectname = strs[len(strs)-1]
|
||||||
pkgpath = strings.Join(strs[:len(strs)-1], "/")
|
packageName := ""
|
||||||
curpath, _ := os.Getwd()
|
|
||||||
pkgRealpath := path.Join(curpath, pkgpath)
|
|
||||||
fileSet := token.NewFileSet()
|
|
||||||
astPkgs, err := parser.ParseDir(fileSet, pkgRealpath, func(info os.FileInfo) bool {
|
|
||||||
name := info.Name()
|
|
||||||
return !info.IsDir() && !strings.HasPrefix(name, ".") && strings.HasSuffix(name, ".go")
|
|
||||||
}, parser.ParseComments)
|
|
||||||
|
|
||||||
if err != nil {
|
|
||||||
ColorLog("[ERRO] the model %s parser.ParseDir error\n", str)
|
|
||||||
os.Exit(1)
|
|
||||||
}
|
|
||||||
m.Type = "object"
|
m.Type = "object"
|
||||||
for _, pkg := range astPkgs {
|
for _, pkg := range astPkgs {
|
||||||
for _, fl := range pkg.Files {
|
for _, fl := range pkg.Files {
|
||||||
@ -634,7 +681,8 @@ func getModel(str string) (pkgpath, objectname string, m swagger.Schema, realTyp
|
|||||||
if k != objectname {
|
if k != objectname {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
parseObject(d, k, &m, &realTypes, astPkgs)
|
packageName = pkg.Name
|
||||||
|
parseObject(d, k, &m, &realTypes, astPkgs, pkg.Name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -647,11 +695,12 @@ func getModel(str string) (pkgpath, objectname string, m swagger.Schema, realTyp
|
|||||||
if len(rootapi.Definitions) == 0 {
|
if len(rootapi.Definitions) == 0 {
|
||||||
rootapi.Definitions = make(map[string]swagger.Schema)
|
rootapi.Definitions = make(map[string]swagger.Schema)
|
||||||
}
|
}
|
||||||
|
objectname = packageName + "." + objectname
|
||||||
rootapi.Definitions[objectname] = m
|
rootapi.Definitions[objectname] = m
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func parseObject(d *ast.Object, k string, m *swagger.Schema, realTypes *[]string, astPkgs map[string]*ast.Package) {
|
func parseObject(d *ast.Object, k string, m *swagger.Schema, realTypes *[]string, astPkgs map[string]*ast.Package, packageName string) {
|
||||||
ts, ok := d.Decl.(*ast.TypeSpec)
|
ts, ok := d.Decl.(*ast.TypeSpec)
|
||||||
if !ok {
|
if !ok {
|
||||||
ColorLog("Unknown type without TypeSec: %v\n", d)
|
ColorLog("Unknown type without TypeSec: %v\n", d)
|
||||||
@ -666,7 +715,18 @@ func parseObject(d *ast.Object, k string, m *swagger.Schema, realTypes *[]string
|
|||||||
if st.Fields.List != nil {
|
if st.Fields.List != nil {
|
||||||
m.Properties = make(map[string]swagger.Propertie)
|
m.Properties = make(map[string]swagger.Propertie)
|
||||||
for _, field := range st.Fields.List {
|
for _, field := range st.Fields.List {
|
||||||
|
realType := ""
|
||||||
isSlice, realType, sType := typeAnalyser(field)
|
isSlice, realType, sType := typeAnalyser(field)
|
||||||
|
if (isSlice && isBasicType(realType)) || sType == "object" {
|
||||||
|
if len(strings.Split(realType, " ")) > 1 {
|
||||||
|
realType = strings.Replace(realType, " ", ".", -1)
|
||||||
|
realType = strings.Replace(realType, "&", "", -1)
|
||||||
|
realType = strings.Replace(realType, "{", "", -1)
|
||||||
|
realType = strings.Replace(realType, "}", "", -1)
|
||||||
|
} else {
|
||||||
|
realType = packageName + "." + realType
|
||||||
|
}
|
||||||
|
}
|
||||||
*realTypes = append(*realTypes, realType)
|
*realTypes = append(*realTypes, realType)
|
||||||
mp := swagger.Propertie{}
|
mp := swagger.Propertie{}
|
||||||
if isSlice {
|
if isSlice {
|
||||||
@ -747,7 +807,7 @@ func parseObject(d *ast.Object, k string, m *swagger.Schema, realTypes *[]string
|
|||||||
for _, fl := range pkg.Files {
|
for _, fl := range pkg.Files {
|
||||||
for nameOfObj, obj := range fl.Scope.Objects {
|
for nameOfObj, obj := range fl.Scope.Objects {
|
||||||
if obj.Name == fmt.Sprint(field.Type) {
|
if obj.Name == fmt.Sprint(field.Type) {
|
||||||
parseObject(obj, nameOfObj, m, realTypes, astPkgs)
|
parseObject(obj, nameOfObj, m, realTypes, astPkgs, pkg.Name)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -793,18 +853,6 @@ func isBasicType(Type string) bool {
|
|||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
|
||||||
// refer to builtin.go
|
|
||||||
var basicTypes = map[string]string{
|
|
||||||
"bool": "boolean:",
|
|
||||||
"uint": "integer:int32", "uint8": "integer:int32", "uint16": "integer:int32", "uint32": "integer:int32", "uint64": "integer:int64",
|
|
||||||
"int": "integer:int64", "int8": "integer:int32", "int16:int32": "integer:int32", "int32": "integer:int32", "int64": "integer:int64",
|
|
||||||
"uintptr": "integer:int64",
|
|
||||||
"float32": "number:float", "float64": "number:double",
|
|
||||||
"string": "string:",
|
|
||||||
"complex64": "number:float", "complex128": "number:double",
|
|
||||||
"byte": "string:byte", "rune": "string:byte",
|
|
||||||
}
|
|
||||||
|
|
||||||
// regexp get json tag
|
// regexp get json tag
|
||||||
func grepJSONTag(tag string) string {
|
func grepJSONTag(tag string) string {
|
||||||
r, _ := regexp.Compile(`json:"([^"]*)"`)
|
r, _ := regexp.Compile(`json:"([^"]*)"`)
|
||||||
@ -816,23 +864,16 @@ func grepJSONTag(tag string) string {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// append models
|
// append models
|
||||||
func appendModels(cmpath, pkgpath, controllerName string, realTypes []string) {
|
func appendModels(pkgpath, controllerName string, realTypes []string) {
|
||||||
var p string
|
|
||||||
if cmpath != "" {
|
|
||||||
p = strings.Join(strings.Split(cmpath, "/"), ".") + "."
|
|
||||||
} else {
|
|
||||||
p = ""
|
|
||||||
}
|
|
||||||
for _, realType := range realTypes {
|
for _, realType := range realTypes {
|
||||||
if realType != "" && !isBasicType(strings.TrimLeft(realType, "[]")) &&
|
if realType != "" && !isBasicType(strings.TrimLeft(realType, "[]")) &&
|
||||||
!strings.HasPrefix(realType, "map") && !strings.HasPrefix(realType, "&") {
|
!strings.HasPrefix(realType, "map") && !strings.HasPrefix(realType, "&") {
|
||||||
if _, ok := modelsList[pkgpath+controllerName][p+realType]; ok {
|
if _, ok := modelsList[pkgpath+controllerName][realType]; ok {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
//fmt.Printf(pkgpath + ":" + controllerName + ":" + cmpath + ":" + realType + "\n")
|
_, mod, newRealTypes := getModel(realType)
|
||||||
_, _, mod, newRealTypes := getModel(p + realType)
|
modelsList[pkgpath+controllerName][realType] = mod
|
||||||
modelsList[pkgpath+controllerName][p+realType] = mod
|
appendModels(pkgpath, controllerName, newRealTypes)
|
||||||
appendModels(cmpath, pkgpath, controllerName, newRealTypes)
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user