mirror of
https://github.com/yunionio/cloudpods.git
synced 2026-05-08 06:31:00 +08:00
86 lines
2.3 KiB
Go
86 lines
2.3 KiB
Go
// 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 usages
|
|
|
|
import (
|
|
"time"
|
|
|
|
"yunion.io/x/jsonutils"
|
|
|
|
"yunion.io/x/onecloud/pkg/cloudcommon/db"
|
|
"yunion.io/x/onecloud/pkg/mcclient"
|
|
"yunion.io/x/onecloud/pkg/util/hashcache"
|
|
"yunion.io/x/onecloud/pkg/util/rbacutils"
|
|
)
|
|
|
|
var (
|
|
usageCache = hashcache.NewCache(1024, time.Second*300) // 5 minutes, 1024 buckets cache
|
|
)
|
|
|
|
func getCacheKey(
|
|
scope rbacutils.TRbacScope,
|
|
userCred mcclient.IIdentityProvider,
|
|
isOwner bool,
|
|
rangeObjs []db.IStandaloneModel,
|
|
hostTypes []string,
|
|
providers []string,
|
|
brands []string,
|
|
cloudEnv string,
|
|
includeSystem bool,
|
|
) string {
|
|
type RangeObject struct {
|
|
Resource string `json:"resource"`
|
|
Id string `json:"id"`
|
|
}
|
|
type KeyStruct struct {
|
|
Scope rbacutils.TRbacScope `json:"scope"`
|
|
Domain string `json:"domain"`
|
|
Project string `json:"project"`
|
|
IsOwner bool `json:"is_owner"`
|
|
Ranges []RangeObject `json:"ranges"`
|
|
HostTypes []string `json:"host_types"`
|
|
Providers []string `json:"providers"`
|
|
Brands []string `json:"brands"`
|
|
CloudEnv string `json:"cloud_env"`
|
|
System bool `json:"system"`
|
|
}
|
|
key := KeyStruct{}
|
|
key.Scope = scope
|
|
switch scope {
|
|
case rbacutils.ScopeSystem:
|
|
case rbacutils.ScopeDomain:
|
|
key.Domain = userCred.GetProjectDomainId()
|
|
case rbacutils.ScopeProject:
|
|
key.Project = userCred.GetProjectId()
|
|
}
|
|
if isOwner {
|
|
key.IsOwner = true
|
|
}
|
|
for _, obj := range rangeObjs {
|
|
robj := RangeObject{
|
|
Resource: obj.Keyword(),
|
|
Id: obj.GetId(),
|
|
}
|
|
key.Ranges = append(key.Ranges, robj)
|
|
}
|
|
key.HostTypes = hostTypes
|
|
key.Providers = providers
|
|
key.Brands = brands
|
|
key.CloudEnv = cloudEnv
|
|
key.System = includeSystem
|
|
jsonObj := jsonutils.Marshal(key)
|
|
return jsonObj.QueryString()
|
|
}
|