【更新】更新restful

This commit is contained in:
PandaGoAdmin
2022-08-03 16:00:32 +08:00
parent 2cb23c0ecf
commit 6945277fdb
48 changed files with 1234 additions and 836 deletions

View File

@@ -1,43 +1,78 @@
package router
import (
"github.com/XM-GO/PandaKit/casbin"
"github.com/XM-GO/PandaKit/restfulx"
"github.com/gin-gonic/gin"
restfulspec "github.com/emicklei/go-restful-openapi/v2"
"github.com/emicklei/go-restful/v3"
"pandax/apps/system/api"
"pandax/apps/system/entity"
"pandax/apps/system/services"
)
func InitApiRouter(router *gin.RouterGroup) {
func InitApiRouter(container *restful.Container) {
s := &api.SystemApiApi{
ApiApp: services.SysApiModelDao,
}
api := router.Group("api")
api.GET("list", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("获取api分页列表").Handle(s.GetApiList)
})
ws := new(restful.WebService)
ws.Path("/system/api").Produces(restful.MIME_JSON)
tags := []string{"api"}
api.GET("all", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("获取所有api").Handle(s.GetAllApis)
})
ws.Route(ws.GET("/list").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取api分页列表").Handle(s.GetApiList)
}).
Doc("获取api分页列表").
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes([]entity.SysApi{}).
Returns(200, "OK", []entity.SysApi{}))
api.GET("getPolicyPathByRoleId", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("获取角色拥有的api权限").Handle(s.GetPolicyPathByRoleId)
})
ws.Route(ws.GET("/all").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取所有api").Handle(s.GetAllApis)
}).
Doc("获取所有api").
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes([]entity.SysApi{}).
Returns(200, "OK", []entity.SysApi{}))
api.GET(":id", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("获取api信息").Handle(s.GetApiById)
})
ws.Route(ws.GET("/getPolicyPathByRoleId").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取角色拥有的api权限").Handle(s.GetPolicyPathByRoleId)
}).
Doc("获取角色拥有的api权限").
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes([]casbin.CasbinRule{}).
Returns(200, "OK", []casbin.CasbinRule{}))
api.POST("", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("添加api信息").Handle(s.CreateApi)
})
ws.Route(ws.GET("/{id}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("获取api信息").Handle(s.GetApiById)
}).
Doc("获取api信息").
Param(ws.PathParameter("id", "Id").DataType("int").DefaultValue("1")).
Metadata(restfulspec.KeyOpenAPITags, tags).
Writes(entity.SysApi{}). // on the response
Returns(200, "OK", entity.SysApi{}).
Returns(404, "Not Found", nil))
api.PUT("", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("修改api信息").Handle(s.UpdateApi)
})
ws.Route(ws.POST("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("添加api信息").Handle(s.CreateApi)
}).
Doc("添加api信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysApi{}))
api.DELETE(":id", func(c *gin.Context) {
restfulx.NewReqCtx(c).WithLog("删除api信息").Handle(s.DeleteApi)
})
ws.Route(ws.PUT("").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("修改api信息").Handle(s.UpdateApi)
}).
Doc("修改api信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(entity.SysApi{})) // from the request
ws.Route(ws.DELETE("/{id}").To(func(request *restful.Request, response *restful.Response) {
restfulx.NewReqCtx(request, response).WithLog("删除api信息").Handle(s.DeleteApi)
}).
Doc("删除api信息").
Metadata(restfulspec.KeyOpenAPITags, tags).
Param(ws.PathParameter("id", "id").DataType("int")))
container.Add(ws)
}