-
Notifications
You must be signed in to change notification settings - Fork 375
feat: identity verification 5.8 #2599
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
nan-li
wants to merge
29
commits into
main
Choose a base branch
from
feat/identity_verification_5.8
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.
Open
Changes from all commits
Commits
Show all changes
29 commits
Select commit
Hold shift + click to select a range
65013c3
add public API to interface
nan-li b6f3e4e
Add JwtTokenStore, Operation.externalId, ConfigModel.useIdentityVerif…
nan-li 372d924
Add jwt parameter to backend service interfaces/impls, add Authorizat…
nan-li 12a918b
Add JWT gating, centralized externalId stamping, and FAIL_UNAUTHORIZE…
nan-li 2295fe7
Update all operation executors to resolve JWT and alias based on iden…
nan-li 1f6a60b
Add JWT to In-App Messages backend calls, guard anonymous IAM fetch
nan-li 38f250b
Use alias-based IAM fetch endpoint: /users/by/:alias_label/:alias_id/…
nan-li da67b04
Wire JWT storage and identity verification guards into login, logout,…
nan-li 8ab58a1
Add IdentityVerificationService, register JwtTokenStore in DI
nan-li 2c87765
demo app: add JWT to buttons (login, updateJWT)
nan-li 28a657f
update remote params identity verification key to "jwt_required"
nan-li d7b4b89
Fix: set all HTTP headers before writing request body
nan-li 684db4c
demo app: use Identity verification toggle to make requests
nan-li c0bde45
Add isDisabledInternally to SubscriptionModel for IV logout
nan-li ad2b83a
Encapsulate JWT invalidation listener management in UserManager
nan-li 5c37446
debug: dump full operation queue in OperationRepo log
nan-li ccd95cb
Fix spotless import ordering in CoreModule and UserManager
nan-li 457b745
Update detekt baselines for identity verification changes
nan-li 00d3799
Fix unit test compilation for identity verification parameters
nan-li 762917b
Fix demo app stalling on failed login by dismissing loading immediately
nan-li dd288a4
Fix runtime 401 not notifying developer to provide a new JWT
nan-li ba938da
Propagate externalId to executor result operations in OperationRepo
nan-li 4cb1242
Fix race condition: stamp externalId synchronously before async enqueue
nan-li f9d911a
Harden JwtTokenStore against corrupted SharedPreferences data
nan-li e993fc0
Fix null useIdentityVerification blocking all ops for non-IV apps
nan-li 76dd958
Add @Volatile to _jwtInvalidatedHandler for JMM visibility
nan-li a53f942
Skip push subscription disable on logout when JWT is already expired
nan-li f6e4227
Add identity verification manual test plan
nan-li b9b637d
Update IDENTITY_VERIFICATION_MANUAL_TEST_PLAN.md
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
Large diffs are not rendered by default.
Oops, something went wrong.
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| <?xml version='1.0' encoding='UTF-8'?> | ||
| <SmellBaseline> | ||
| <ManuallySuppressedIssues/> | ||
| <CurrentIssues> | ||
| <ID>LongParameterList:OtelLoggingHelper.kt$OtelLoggingHelper$( telemetry: IOtelOpenTelemetryRemote, level: String, message: String, exceptionType: String? = null, exceptionMessage: String? = null, exceptionStacktrace: String? = null, )</ID> | ||
| <ID>ReturnCount:OtelConfigRemoteOneSignal.kt$OtelConfigRemoteOneSignal.ExporterLoggingConfig.LoggingLogRecordExporter$@Suppress("TooGenericExceptionCaught") private fun resolveHttpFailureMessage(throwable: Throwable?): String</ID> | ||
| <ID>TooGenericExceptionCaught:OtelCrashHandler.kt$OtelCrashHandler$t: Throwable</ID> | ||
| <ID>UndocumentedPublicFunction:IOtelCrashReporter.kt$IOtelCrashReporter$suspend fun saveCrash(thread: Thread, throwable: Throwable)</ID> | ||
| </CurrentIssues> | ||
| </SmellBaseline> |
Oops, something went wrong.
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.
we should break it down if its a complex method.