1 Star 0 Fork 0

谈子文/keyauth-tz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
http.go 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
谈子文 提交于 2023-10-27 01:41 . 更新policy 和 role api create 功能
package api
import (
restfulspec "github.com/emicklei/go-restful-openapi"
"github.com/emicklei/go-restful/v3"
"github.com/infraboard/mcube/app"
"github.com/infraboard/mcube/http/response"
"github.com/infraboard/mcube/logger"
"github.com/infraboard/mcube/logger/zap"
"gitee.com/talk-about-articles/keyauth-tz/apps/role"
)
var (
h = &handler{}
)
type handler struct {
service role.Service
log logger.Logger
}
func (h *handler) Config() error {
h.log = zap.L().Named(role.AppName)
h.service = app.GetGrpcApp(role.AppName).(role.Service)
return nil
}
func (h *handler) Name() string {
return role.AppName
}
func (h *handler) Version() string {
return "v1"
}
func (h *handler) Registry(ws *restful.WebService) {
tags := []string{"roles"}
ws.Route(ws.POST("").To(h.CreateRole).
Doc("create a role").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(role.CreateRoleRequest{}).
Writes(response.NewData(role.Role{})))
ws.Route(ws.GET("/").To(h.QueryRole).
Doc("get all roles").
Metadata(restfulspec.KeyOpenAPITags, tags).
Metadata("action", "list").
Reads(role.CreateRoleRequest{}).
Writes(response.NewData(role.RoleSet{})).
Returns(200, "OK", role.RoleSet{}))
//ws.Route(ws.GET("/{id}").To(h.DescribeRole).
// Doc("get a role").
// Param(ws.PathParameter("id", "identifier of the role").DataType("integer").DefaultValue("1")).
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Writes(response.NewData(role.Role{})).
// Returns(200, "OK", response.NewData(role.Role{})).
// Returns(404, "Not Found", nil))
//
//ws.Route(ws.PUT("/{id}").To(h.UpdateRole).
// Doc("update a role").
// Param(ws.PathParameter("id", "identifier of the role").DataType("string")).
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Reads(role.CreateRoleRequest{}))
//
//ws.Route(ws.PATCH("/{id}").To(h.PatchRole).
// Doc("patch a role").
// Param(ws.PathParameter("id", "identifier of the role").DataType("string")).
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Reads(role.CreateRoleRequest{}))
//
//ws.Route(ws.DELETE("/{id}").To(h.DeleteRole).
// Doc("delete a role").
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Param(ws.PathParameter("id", "identifier of the role").DataType("string")))
}
func init() {
app.RegistryRESTfulApp(h)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/talk-about-articles/keyauth-tz.git
git@gitee.com:talk-about-articles/keyauth-tz.git
talk-about-articles
keyauth-tz
keyauth-tz
v1.0.25

搜索帮助