Skip to content

Commit fcf6cae

Browse files
enjsimo5
authored andcommitted
browsersafe reason
Signed-off-by: Monis Khan <[email protected]>
1 parent 7c57a53 commit fcf6cae

File tree

1 file changed

+29
-2
lines changed

1 file changed

+29
-2
lines changed

pkg/authorization/authorizer/browsersafe/authorizer.go

+29-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
package browsersafe
22

33
import (
4+
"fmt"
5+
46
"k8s.io/apimachinery/pkg/util/sets"
57
"k8s.io/apiserver/pkg/authorization/authorizer"
68
)
@@ -25,8 +27,17 @@ func NewBrowserSafeAuthorizer(delegate authorizer.Authorizer, authenticatedGroup
2527
}
2628

2729
func (a *browserSafeAuthorizer) Authorize(attributes authorizer.Attributes) (authorizer.Decision, string, error) {
28-
browserSafeAttributes := a.getBrowserSafeAttributes(attributes)
29-
return a.delegate.Authorize(browserSafeAttributes)
30+
attrs := a.getBrowserSafeAttributes(attributes)
31+
decision, reason, err := a.delegate.Authorize(attrs)
32+
safeAttributes, changed := attrs.(*browserSafeAttributes)
33+
34+
// check if the request was not allowed and we changed the attributes
35+
if decision == authorizer.DecisionAllow || !changed {
36+
return decision, reason, err
37+
}
38+
39+
// if so, use this information to update the reason
40+
return decision, safeAttributes.reason(reason), err
3041
}
3142

3243
func (a *browserSafeAuthorizer) getBrowserSafeAttributes(attributes authorizer.Attributes) authorizer.Attributes {
@@ -77,3 +88,19 @@ func (b *browserSafeAttributes) GetSubresource() string {
7788
}
7889
return b.Attributes.GetSubresource()
7990
}
91+
92+
func (b *browserSafeAttributes) reason(reason string) string {
93+
if b.isProxyVerb {
94+
if len(reason) != 0 {
95+
reason += ", "
96+
}
97+
reason += fmt.Sprintf("%s verb changed to %s", proxyAction, unsafeProxy)
98+
}
99+
if b.isProxySubresource {
100+
if len(reason) != 0 {
101+
reason += ", "
102+
}
103+
reason += fmt.Sprintf("%s subresource changed to %s", proxyAction, unsafeProxy)
104+
}
105+
return reason
106+
}

0 commit comments

Comments
 (0)