-
Notifications
You must be signed in to change notification settings - Fork 28
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
Check for SDK initialization #688
Merged
Merged
Changes from all commits
Commits
Show all changes
4 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 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 |
---|---|---|
|
@@ -138,6 +138,9 @@ IterableAuthManager getAuthManager() { | |
|
||
@Nullable | ||
IterableKeychain getKeychain() { | ||
if (_applicationContext == null) { | ||
return null; | ||
} | ||
if (keychain == null) { | ||
try { | ||
keychain = new IterableKeychain(getMainActivityContext(), config.encryptionEnforced); | ||
|
@@ -164,7 +167,7 @@ static void setNotificationIcon(Context context, String iconName) { | |
SharedPreferences sharedPref = context.getSharedPreferences(IterableConstants.NOTIFICATION_ICON_NAME, Context.MODE_PRIVATE); | ||
SharedPreferences.Editor editor = sharedPref.edit(); | ||
editor.putString(IterableConstants.NOTIFICATION_ICON_NAME, iconName); | ||
editor.commit(); | ||
editor.apply(); | ||
} | ||
|
||
/** | ||
|
@@ -174,8 +177,7 @@ static void setNotificationIcon(Context context, String iconName) { | |
*/ | ||
static String getNotificationIcon(Context context) { | ||
SharedPreferences sharedPref = context.getSharedPreferences(IterableConstants.NOTIFICATION_ICON_NAME, Context.MODE_PRIVATE); | ||
String iconName = sharedPref.getString(IterableConstants.NOTIFICATION_ICON_NAME, ""); | ||
return iconName; | ||
return sharedPref.getString(IterableConstants.NOTIFICATION_ICON_NAME, ""); | ||
} | ||
|
||
/** | ||
|
@@ -423,6 +425,9 @@ private String getDeviceId() { | |
} | ||
|
||
private void storeAuthData() { | ||
if (_applicationContext == null) { | ||
return; | ||
} | ||
IterableKeychain iterableKeychain = getKeychain(); | ||
if (iterableKeychain != null) { | ||
iterableKeychain.saveEmail(_email); | ||
|
@@ -434,6 +439,9 @@ private void storeAuthData() { | |
} | ||
|
||
private void retrieveEmailAndUserId() { | ||
if (_applicationContext == null) { | ||
return; | ||
} | ||
IterableKeychain iterableKeychain = getKeychain(); | ||
if (iterableKeychain != null) { | ||
_email = iterableKeychain.getEmail(); | ||
|
@@ -552,7 +560,6 @@ protected void registerDeviceToken(@Nullable String email, @Nullable String user | |
if (!checkSDKInitialization()) { | ||
return; | ||
} | ||
|
||
if (deviceToken == null) { | ||
IterableLogger.e(TAG, "registerDeviceToken: token is null"); | ||
return; | ||
|
@@ -681,6 +688,9 @@ public IterableEmbeddedManager getEmbeddedManager() { | |
*/ | ||
@Nullable | ||
public IterableAttributionInfo getAttributionInfo() { | ||
if (_applicationContext == null) { | ||
return null; | ||
} | ||
return IterableAttributionInfo.fromJSONObject( | ||
IterableUtil.retrieveExpirableJsonObject(getPreferences(), IterableConstants.SHARED_PREFS_ATTRIBUTION_INFO_KEY) | ||
); | ||
|
@@ -915,6 +925,9 @@ public void getAndTrackDeepLink(@NonNull String uri, @NonNull IterableHelper.Ite | |
* @return whether or not the app link was handled | ||
*/ | ||
public boolean handleAppLink(@NonNull String uri) { | ||
if (_applicationContext == null) { | ||
return false; | ||
} | ||
IterableLogger.printInfo(); | ||
|
||
if (IterableDeeplinkManager.isIterableDeeplink(uri)) { | ||
|
@@ -1110,20 +1123,20 @@ public void updateUser(@NonNull JSONObject dataFields, Boolean mergeNestedObject | |
* user email or user ID is set before calling this method. | ||
*/ | ||
public void registerForPush() { | ||
if (!checkSDKInitialization()) { | ||
return; | ||
if (checkSDKInitialization()) { | ||
IterablePushRegistrationData data = new IterablePushRegistrationData(_email, _userId, _authToken, getPushIntegrationName(), IterablePushRegistrationData.PushRegistrationAction.ENABLE); | ||
IterablePushRegistration.executePushRegistrationTask(data); | ||
} | ||
|
||
IterablePushRegistrationData data = new IterablePushRegistrationData(_email, _userId, _authToken, getPushIntegrationName(), IterablePushRegistrationData.PushRegistrationAction.ENABLE); | ||
IterablePushRegistration.executePushRegistrationTask(data); | ||
} | ||
|
||
/** | ||
* Disables the device from push notifications | ||
*/ | ||
public void disablePush() { | ||
IterablePushRegistrationData data = new IterablePushRegistrationData(_email, _userId, _authToken, getPushIntegrationName(), IterablePushRegistrationData.PushRegistrationAction.DISABLE); | ||
IterablePushRegistration.executePushRegistrationTask(data); | ||
if (checkSDKInitialization()) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Very important checks! |
||
IterablePushRegistrationData data = new IterablePushRegistrationData(_email, _userId, _authToken, getPushIntegrationName(), IterablePushRegistrationData.PushRegistrationAction.DISABLE); | ||
IterablePushRegistration.executePushRegistrationTask(data); | ||
} | ||
} | ||
|
||
/** | ||
|
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks much better now..