37 Star 396 Fork 71

GVPrancher / rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
user_store.go 4.36 KB
一键复制 编辑 原始数据 按行查看 历史
package authn
import (
"strings"
"sync"
"time"
"github.com/pkg/errors"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/store/transform"
"github.com/rancher/norman/types"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/client/management/v3"
"github.com/rancher/types/config"
"github.com/sirupsen/logrus"
"golang.org/x/crypto/bcrypt"
"k8s.io/client-go/tools/cache"
)
const userByUsernameIndex = "auth.management.cattle.io/user-by-username"
type userStore struct {
types.Store
mu sync.Mutex
userIndexer cache.Indexer
}
func SetUserStore(schema *types.Schema, mgmt *config.ScaledContext) {
userInformer := mgmt.Management.Users("").Controller().Informer()
userIndexers := map[string]cache.IndexFunc{
userByUsernameIndex: userByUsername,
}
userInformer.AddIndexers(userIndexers)
store := &userStore{
Store: schema.Store,
mu: sync.Mutex{},
userIndexer: userInformer.GetIndexer(),
}
t := &transform.Store{
Store: store,
Transformer: func(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}, opt *types.QueryOptions) (map[string]interface{}, error) {
// filter system users out of the api
if princIds, ok := data[client.UserFieldPrincipalIDs].([]interface{}); ok {
for _, p := range princIds {
pid, _ := p.(string)
if strings.HasPrefix(pid, "system://") {
if opt != nil && opt.Options["ByID"] == "true" {
return nil, httperror.NewAPIError(httperror.NotFound, "resource not found")
}
return nil, nil
}
}
}
// set "me" field on user
userID := apiContext.Request.Header.Get("Impersonate-User")
if userID != "" {
id, ok := data[types.ResourceFieldID].(string)
if ok {
if id == userID {
data["me"] = "true"
}
}
}
return data, nil
},
}
schema.Store = t
}
func userByUsername(obj interface{}) ([]string, error) {
u, ok := obj.(*v3.User)
if !ok {
return []string{}, nil
}
return []string{u.Username}, nil
}
func hashPassword(data map[string]interface{}) error {
pass, ok := data[client.UserFieldPassword].(string)
if !ok {
return errors.New("password not a string")
}
hashed, err := HashPasswordString(pass)
if err != nil {
return err
}
data[client.UserFieldPassword] = string(hashed)
return nil
}
func HashPasswordString(password string) (string, error) {
hash, err := bcrypt.GenerateFromPassword([]byte(password), bcrypt.DefaultCost)
if err != nil {
return "", errors.Wrap(err, "problem encrypting password")
}
return string(hash), nil
}
func (s *userStore) Create(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}) (map[string]interface{}, error) {
if err := hashPassword(data); err != nil {
return nil, err
}
created, err := s.create(apiContext, schema, data)
if err != nil {
return nil, err
}
Tries:
for x := 0; x < 3; x++ {
if id, ok := created[types.ResourceFieldID].(string); ok {
time.Sleep(time.Duration((x+1)*100) * time.Millisecond)
created, err = s.ByID(apiContext, schema, id)
if err != nil {
logrus.Warnf("error while getting user: %v", err)
continue
}
var principalIDs []interface{}
if pids, ok := created[client.UserFieldPrincipalIDs].([]interface{}); ok {
principalIDs = pids
}
for _, pid := range principalIDs {
if pidString, ok := pid.(string); ok {
if strings.HasPrefix(pidString, "local://") {
break Tries
}
}
}
created[client.UserFieldPrincipalIDs] = append(principalIDs, "local://"+id)
created, err = s.Update(apiContext, schema, created, id)
if err != nil {
if httperror.IsConflict(err) {
continue
}
logrus.Warnf("error while updating user: %v", err)
break
}
break
}
}
delete(created, client.UserFieldPassword)
return created, nil
}
func (s *userStore) create(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}) (map[string]interface{}, error) {
username, ok := data[client.UserFieldUsername].(string)
if !ok {
return nil, errors.New("invalid username")
}
s.mu.Lock()
defer s.mu.Unlock()
users, err := s.userIndexer.ByIndex(userByUsernameIndex, username)
if err != nil {
return nil, err
}
if len(users) > 0 {
return nil, httperror.NewFieldAPIError(httperror.NotUnique, "username", "Username is already in use.")
}
return s.Store.Create(apiContext, schema, data)
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.0.5-rc3

搜索帮助

344bd9b3 5694891 D2dac590 5694891