-
Notifications
You must be signed in to change notification settings - Fork 128
Add JWT authentication options, and Expo instructions #155
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
ericadamski
wants to merge
3
commits into
taskrabbit:main
Choose a base branch
from
zurpinc:main
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+1,371
−732
Open
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
101 changes: 101 additions & 0 deletions
101
android/src/main/java/com/taskrabbit/zendesk/RNZendeskJwtAuthenticationModule.java
This file contains hidden or 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,101 @@ | ||
| package com.taskrabbit.zendesk; | ||
|
|
||
| import com.facebook.react.bridge.ReadableMap; | ||
|
|
||
| import org.json.JSONObject; | ||
|
|
||
| import java.nio.charset.StandardCharsets; | ||
| import java.util.Map; | ||
|
|
||
| import okhttp3.HttpUrl; | ||
| import okhttp3.OkHttpClient; | ||
| import okhttp3.Request; | ||
| import okhttp3.RequestBody; | ||
| import okhttp3.Response; | ||
| import zendesk.chat.JwtAuthenticator; | ||
|
|
||
| public class RNZendeskJwtAuthenticationModule implements JwtAuthenticator { | ||
| private String mTokenEndpoint; | ||
| private String mExternalId; | ||
| private String mPrefetchedJwt; | ||
| private ReadableMap mExtraHeaders; | ||
| private OkHttpClient mHttpClient = new OkHttpClient(); | ||
|
|
||
| RNZendeskJwtAuthenticationModule(ReadableMap options) { | ||
| super(); | ||
|
|
||
| String prefetchedJwt = options.getString("jwt"); | ||
|
|
||
| if (prefetchedJwt != null) { | ||
| this.mPrefetchedJwt = prefetchedJwt; | ||
| } else { | ||
| this.mExternalId = options.getString("externalId"); | ||
| this.mTokenEndpoint = options.getString("tokenEndpoint"); | ||
| this.mExtraHeaders = options.getMap("headers"); | ||
| } | ||
| } | ||
|
|
||
| @Override | ||
| public void getToken(JwtCompletion jwtCompletion) { | ||
| if (this.mPrefetchedJwt != null) { | ||
| jwtCompletion.onTokenLoaded(this.mPrefetchedJwt); | ||
| } else { | ||
| this.makeHttpRequest(jwtCompletion); | ||
| } | ||
| } | ||
|
|
||
| public boolean canUseJwtAuth() { | ||
| return this.mPrefetchedJwt != null || (this.mTokenEndpoint != null && this.mExternalId != null); | ||
| } | ||
|
|
||
| private void makeHttpRequest(JwtCompletion completion) { | ||
| RequestBody body = RequestBody.create(this.getTokenRequestJson()); | ||
|
|
||
| Request.Builder builder = new Request.Builder() | ||
| .post(body) | ||
| .url(HttpUrl.get(this.mTokenEndpoint)) | ||
| .header("Content-Type", "application/json"); | ||
|
|
||
| this.applyCustomerHeaders(builder); | ||
|
|
||
| Request request = builder.build(); | ||
|
|
||
| try { | ||
| Response response = this.mHttpClient.newCall(request).execute(); | ||
|
|
||
| JSONObject responseObject = new JSONObject(response.body().string()); | ||
|
|
||
| String jwt = responseObject.getString("jwt"); | ||
|
|
||
| if (jwt != null) { | ||
| completion.onTokenLoaded(jwt); | ||
| } | ||
|
|
||
| completion.onError(); | ||
| } catch (Exception ex) { | ||
| completion.onError(); | ||
| } | ||
| } | ||
|
|
||
| private void applyCustomerHeaders(Request.Builder builder) { | ||
| if (this.mExtraHeaders == null) { | ||
| return; | ||
| } | ||
|
|
||
| for (Map.Entry<String, Object> entry: this.mExtraHeaders.toHashMap().entrySet()) { | ||
| builder.header(entry.getKey(), entry.getValue().toString()); | ||
| } | ||
| } | ||
|
|
||
| private byte[] getTokenRequestJson() { | ||
| try { | ||
| JSONObject json = new JSONObject(); | ||
|
|
||
| json.put("externalId", this.mExternalId); | ||
|
|
||
| return json.toString().getBytes(StandardCharsets.UTF_8); | ||
| } catch (Exception exception) { | ||
| return "{}".getBytes(StandardCharsets.UTF_8); | ||
| } | ||
| } | ||
| } |
This file contains hidden or 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
This file contains hidden or 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,19 @@ | ||
| // | ||
| // RNZendeskChatAuthenticationModule.h | ||
| // Pods | ||
| // | ||
| // Created by Eric Adamski on 2023-09-25. | ||
| // | ||
|
|
||
| #ifndef RNZendeskChatAuthenticationModule_h | ||
| #define RNZendeskChatAuthenticationModule_h | ||
|
|
||
| #import <ChatSDK/ChatSDK.h> | ||
| #import <ChatProvidersSDK/ChatProvidersSDK.h> | ||
|
|
||
| @interface JwtAuthStrategy: NSObject<ZDKJWTAuthenticator> | ||
| - (id)initJWTAuthFromConfig: (NSDictionary *)options; | ||
| - (bool)canUseJwtAuth; | ||
| @end | ||
|
|
||
| #endif /* RNZendeskChatAuthenticationModule_h */ |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.