1
1
package browsersafe
2
2
3
3
import (
4
+ "fmt"
5
+
4
6
"k8s.io/apimachinery/pkg/util/sets"
5
7
"k8s.io/apiserver/pkg/authorization/authorizer"
6
8
)
@@ -25,8 +27,17 @@ func NewBrowserSafeAuthorizer(delegate authorizer.Authorizer, authenticatedGroup
25
27
}
26
28
27
29
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
30
41
}
31
42
32
43
func (a * browserSafeAuthorizer ) getBrowserSafeAttributes (attributes authorizer.Attributes ) authorizer.Attributes {
@@ -77,3 +88,19 @@ func (b *browserSafeAttributes) GetSubresource() string {
77
88
}
78
89
return b .Attributes .GetSubresource ()
79
90
}
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