2014-06-16 08:05:15 +00:00
|
|
|
package beego
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/astaxie/beego/context"
|
|
|
|
)
|
|
|
|
|
|
|
|
var GlobalDocApi map[string]interface{}
|
|
|
|
|
2014-06-18 03:15:43 +00:00
|
|
|
func init() {
|
|
|
|
if EnableDocs {
|
|
|
|
GlobalDocApi = make(map[string]interface{})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-16 08:05:15 +00:00
|
|
|
func serverDocs(ctx *context.Context) {
|
|
|
|
var obj interface{}
|
|
|
|
if splat := ctx.Input.Param(":splat"); splat == "" {
|
|
|
|
obj = GlobalDocApi["Root"]
|
|
|
|
} else {
|
|
|
|
if v, ok := GlobalDocApi[splat]; ok {
|
|
|
|
obj = v
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if obj != nil {
|
|
|
|
bt, err := json.Marshal(obj)
|
|
|
|
if err != nil {
|
|
|
|
ctx.Output.SetStatus(504)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Output.Header("Content-Type", "application/json;charset=UTF-8")
|
|
|
|
ctx.Output.Header("Access-Control-Allow-Origin", "*")
|
|
|
|
ctx.Output.Body(bt)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx.Output.SetStatus(404)
|
|
|
|
}
|