| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // Copyright 2019 Yunion
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- package cachesync
- import (
- "context"
- "yunion.io/x/jsonutils"
- "yunion.io/x/log"
- "yunion.io/x/pkg/errors"
- "yunion.io/x/pkg/util/rbacscope"
- "yunion.io/x/onecloud/pkg/cloudcommon/consts"
- "yunion.io/x/onecloud/pkg/cloudcommon/db"
- "yunion.io/x/onecloud/pkg/mcclient/auth"
- modules "yunion.io/x/onecloud/pkg/mcclient/modules/identity"
- "yunion.io/x/onecloud/pkg/util/ctx"
- )
- type userCacheSyncWorker struct {
- ids []string
- }
- func (w *userCacheSyncWorker) Run() {
- log.Debugf("[userCacheSyncWorker] Run project cache sync worker ...")
- err := syncUsers(ctx.CtxWithTime(), w.ids)
- if err != nil {
- log.Errorf("fail to syncUsers %s", err)
- }
- }
- func (w *userCacheSyncWorker) Dump() string {
- return "userCacheSyncWorker"
- }
- func syncUsers(ctx context.Context, ids []string) error {
- s := auth.GetAdminSession(ctx, consts.GetRegion())
- query := jsonutils.NewDict()
- query.Add(jsonutils.NewInt(1024), "limit")
- query.Add(jsonutils.NewString(string(rbacscope.ScopeSystem)), "scope")
- query.Add(jsonutils.JSONTrue, "details")
- query.Add(jsonutils.NewString("all"), "pending_delete")
- query.Add(jsonutils.NewString("all"), "delete")
- if len(ids) > 0 {
- query.Add(jsonutils.NewStringArray(ids), "id")
- }
- total := -1
- offset := 0
- for total < 0 || offset < total {
- query.Set("offset", jsonutils.NewInt(int64(offset)))
- results, err := modules.UsersV3.List(s, query)
- if err != nil {
- return errors.Wrap(err, "UsersV3.List")
- }
- total = results.Total
- for i := range results.Data {
- // update user cache
- item := db.SCachedUser{}
- deleted := jsonutils.QueryBoolean(results.Data[i], "deleted", false)
- err := results.Data[i].Unmarshal(&item)
- if err == nil && !deleted {
- db.UserCacheManager.Save(ctx, item.Id, item.Name, item.DomainId, item.ProjectDomain, item.Lang)
- } else if deleted {
- usrObj, _ := db.UserCacheManager.FetchById(item.Id)
- if usrObj != nil {
- usrObj.Delete(ctx, nil)
- }
- }
- offset++
- }
- }
- return nil
- }
|