-
Notifications
You must be signed in to change notification settings - Fork 31
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
feat: support for wallet initiated flow #1370
feat: support for wallet initiated flow #1370
Conversation
… flow Signed-off-by: Mykhailo Sizov <mykhailo.sizov@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Codecov ReportPatch coverage:
Additional details and impacted files@@ Coverage Diff @@
## main #1370 +/- ##
==========================================
- Coverage 87.54% 87.46% -0.09%
==========================================
Files 149 153 +4
Lines 9040 9172 +132
==========================================
+ Hits 7914 8022 +108
- Misses 739 760 +21
- Partials 387 390 +3
☔ View full report in Codecov by Sentry. |
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
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.
See comments
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
pkg/service/oidc4ci/regex.go
Outdated
package oidc4ci | ||
|
||
const ( | ||
WalletInitFlowClaimRegex = `(https|http):\/\/.*\/issuer\/(.*?)\/(.*)$` |
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.
why we have this regex?
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.
one of the scopes which we receive /odic/authorize endpoint is link to our issuer profile. this regex is used to identify that scope and parse it @sudeshrshetty
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 just need to check if it URL or not, issuer
term should be removed
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Co-authored-by: Derek Trider <derektrider@gmail.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
Signed-off-by: Stas D <stanislav.dmytryshyn@securekey.com>
No description provided.