forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
samlconfig.go
67 lines (53 loc) · 1.8 KB
/
samlconfig.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
package samlconfig
import (
"fmt"
"github.com/mitchellh/mapstructure"
"github.com/rancher/rancher/pkg/auth/providers/saml"
"github.com/rancher/types/apis/management.cattle.io/v3"
"github.com/rancher/types/config"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime"
)
type authProvider struct {
authConfigs v3.AuthConfigInterface
}
func Register(apiContext *config.ScaledContext) {
a := newAuthProvider(apiContext)
apiContext.Management.AuthConfigs("").AddHandler("authConfigController", a.sync)
}
func newAuthProvider(apiContext *config.ScaledContext) *authProvider {
a := &authProvider{
authConfigs: apiContext.Management.AuthConfigs(""),
}
return a
}
func (a *authProvider) sync(key string, config *v3.AuthConfig) error {
samlConfig := &v3.SamlConfig{}
if key == "" || config == nil {
return nil
}
if config.Name != saml.PingName && config.Name != saml.ADFSName && config.Name != saml.KeyCloakName {
return nil
}
if !config.Enabled {
return nil
}
authConfigObj, err := a.authConfigs.ObjectClient().UnstructuredClient().Get(config.Name, metav1.GetOptions{})
if err != nil {
return fmt.Errorf("failed to retrieve SamlConfig, error: %v", err)
}
u, ok := authConfigObj.(runtime.Unstructured)
if !ok {
return fmt.Errorf("failed to retrieve SamlConfig, cannot read k8s Unstructured data")
}
storedSamlConfigMap := u.UnstructuredContent()
mapstructure.Decode(storedSamlConfigMap, samlConfig)
metadataMap, ok := storedSamlConfigMap["metadata"].(map[string]interface{})
if !ok {
return fmt.Errorf("failed to retrieve SamlConfig metadata, cannot read k8s Unstructured data")
}
typemeta := &metav1.ObjectMeta{}
mapstructure.Decode(metadataMap, typemeta)
samlConfig.ObjectMeta = *typemeta
return saml.InitializeSamlServiceProvider(samlConfig, config.Name)
}