Browse Source

Allow WebAuthn on localhost as well

* browsers typically whiteliste this as well - https://developer.mozilla.org/en-US/docs/Web/API/Web_Authentication_API
* for developing purposes see https://developer.chrome.com/docs/devtools/webauthn/

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Signed-off-by: Louis Chemineau <louis@chmn.me>
tags/v22.0.0rc1
Morris Jobke 2 years ago
parent
commit
86080e68b2

+ 5
- 5
apps/settings/js/vue-settings-personal-webauthn.js
File diff suppressed because it is too large
View File


+ 1
- 1
apps/settings/js/vue-settings-personal-webauthn.js.map
File diff suppressed because it is too large
View File


+ 5
- 1
apps/settings/src/components/WebAuthn/AddDevice.vue View File

@@ -20,7 +20,7 @@
-->

<template>
<div v-if="!isHttps">
<div v-if="!isHttps && !isLocalhost">
{{ t('settings', 'Passwordless authentication requires a secure connection.') }}
</div>
<div v-else>
@@ -89,6 +89,10 @@ export default {
type: Boolean,
default: false,
},
isLocalhost: {
type: Boolean,
default: false,
},
},
data() {
return {

+ 8
- 1
apps/settings/src/components/WebAuthn/Section.vue View File

@@ -40,7 +40,10 @@
{{ t('settings', 'Your browser does not support WebAuthn.') }}
</p>

<AddDevice v-if="hasPublicKeyCredential" :is-https="isHttps" @added="deviceAdded" />
<AddDevice v-if="hasPublicKeyCredential"
:is-https="isHttps"
:is-localhost="isLocalhost"
@added="deviceAdded" />
</div>
</template>

@@ -69,6 +72,10 @@ export default {
type: Boolean,
default: false,
},
isLocalhost: {
type: Boolean,
default: false,
},
hasPublicKeyCredential: {
type: Boolean,
default: false,

+ 1
- 0
apps/settings/src/main-personal-webauth.js View File

@@ -36,6 +36,7 @@ new View({
propsData: {
initialDevices: devices,
isHttps: window.location.protocol === 'https:',
isLocalhost: window.location.hostname === 'localhost',
hasPublicKeyCredential: typeof (window.PublicKeyCredential) !== 'undefined',
},
}).$mount('#security-webauthn')

+ 4
- 4
core/js/dist/login.js
File diff suppressed because it is too large
View File


+ 1
- 1
core/js/dist/login.js.map
File diff suppressed because it is too large
View File


+ 6
- 2
core/src/components/login/PasswordLessLoginForm.vue View File

@@ -1,5 +1,5 @@
<template>
<form v-if="isHttps && hasPublicKeyCredential"
<form v-if="(isHttps || isLocalhost) && hasPublicKeyCredential"
ref="loginForm"
method="post"
name="login"
@@ -32,7 +32,7 @@
<div v-else-if="!hasPublicKeyCredential">
{{ t('core', 'Passwordless authentication is not supported in your browser.') }}
</div>
<div v-else-if="!isHttps">
<div v-else-if="!isHttps && !isLocalhost">
{{ t('core', 'Passwordless authentication is only available over a secure connection.') }}
</div>
</template>
@@ -73,6 +73,10 @@ export default {
type: Boolean,
default: false,
},
isLocalhost: {
type: Boolean,
default: false,
},
hasPublicKeyCredential: {
type: Boolean,
default: false,

+ 1
- 0
core/src/login.js View File

@@ -71,6 +71,7 @@ new View({
hasPasswordless: fromStateOr('webauthn-available', false),
countAlternativeLogins: fromStateOr('countAlternativeLogins', false),
isHttps: window.location.protocol === 'https:',
isLocalhost: window.location.hostname === 'localhost',
hasPublicKeyCredential: typeof (window.PublicKeyCredential) !== 'undefined',
hideLoginForm: fromStateOr('hideLoginForm', false),
},

+ 5
- 0
core/src/views/Login.vue View File

@@ -73,6 +73,7 @@
:inverted-colors="invertedColors"
:auto-complete-allowed="autoCompleteAllowed"
:is-https="isHttps"
:is-localhost="isLocalhost"
:has-public-key-credential="hasPublicKeyCredential"
@submit="loading = true" />
<a href="#" @click.prevent="passwordlessLogin = false">
@@ -176,6 +177,10 @@ export default {
type: Boolean,
default: false,
},
isLocalhost: {
type: Boolean,
default: false,
},
hasPublicKeyCredential: {
type: Boolean,
default: false,

Loading…
Cancel
Save