forked from dapr/java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding dapr api token interceptor for durable task (dapr#963)
* adding dapr api token interceptor for durable task Signed-off-by: salaboy <Salaboy@gmail.com> * refactoring interceptor to internal package Signed-off-by: salaboy <Salaboy@gmail.com> * refactoring for codestyle Signed-off-by: salaboy <Salaboy@gmail.com> * adding file with correct caps Signed-off-by: salaboy <Salaboy@gmail.com> * Rename APITokenClientInterceptor.java to ApiTokenClientInterceptor.java Signed-off-by: salaboy <Salaboy@gmail.com> --------- Signed-off-by: salaboy <Salaboy@gmail.com>
- Loading branch information
Showing
3 changed files
with
53 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
46 changes: 46 additions & 0 deletions
46
sdk-workflows/src/main/java/io/dapr/workflows/internal/ApiTokenClientInterceptor.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright 2023 The Dapr Authors | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
limitations under the License. | ||
*/ | ||
|
||
package io.dapr.workflows.internal; | ||
|
||
import io.dapr.client.Headers; | ||
import io.dapr.config.Properties; | ||
import io.grpc.CallOptions; | ||
import io.grpc.Channel; | ||
import io.grpc.ClientCall; | ||
import io.grpc.ClientInterceptor; | ||
import io.grpc.ForwardingClientCall; | ||
import io.grpc.Metadata; | ||
import io.grpc.MethodDescriptor; | ||
|
||
public class ApiTokenClientInterceptor implements ClientInterceptor { | ||
@Override | ||
public <ReqT, RespT> ClientCall<ReqT, RespT> interceptCall( | ||
MethodDescriptor<ReqT, RespT> methodDescriptor, | ||
CallOptions options, | ||
Channel channel) { | ||
// TBD: do we need timeout in workflow client? | ||
ClientCall<ReqT, RespT> clientCall = channel.newCall(methodDescriptor, options); | ||
return new ForwardingClientCall.SimpleForwardingClientCall<ReqT, RespT>(clientCall) { | ||
@Override | ||
public void start(final Listener<RespT> responseListener, final Metadata metadata) { | ||
String daprApiToken = Properties.API_TOKEN.get(); | ||
if (daprApiToken != null) { | ||
metadata.put(Metadata.Key.of(Headers.DAPR_API_TOKEN, Metadata.ASCII_STRING_MARSHALLER), daprApiToken); | ||
} | ||
super.start(responseListener, metadata); | ||
} | ||
}; | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters