37 Star 391 Fork 118

联犀/物联网iot模块

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
checkapiwareMiddleware.go 864 Bytes
一键复制 编辑 原始数据 按行查看 历史
杨磊 提交于 2024-10-10 22:13 . feat: 更新mod
package middleware
import (
role "gitee.com/unitedrhino/core/service/syssvr/client/rolemanage"
"net/http"
)
type CheckApiWareMiddleware struct {
AuthRpc role.RoleManage
}
func NewCheckApiWareMiddleware() *CheckApiWareMiddleware {
return &CheckApiWareMiddleware{}
}
func (m *CheckApiWareMiddleware) Handle(next http.HandlerFunc) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
//userCtx := ctxs.GetUserCtx(r.Context())
////校验 Casbin Rule
//_, err := m.AuthRpc.RoleApiAuth(r.Context(), &user.RoleApiAuthReq{
// RoleID: userCtx.RoleID,
// Path: r.URL.Path,
// Method: r.Method,
//})
//if err != nil {
// logx.WithContext(r.Context()).Errorf("%s.AuthApiCheck error=%s", utils.FuncName(), err)
// http.Error(w, "接口权限不足:"+err.Error(), http.StatusUnauthorized)
// return
//}
next(w, r)
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/unitedrhino/things.git
git@gitee.com:unitedrhino/things.git
unitedrhino
things
物联网iot模块
v1.1.0

搜索帮助