36 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
handler.go 3.66 KB
一键复制 编辑 原始数据 按行查看 历史
Dan Ramich 提交于 2019-06-12 13:38 . goimport linting changes
package principals
import (
"context"
"encoding/json"
"net/http"
"fmt"
"github.com/pkg/errors"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
"github.com/rancher/norman/types/convert"
"github.com/rancher/rancher/pkg/auth/providers"
"github.com/rancher/rancher/pkg/auth/requests"
"github.com/rancher/rancher/pkg/auth/tokens"
v3 "github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
)
type principalsHandler struct {
principalsClient v3.PrincipalInterface
tokensClient v3.TokenInterface
auth requests.Authenticator
tokenMGR *tokens.Manager
ac types.AccessControl
}
func newPrincipalsHandler(ctx context.Context, mgmt *config.ScaledContext) *principalsHandler {
providers.Configure(ctx, mgmt)
return &principalsHandler{
principalsClient: mgmt.Management.Principals(""),
tokensClient: mgmt.Management.Tokens(""),
auth: requests.NewAuthenticator(ctx, mgmt),
tokenMGR: tokens.NewManager(ctx, mgmt),
ac: mgmt.AccessControl,
}
}
func (h *principalsHandler) actions(actionName string, action *types.Action, apiContext *types.APIContext) error {
if actionName != "search" {
return httperror.NewAPIError(httperror.ActionNotAvailable, "")
}
input := &v3.SearchPrincipalsInput{}
if err := json.NewDecoder(apiContext.Request.Body).Decode(input); err != nil {
return httperror.NewAPIError(httperror.InvalidBodyContent, fmt.Sprintf("Failed to parse body: %v", err))
}
token, err := h.getToken(apiContext.Request)
if err != nil {
return err
}
ps, err := providers.SearchPrincipals(input.Name, input.PrincipalType, *token)
if err != nil {
return err
}
var principals []map[string]interface{}
for _, p := range ps {
x, err := convertPrincipal(apiContext.Schema, p)
if err != nil {
return err
}
principals = append(principals, x)
}
context := map[string]string{"resource": "principals", "apiGroup": "management.cattle.io"}
principals = h.ac.FilterList(apiContext, apiContext.Schema, principals, context)
apiContext.WriteResponse(200, principals)
return nil
}
func (h *principalsHandler) list(apiContext *types.APIContext, next types.RequestHandler) error {
var principals []map[string]interface{}
token, err := h.getToken(apiContext.Request)
if err != nil {
return err
}
if apiContext.ID != "" {
princ, err := providers.GetPrincipal(apiContext.ID, *token)
if err != nil {
return err
}
p, err := convertPrincipal(apiContext.Schema, princ)
if err != nil {
return err
}
context := map[string]string{"resource": "principals", "apiGroup": "management.cattle.io"}
p = h.ac.Filter(apiContext, apiContext.Schema, p, context)
apiContext.WriteResponse(200, p)
return nil
}
p, err := convertPrincipal(apiContext.Schema, token.UserPrincipal)
if err != nil {
return err
}
principals = append(principals, p)
groupPrincipals := h.tokenMGR.GetGroupsForTokenAuthProvider(token)
for _, p := range groupPrincipals {
x, err := convertPrincipal(apiContext.Schema, p)
if err != nil {
return err
}
principals = append(principals, x)
}
apiContext.WriteResponse(200, principals)
return nil
}
func convertPrincipal(schema *types.Schema, principal v3.Principal) (map[string]interface{}, error) {
data, err := convert.EncodeToMap(principal)
if err != nil {
return nil, err
}
mapper := schema.Mapper
if mapper == nil {
return nil, errors.New("no schema mapper available")
}
mapper.FromInternal(data)
return data, nil
}
func (h *principalsHandler) getToken(request *http.Request) (*v3.Token, error) {
token, err := h.auth.TokenFromRequest(request)
return token, errors.Wrap(err, "must authenticate")
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.6-rc1

搜索帮助

344bd9b3 5694891 D2dac590 5694891