-
Notifications
You must be signed in to change notification settings - Fork 0
/
store.go
68 lines (60 loc) · 2.19 KB
/
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package publicapi
import (
"strings"
"github.com/rancher/norman/httperror"
"github.com/rancher/norman/objectclient"
"github.com/rancher/norman/store/empty"
"github.com/rancher/norman/types"
"github.com/rancher/rancher/pkg/auth/providers"
"github.com/rancher/rancher/pkg/settings"
"github.com/rancher/types/config"
"k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured"
"k8s.io/apimachinery/pkg/runtime"
)
func setAuthProvidersStore(schema *types.Schema, apiContext *config.ScaledContext) {
schema.Store = &authProvidersStore{
authConfigsRaw: apiContext.Management.AuthConfigs("").ObjectClient().UnstructuredClient(),
}
}
type authProvidersStore struct {
empty.Store
authConfigsRaw objectclient.GenericClient
}
func (s *authProvidersStore) ByID(apiContext *types.APIContext, schema *types.Schema, id string) (map[string]interface{}, error) {
o, err := s.authConfigsRaw.Get(id, v1.GetOptions{})
if err != nil {
return nil, err
}
u, _ := o.(runtime.Unstructured)
config := u.UnstructuredContent()
if t, ok := config["type"].(string); ok && t != "" {
return providers.GetProviderByType(t).TransformToAuthProvider(config), nil
}
return nil, httperror.NewAPIError(httperror.NotFound, "")
}
func (s *authProvidersStore) List(apiContext *types.APIContext, schema *types.Schema, opt *types.QueryOptions) ([]map[string]interface{}, error) {
rrr, _ := s.authConfigsRaw.List(v1.ListOptions{})
var result []map[string]interface{}
list, _ := rrr.(*unstructured.UnstructuredList)
for _, i := range list.Items {
if t, ok := i.Object["type"].(string); ok && t != "" {
if enabled, ok := i.Object["enabled"].(bool); ok && enabled {
result = append(result, providers.GetProviderByType(t).TransformToAuthProvider(i.Object))
}
}
}
return result, nil
}
func (s *authProvidersStore) Update(apiContext *types.APIContext, schema *types.Schema, data map[string]interface{}, id string) (map[string]interface{}, error) {
result, err := s.Update(apiContext, schema, data, id)
if err != nil {
return nil, err
}
if strings.EqualFold(settings.FirstLogin.Get(), "true") {
if err := settings.FirstLogin.Set("false"); err != nil {
return nil, err
}
}
return result, nil
}