-
Notifications
You must be signed in to change notification settings - Fork 3k
/
actions.go
35 lines (31 loc) · 1.14 KB
/
actions.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
package common
import (
"github.com/rancher/norman/types"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/client/management/v3"
"github.com/sirupsen/logrus"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
)
func HandleCommonAction(actionName string, action *types.Action, request *types.APIContext, authConfigName string, authConfigs v3.AuthConfigInterface) (bool, error) {
if actionName == "disable" {
o, err := authConfigs.ObjectClient().UnstructuredClient().Get(authConfigName, v1.GetOptions{})
if err != nil {
return false, err
}
u, _ := o.(runtime.Unstructured)
config := u.UnstructuredContent()
if e, ok := config[client.AuthConfigFieldEnabled].(bool); ok && e {
config[client.AuthConfigFieldEnabled] = false
logrus.Infof("Disabling auth provider %v", authConfigName)
_, err := authConfigs.ObjectClient().Update(authConfigName, o)
return true, err
}
}
return false, nil
}
func AddCommonActions(apiContext *types.APIContext, resource *types.RawResource) {
if e, ok := resource.Values["enabled"].(bool); ok && e {
resource.AddAction(apiContext, "disable")
}
}