-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathrole.go
More file actions
127 lines (117 loc) · 3.33 KB
/
role.go
File metadata and controls
127 lines (117 loc) · 3.33 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
package app
import (
"context"
"fmt"
"slices"
"strings"
"github.com/temporalio/tcld/protogen/api/auth/v1"
"github.com/temporalio/tcld/protogen/api/authservice/v1"
)
var (
accountActionGroups = getAccountActionGroups()
namespaceActionGroups = getNamespaceActionGroups()
)
const (
accountActionGroupNone = "none"
)
func getAccountActionGroups() []string {
var rv []string
for n, v := range auth.AccountActionGroup_value {
if v != int32(auth.ACCOUNT_ACTION_GROUP_UNSPECIFIED) {
rv = append(rv, n)
}
}
slices.Sort(rv)
return rv
}
func getNamespaceActionGroups() []string {
var rv []string
for n, v := range auth.NamespaceActionGroup_value {
if v != int32(auth.NAMESPACE_ACTION_GROUP_UNSPECIFIED) {
rv = append(rv, n)
}
}
slices.Sort(rv)
return rv
}
func getNamespaceRolesBatch(ctx context.Context, client authservice.AuthServiceClient, namespaceActionGroups map[string]string) ([]*auth.Role, error) {
var roleSpecs []*auth.RoleSpec
for namespace, actionGroup := range namespaceActionGroups {
ag, err := toNamespaceActionGroup(actionGroup)
if err != nil {
return nil, err
}
roleSpecs = append(roleSpecs, &auth.RoleSpec{
NamespaceRoles: []*auth.NamespaceRoleSpec{{
Namespace: namespace,
ActionGroup: ag,
}},
})
}
res, err := client.GetRolesByPermissions(ctx, &authservice.GetRolesByPermissionsRequest{
Specs: roleSpecs,
})
if err != nil {
return nil, fmt.Errorf("unable get namespace roles: %v", err)
}
if len(res.Roles) == 0 {
return nil, fmt.Errorf("no roles found")
}
return res.Roles, nil
}
func getAccountRole(ctx context.Context, client authservice.AuthServiceClient, actionGroup string, allowNone bool) (*auth.Role, error) {
if allowNone && strings.ToLower(strings.TrimSpace(actionGroup)) == accountActionGroupNone {
return nil, nil
}
ag, err := toAccountActionGroup(actionGroup)
if err != nil {
return nil, err
}
res, err := client.GetRolesByPermissions(ctx, &authservice.GetRolesByPermissionsRequest{
Specs: []*auth.RoleSpec{{
AccountRole: &auth.AccountRoleSpec{
ActionGroup: ag,
},
}},
})
if err != nil {
return nil, fmt.Errorf("unable to get account role: %v", err)
}
if len(res.Roles) == 0 {
return nil, fmt.Errorf("no roles found")
}
if len(res.Roles) > 1 {
return nil, fmt.Errorf("more than 1 account role found: %s", res.Roles)
}
return res.Roles[0], nil
}
func toAccountActionGroup(actionGroup string) (auth.AccountActionGroup, error) {
g := strings.ToLower(strings.TrimSpace(actionGroup))
var ag auth.AccountActionGroup
for n, v := range auth.AccountActionGroup_value {
if strings.ToLower(n) == g {
ag = auth.AccountActionGroup(v)
break
}
}
if ag == auth.ACCOUNT_ACTION_GROUP_UNSPECIFIED {
return auth.ACCOUNT_ACTION_GROUP_UNSPECIFIED,
fmt.Errorf("invalid action group: should be one of: %s", accountActionGroups)
}
return ag, nil
}
func toNamespaceActionGroup(actionGroup string) (auth.NamespaceActionGroup, error) {
g := strings.ToLower(strings.TrimSpace(actionGroup))
var ag auth.NamespaceActionGroup
for n, v := range auth.NamespaceActionGroup_value {
if strings.ToLower(n) == g {
ag = auth.NamespaceActionGroup(v)
break
}
}
if ag == auth.NAMESPACE_ACTION_GROUP_UNSPECIFIED {
return auth.NAMESPACE_ACTION_GROUP_UNSPECIFIED,
fmt.Errorf("invalid action group: should be one of: %s", namespaceActionGroups)
}
return ag, nil
}