goctl added
This commit is contained in:
131
tools/goctl/api/spec/spec.go
Normal file
131
tools/goctl/api/spec/spec.go
Normal file
@@ -0,0 +1,131 @@
|
||||
package spec
|
||||
|
||||
type (
|
||||
Annotation struct {
|
||||
Name string
|
||||
Properties map[string]string
|
||||
}
|
||||
|
||||
ApiSpec struct {
|
||||
Info Info
|
||||
Types []Type
|
||||
Service Service
|
||||
}
|
||||
|
||||
Group struct {
|
||||
Annotations []Annotation
|
||||
Routes []Route
|
||||
}
|
||||
|
||||
Info struct {
|
||||
Title string
|
||||
Desc string
|
||||
Version string
|
||||
Author string
|
||||
Email string
|
||||
}
|
||||
|
||||
Member struct {
|
||||
Annotations []Annotation
|
||||
Name string
|
||||
// 数据类型字面值,如:string、map[int]string、[]int64、[]*User
|
||||
Type string
|
||||
// it can be asserted as BasicType: int、bool、
|
||||
// PointerType: *string、*User、
|
||||
// MapType: map[${BasicType}]interface、
|
||||
// ArrayType:[]int、[]User、[]*User
|
||||
// InterfaceType: interface{}
|
||||
// Type
|
||||
Expr interface{}
|
||||
Tag string
|
||||
// Deprecated
|
||||
Comment string // 换成标准struct中将废弃
|
||||
// 成员尾部注释说明
|
||||
Comments []string
|
||||
// 成员头顶注释说明
|
||||
Docs []string
|
||||
IsInline bool
|
||||
}
|
||||
|
||||
Route struct {
|
||||
Annotations []Annotation
|
||||
Method string
|
||||
Path string
|
||||
RequestType Type
|
||||
ResponseType Type
|
||||
}
|
||||
|
||||
Service struct {
|
||||
Name string
|
||||
Annotations []Annotation
|
||||
Routes []Route
|
||||
Groups []Group
|
||||
}
|
||||
|
||||
Type struct {
|
||||
Name string
|
||||
Annotations []Annotation
|
||||
Members []Member
|
||||
}
|
||||
|
||||
// 系统预设基本数据类型
|
||||
BasicType struct {
|
||||
StringExpr string
|
||||
Name string
|
||||
}
|
||||
PointerType struct {
|
||||
StringExpr string
|
||||
// it can be asserted as BasicType: int、bool、
|
||||
// PointerType: *string、*User、
|
||||
// MapType: map[${BasicType}]interface、
|
||||
// ArrayType:[]int、[]User、[]*User
|
||||
// InterfaceType: interface{}
|
||||
// Type
|
||||
Star interface{}
|
||||
}
|
||||
|
||||
MapType struct {
|
||||
StringExpr string
|
||||
// only support the BasicType
|
||||
Key string
|
||||
// it can be asserted as BasicType: int、bool、
|
||||
// PointerType: *string、*User、
|
||||
// MapType: map[${BasicType}]interface、
|
||||
// ArrayType:[]int、[]User、[]*User
|
||||
// InterfaceType: interface{}
|
||||
// Type
|
||||
Value interface{}
|
||||
}
|
||||
ArrayType struct {
|
||||
StringExpr string
|
||||
// it can be asserted as BasicType: int、bool、
|
||||
// PointerType: *string、*User、
|
||||
// MapType: map[${BasicType}]interface、
|
||||
// ArrayType:[]int、[]User、[]*User
|
||||
// InterfaceType: interface{}
|
||||
// Type
|
||||
ArrayType interface{}
|
||||
}
|
||||
InterfaceType struct {
|
||||
StringExpr string
|
||||
// do nothing,just for assert
|
||||
}
|
||||
TimeType struct {
|
||||
StringExpr string
|
||||
}
|
||||
StructType struct {
|
||||
StringExpr string
|
||||
}
|
||||
)
|
||||
|
||||
func (spec *ApiSpec) ContainsTime() bool {
|
||||
for _, item := range spec.Types {
|
||||
members := item.Members
|
||||
for _, member := range members {
|
||||
if _, ok := member.Expr.(*TimeType); ok {
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
return false
|
||||
}
|
||||
Reference in New Issue
Block a user