-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Expand file tree
/
Copy pathWebAuthnSection.vue
More file actions
125 lines (103 loc) · 2.79 KB
/
WebAuthnSection.vue
File metadata and controls
125 lines (103 loc) · 2.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!--
- SPDX-FileCopyrightText: 2020 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<div id="security-webauthn" class="section">
<h2>{{ t('settings', 'Passwordless Authentication') }}</h2>
<p class="settings-hint hidden-when-empty">
{{ t('settings', 'Set up your account for passwordless authentication following the FIDO2 standard.') }}
</p>
<NcNoteCard v-if="devices.length === 0" type="info">
{{ t('settings', 'No devices configured.') }}
</NcNoteCard>
<template v-else>
<h3 id="security-webauthn__active-devices">
{{ t('settings', 'The following devices are configured for your account:') }}
</h3>
<ul aria-labelledby="security-webauthn__active-devices" class="security-webauthn__device-list">
<WebAuthnDevice
v-for="device in sortedDevices"
:key="device.id"
:name="device.name"
@delete="deleteDevice(device.id)" />
</ul>
</template>
<NcNoteCard v-if="!supportsWebauthn" type="warning">
{{ t('settings', 'Your browser does not support WebAuthn.') }}
</NcNoteCard>
<WebAuthnAddDevice
v-if="supportsWebauthn"
:is-https="isHttps"
:is-localhost="isLocalhost"
@added="deviceAdded" />
</div>
</template>
<script>
/* eslint vue/multi-word-component-names: "warn" */
import { confirmPassword } from '@nextcloud/password-confirmation'
import { browserSupportsWebAuthn } from '@simplewebauthn/browser'
import sortBy from 'lodash/fp/sortBy.js'
import NcNoteCard from '@nextcloud/vue/components/NcNoteCard'
import WebAuthnAddDevice from './WebAuthnAddDevice.vue'
import WebAuthnDevice from './WebAuthnDevice.vue'
import logger from '../../logger.ts'
import { removeRegistration } from '../../service/WebAuthnRegistrationSerice.js'
const sortByName = sortBy('name')
export default {
name: 'WebAuthnSection',
components: {
WebAuthnAddDevice,
WebAuthnDevice,
NcNoteCard,
},
props: {
initialDevices: {
type: Array,
required: true,
},
isHttps: {
type: Boolean,
default: false,
},
isLocalhost: {
type: Boolean,
default: false,
},
},
setup() {
// Non reactive properties
return {
supportsWebauthn: browserSupportsWebAuthn(),
}
},
data() {
return {
devices: this.initialDevices,
}
},
computed: {
sortedDevices() {
return sortByName(this.devices)
},
},
methods: {
deviceAdded(device) {
logger.debug(`adding new device to the list ${device.id}`)
this.devices.push(device)
},
async deleteDevice(id) {
logger.info(`deleting webauthn device ${id}`)
await confirmPassword()
await removeRegistration(id)
this.devices = this.devices.filter((d) => d.id !== id)
logger.info(`webauthn device ${id} removed successfully`)
},
},
}
</script>
<style scoped>
.security-webauthn__device-list {
margin-block: 12px 18px;
}
</style>