-
Notifications
You must be signed in to change notification settings - Fork 376
Add getter for onesignalId and UserStateObserver #1909
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
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
834bbca
Add UserStateObserver that returns both previous and current use states
jinliu9508 3f750aa
Remove code related to the previous user state
jinliu9508 0664cbb
Improve comments
jinliu9508 3b89ac5
Update comments to better explain the IDs
jinliu9508 62e12c4
Update Migration Guide with ID getters and observer
nan-li 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
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
15 changes: 15 additions & 0 deletions
15
OneSignalSDK/onesignal/core/src/main/java/com/onesignal/user/state/IUserStateObserver.kt
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,15 @@ | ||
package com.onesignal.user.state | ||
|
||
/** | ||
* A user state changed observer. Implement this interface and provide the implementation | ||
* to be notified when the user state has changed. | ||
*/ | ||
interface IUserStateObserver { | ||
/** | ||
* Called when the user state this change handler was added to, has changed. A | ||
* user state can change when user has logged in or out | ||
* | ||
* @param state The user changed state. | ||
*/ | ||
fun onUserStateChange(state: UserChangedState) | ||
} |
12 changes: 12 additions & 0 deletions
12
OneSignalSDK/onesignal/core/src/main/java/com/onesignal/user/state/UserChangedState.kt
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,12 @@ | ||
package com.onesignal.user.state | ||
|
||
import org.json.JSONObject | ||
|
||
class UserChangedState( | ||
val current: UserState, | ||
) { | ||
fun toJSONObject(): JSONObject { | ||
return JSONObject() | ||
.put("current", current.toJSONObject()) | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
OneSignalSDK/onesignal/core/src/main/java/com/onesignal/user/state/UserState.kt
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,27 @@ | ||
package com.onesignal.user.state | ||
|
||
import org.json.JSONObject | ||
|
||
/** | ||
* A user state. | ||
*/ | ||
class UserState( | ||
/** | ||
* The unique identifier for your OneSignal account. This will be an empty string until the | ||
* user has been successfully logged in on the backend and assigned an ID. | ||
* Use [addObserver] to be notified when the [onesignalId] has been successfully assigned. | ||
*/ | ||
val onesignalId: String, | ||
/** | ||
* The external identifier that you use to identify users. Use [addObserver] to be notified | ||
* when the [externalId] has been successfully assigned. This will be an empty string if no | ||
* external identifier has been assigned to the associated [onesignalId]. | ||
*/ | ||
val externalId: String, | ||
) { | ||
fun toJSONObject(): JSONObject { | ||
return JSONObject() | ||
.put("onesignalId", onesignalId) | ||
.put("externalId", externalId) | ||
} | ||
} |
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
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.