37 Star 407 Fork 74

GVPrancher/rancher

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
globaldnsprovider_store.go 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
package globaldns
import (
"github.com/rancher/norman/api/access"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/types"
managementv3 "github.com/rancher/types/client/management/v3"
)
func ProviderWrap(store types.Store) types.Store {
storeWrapped := &ProviderStore{
Store: store,
}
return storeWrapped
}
type ProviderStore struct {
types.Store
}
func (p *ProviderStore) Delete(apiContext *types.APIContext, schema *types.Schema, id string) (map[string]interface{}, error) {
if err := canDeleteProvider(apiContext, id); err != nil {
return nil, err
}
return p.Store.Delete(apiContext, schema, id)
}
func canDeleteProvider(apiContext *types.APIContext, id string) error {
//check if there are any globalDNS entries referencing this provider
var globalDNSs []managementv3.GlobalDNS
conditions := []*types.QueryCondition{
types.NewConditionFromString(managementv3.GlobalDNSFieldProviderID, types.ModifierEQ, []string{id}...),
}
if err := access.List(apiContext, apiContext.Version, managementv3.GlobalDNSType, &types.QueryOptions{Conditions: conditions}, &globalDNSs); err != nil {
return err
}
if len(globalDNSs) > 0 {
return httperror.NewAPIError(httperror.PermissionDenied, "Cannot delete the provider until GlobalDNS entries referring it are removed")
}
return nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/rancher/rancher.git
git@gitee.com:rancher/rancher.git
rancher
rancher
rancher
v2.2.4-rc5

搜索帮助