1 Star 0 Fork 0

谈子文 / keyauth-tz

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
http.go 2.21 KB
一键复制 编辑 原始数据 按行查看 历史
谈子文 提交于 2023-10-25 15:11 . 优化
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/token"
)
var (
h = &handler{}
)
type handler struct {
service token.ServiceServer
log logger.Logger
}
func (h *handler) Config() error {
h.log = zap.L().Named(token.AppName)
h.service = app.GetGrpcApp(token.AppName).(token.ServiceServer)
return nil
}
func (h *handler) Name() string {
return token.AppName
}
func (h *handler) Version() string {
return "v1"
}
func (h *handler) Registry(ws *restful.WebService) {
tags := []string{"tokens"}
ws.Route(ws.POST("/issue").To(h.IssueToken).
Doc("issue a token").
Metadata(restfulspec.KeyOpenAPITags, tags).
Reads(token.IssueTokenRequest{}).
Writes(response.NewData(token.Token{})))
ws.Route(ws.GET("/").To(h.QueryToken).
Doc("get all tokens").
Metadata(restfulspec.KeyOpenAPITags, tags).
Metadata("action", "list").
Reads(token.IssueTokenRequest{}).
Writes(response.NewData(token.TokenSet{})).
Returns(200, "OK", token.TokenSet{}))
ws.Route(ws.GET("/validate").To(h.ValidateToken).
Doc("validate tokens").
Metadata(restfulspec.KeyOpenAPITags, tags).
Metadata("action", "get").
Reads(token.ValidateTokenRequest{}).
Writes(response.NewData(token.Token{})).
Returns(200, "OK", token.Token{}))
ws.Route(ws.POST("/revolk").To(h.RevolkToken).
Doc("revolk token").
Param(ws.PathParameter("id", "identifier of the token").DataType("integer").DefaultValue("1")).
Metadata(restfulspec.KeyOpenAPITags, tags).
Metadata("action", "delete"))
//ws.Route(ws.PUT("/{id}").To(h.UpdateToken).
// Doc("update a token").
// Param(ws.PathParameter("id", "identifier of the token").DataType("string")).
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Reads(token.IssueTokenRequest{}))
//
//ws.Route(ws.DELETE("/{id}").To(h.RevolkToken).
// Doc("delete a token").
// Metadata(restfulspec.KeyOpenAPITags, tags).
// Param(ws.PathParameter("id", "identifier of the token").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

搜索帮助

344bd9b3 5694891 D2dac590 5694891