13
13
*/
14
14
package io .streamnative .pulsar .handlers .kop .security .auth ;
15
15
16
-
17
- import static com .google .common .base .Preconditions .checkArgument ;
18
-
19
16
import io .streamnative .pulsar .handlers .kop .security .KafkaPrincipal ;
20
17
import java .util .concurrent .CompletableFuture ;
21
18
import lombok .extern .slf4j .Slf4j ;
@@ -70,9 +67,7 @@ private CompletableFuture<Boolean> authorizeTenantPermission(KafkaPrincipal prin
70
67
71
68
@ Override
72
69
public CompletableFuture <Boolean > canAccessTenantAsync (KafkaPrincipal principal , Resource resource ) {
73
- checkArgument (resource .getResourceType () == ResourceType .TENANT ,
74
- String .format ("Expected resource type is TENANT, but have [%s]" , resource .getResourceType ()));
75
-
70
+ checkResourceType (resource , ResourceType .TENANT );
76
71
CompletableFuture <Boolean > canAccessFuture = new CompletableFuture <>();
77
72
authorizeTenantPermission (principal , resource ).whenComplete ((hasPermission , ex ) -> {
78
73
if (ex != null ) {
@@ -92,9 +87,7 @@ public CompletableFuture<Boolean> canAccessTenantAsync(KafkaPrincipal principal,
92
87
93
88
@ Override
94
89
public CompletableFuture <Boolean > canCreateTopicAsync (KafkaPrincipal principal , Resource resource ) {
95
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
96
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
97
-
90
+ checkResourceType (resource , ResourceType .TOPIC );
98
91
TopicName topicName = TopicName .get (resource .getName ());
99
92
return authorizationService .allowNamespaceOperationAsync (
100
93
topicName .getNamespaceObject (),
@@ -105,9 +98,7 @@ public CompletableFuture<Boolean> canCreateTopicAsync(KafkaPrincipal principal,
105
98
106
99
@ Override
107
100
public CompletableFuture <Boolean > canDeleteTopicAsync (KafkaPrincipal principal , Resource resource ) {
108
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
109
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
110
-
101
+ checkResourceType (resource , ResourceType .TOPIC );
111
102
TopicName topicName = TopicName .get (resource .getName ());
112
103
return authorizationService .allowNamespaceOperationAsync (
113
104
topicName .getNamespaceObject (),
@@ -118,9 +109,7 @@ public CompletableFuture<Boolean> canDeleteTopicAsync(KafkaPrincipal principal,
118
109
119
110
@ Override
120
111
public CompletableFuture <Boolean > canAlterTopicAsync (KafkaPrincipal principal , Resource resource ) {
121
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
122
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
123
-
112
+ checkResourceType (resource , ResourceType .TOPIC );
124
113
TopicName topicName = TopicName .get (resource .getName ());
125
114
return authorizationService .allowTopicPolicyOperationAsync (
126
115
topicName , PolicyName .PARTITION , PolicyOperation .WRITE ,
@@ -129,26 +118,22 @@ public CompletableFuture<Boolean> canAlterTopicAsync(KafkaPrincipal principal, R
129
118
130
119
@ Override
131
120
public CompletableFuture <Boolean > canManageTenantAsync (KafkaPrincipal principal , Resource resource ) {
132
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
133
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
134
-
121
+ checkResourceType (resource , ResourceType .TOPIC );
135
122
TopicName topicName = TopicName .get (resource .getName ());
136
123
return authorizationService .allowTopicOperationAsync (
137
124
topicName , TopicOperation .LOOKUP , principal .getName (), principal .getAuthenticationData ());
138
125
}
139
126
140
127
@ Override
141
128
public CompletableFuture <Boolean > canLookupAsync (KafkaPrincipal principal , Resource resource ) {
142
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
143
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
129
+ checkResourceType (resource , ResourceType .TOPIC );
144
130
TopicName topicName = TopicName .get (resource .getName ());
145
131
return authorizationService .canLookupAsync (topicName , principal .getName (), principal .getAuthenticationData ());
146
132
}
147
133
148
134
@ Override
149
135
public CompletableFuture <Boolean > canGetTopicList (KafkaPrincipal principal , Resource resource ) {
150
- checkArgument (resource .getResourceType () == ResourceType .NAMESPACE ,
151
- String .format ("Expected resource type is NAMESPACE, but have [%s]" , resource .getResourceType ()));
136
+ checkResourceType (resource , ResourceType .NAMESPACE );
152
137
return authorizationService .allowNamespaceOperationAsync (
153
138
NamespaceName .get (resource .getName ()),
154
139
NamespaceOperation .GET_TOPICS ,
@@ -158,19 +143,25 @@ public CompletableFuture<Boolean> canGetTopicList(KafkaPrincipal principal, Reso
158
143
159
144
@ Override
160
145
public CompletableFuture <Boolean > canProduceAsync (KafkaPrincipal principal , Resource resource ) {
161
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
162
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
146
+ checkResourceType (resource , ResourceType .TOPIC );
163
147
TopicName topicName = TopicName .get (resource .getName ());
164
148
return authorizationService .canProduceAsync (topicName , principal .getName (), principal .getAuthenticationData ());
165
149
}
166
150
167
151
@ Override
168
152
public CompletableFuture <Boolean > canConsumeAsync (KafkaPrincipal principal , Resource resource ) {
169
- checkArgument (resource .getResourceType () == ResourceType .TOPIC ,
170
- String .format ("Expected resource type is TOPIC, but have [%s]" , resource .getResourceType ()));
153
+ checkResourceType (resource , ResourceType .TOPIC );
171
154
TopicName topicName = TopicName .get (resource .getName ());
172
155
return authorizationService .canConsumeAsync (
173
156
topicName , principal .getName (), principal .getAuthenticationData (), "" );
174
157
}
175
158
159
+ private void checkResourceType (Resource actual , ResourceType expected ) {
160
+ if (actual .getResourceType () != expected ) {
161
+ throw new IllegalArgumentException (
162
+ String .format ("Expected resource type is [%s], but have [%s]" ,
163
+ expected , actual .getResourceType ()));
164
+ }
165
+ }
166
+
176
167
}
0 commit comments