Draft OpenID Connect support.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
<RestrictedAuth
|
||||
:mode="authMode"
|
||||
:remote-auth-token="remoteAuthToken"
|
||||
:oidc-query-string="oidcQueryString"
|
||||
@authenticated="handleAuthenticated"
|
||||
@back="handleBack"
|
||||
/>
|
||||
@@ -15,6 +16,9 @@ import RestrictedAuth from '@/components/RestrictedAuth.vue'
|
||||
// The token is a 5-word passphrase like "word1.word2.word3.word4.word5"
|
||||
const remoteAuthToken = ref(null)
|
||||
|
||||
// For OIDC flow, pass the raw query string to preserve exact param values
|
||||
const oidcQueryString = window.location.search.includes('client_id=') ? window.location.search : null
|
||||
|
||||
function extractRemoteToken() {
|
||||
const path = window.location.pathname
|
||||
// Match /auth/{token} where token is a passphrase with dots
|
||||
@@ -41,6 +45,11 @@ function postToParent(message) {
|
||||
}
|
||||
|
||||
function handleAuthenticated(result) {
|
||||
if (result.redirect_url) {
|
||||
// OIDC flow: redirect to client with auth code
|
||||
window.location.href = result.redirect_url
|
||||
return
|
||||
}
|
||||
postToParent({
|
||||
type: 'auth-success',
|
||||
authenticated: true,
|
||||
|
||||
Reference in New Issue
Block a user