forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
globaldnsprovider_store.go
48 lines (36 loc) · 1.3 KB
/
globaldnsprovider_store.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
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
}