forked from openshift/origin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
who_can.go
145 lines (118 loc) · 4.15 KB
/
who_can.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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
package policy
import (
"errors"
"fmt"
"io"
"strings"
"github.com/spf13/cobra"
"k8s.io/apimachinery/pkg/api/meta"
metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
"k8s.io/apimachinery/pkg/runtime/schema"
kcmdutil "k8s.io/kubernetes/pkg/kubectl/cmd/util"
authorizationapi "github.com/openshift/origin/pkg/authorization/api"
"github.com/openshift/origin/pkg/client"
"github.com/openshift/origin/pkg/cmd/util/clientcmd"
)
const WhoCanRecommendedName = "who-can"
type whoCanOptions struct {
allNamespaces bool
bindingNamespace string
client *client.Client
verb string
resource schema.GroupVersionResource
resourceName string
}
// NewCmdWhoCan implements the OpenShift cli who-can command
func NewCmdWhoCan(name, fullName string, f *clientcmd.Factory, out io.Writer) *cobra.Command {
options := &whoCanOptions{}
cmd := &cobra.Command{
Use: name + " VERB RESOURCE [NAME]",
Short: "List who can perform the specified action on a resource",
Long: "List who can perform the specified action on a resource",
Run: func(cmd *cobra.Command, args []string) {
if err := options.complete(f, args); err != nil {
kcmdutil.CheckErr(kcmdutil.UsageError(cmd, err.Error()))
}
var err error
options.client, _, err = f.Clients()
kcmdutil.CheckErr(err)
options.bindingNamespace, _, err = f.DefaultNamespace()
kcmdutil.CheckErr(err)
kcmdutil.CheckErr(options.run())
},
}
cmd.Flags().BoolVar(&options.allNamespaces, "all-namespaces", options.allNamespaces, "If true, list who can perform the specified action in all namespaces.")
return cmd
}
func (o *whoCanOptions) complete(f *clientcmd.Factory, args []string) error {
switch len(args) {
case 3:
o.resourceName = args[2]
fallthrough
case 2:
restMapper, _ := f.Object()
o.verb = args[0]
o.resource = resourceFor(restMapper, args[1])
default:
return errors.New("you must specify two or three arguments: verb, resource, and optional resourceName")
}
return nil
}
func resourceFor(mapper meta.RESTMapper, resourceArg string) schema.GroupVersionResource {
fullySpecifiedGVR, groupResource := schema.ParseResourceArg(strings.ToLower(resourceArg))
gvr := schema.GroupVersionResource{}
if fullySpecifiedGVR != nil {
gvr, _ = mapper.ResourceFor(*fullySpecifiedGVR)
}
if gvr.Empty() {
var err error
gvr, err = mapper.ResourceFor(groupResource.WithVersion(""))
if err != nil {
return schema.GroupVersionResource{Resource: resourceArg}
}
}
return gvr
}
func (o *whoCanOptions) run() error {
authorizationAttributes := authorizationapi.Action{
Verb: o.verb,
Group: o.resource.Group,
Resource: o.resource.Resource,
ResourceName: o.resourceName,
}
resourceAccessReviewResponse := &authorizationapi.ResourceAccessReviewResponse{}
var err error
if o.allNamespaces {
resourceAccessReviewResponse, err = o.client.ResourceAccessReviews().Create(&authorizationapi.ResourceAccessReview{Action: authorizationAttributes})
} else {
resourceAccessReviewResponse, err = o.client.LocalResourceAccessReviews(o.bindingNamespace).Create(&authorizationapi.LocalResourceAccessReview{Action: authorizationAttributes})
}
if err != nil {
return err
}
if resourceAccessReviewResponse.Namespace == metav1.NamespaceAll {
fmt.Printf("Namespace: <all>\n")
} else {
fmt.Printf("Namespace: %s\n", resourceAccessReviewResponse.Namespace)
}
resourceDisplay := o.resource.Resource
if len(o.resource.Group) > 0 {
resourceDisplay = resourceDisplay + "." + o.resource.Group
}
fmt.Printf("Verb: %s\n", o.verb)
fmt.Printf("Resource: %s\n\n", resourceDisplay)
if len(resourceAccessReviewResponse.Users) == 0 {
fmt.Printf("Users: none\n\n")
} else {
fmt.Printf("Users: %s\n\n", strings.Join(resourceAccessReviewResponse.Users.List(), "\n "))
}
if len(resourceAccessReviewResponse.Groups) == 0 {
fmt.Printf("Groups: none\n\n")
} else {
fmt.Printf("Groups: %s\n\n", strings.Join(resourceAccessReviewResponse.Groups.List(), "\n "))
}
if len(resourceAccessReviewResponse.EvaluationError) != 0 {
fmt.Printf("Error during evaluation, results may not be complete: %s\n", resourceAccessReviewResponse.EvaluationError)
}
return nil
}