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
126
127
128
|
<!--
- SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
- SPDX-License-Identifier: AGPL-3.0-or-later
-->
<template>
<form class="reset-password-form" @submit.prevent="submit">
<h2>{{ t('core', 'Reset password') }}</h2>
<NcTextField id="user"
:value.sync="user"
name="user"
:maxlength="255"
autocapitalize="off"
:label="t('core', 'Login or email')"
:error="userNameInputLengthIs255"
:helper-text="userInputHelperText"
required
@change="updateUsername" />
<LoginButton :loading="loading" :value="t('core', 'Reset password')" />
<NcButton type="tertiary" wide @click="$emit('abort')">
{{ t('core', 'Back to login') }}
</NcButton>
<NcNoteCard v-if="message === 'send-success'"
type="success">
{{ t('core', 'If this account exists, a password reset message has been sent to its email address. If you do not receive it, verify your email address and/or Login, check your spam/junk folders or ask your local administration for help.') }}
</NcNoteCard>
<NcNoteCard v-else-if="message === 'send-error'"
type="error">
{{ t('core', 'Couldn\'t send reset email. Please contact your administrator.') }}
</NcNoteCard>
<NcNoteCard v-else-if="message === 'reset-error'"
type="error">
{{ t('core', 'Password cannot be changed. Please contact your administrator.') }}
</NcNoteCard>
</form>
</template>
<script lang="ts">
import { generateUrl } from '@nextcloud/router'
import { defineComponent } from 'vue'
import axios from '@nextcloud/axios'
import NcButton from '@nextcloud/vue/components/NcButton'
import NcTextField from '@nextcloud/vue/components/NcTextField'
import NcNoteCard from '@nextcloud/vue/components/NcNoteCard'
import AuthMixin from '../../mixins/auth.js'
import LoginButton from './LoginButton.vue'
import logger from '../../logger.js'
export default defineComponent({
name: 'ResetPassword',
components: {
LoginButton,
NcButton,
NcNoteCard,
NcTextField,
},
mixins: [AuthMixin],
props: {
username: {
type: String,
required: true,
},
resetPasswordLink: {
type: String,
required: true,
},
},
data() {
return {
error: false,
loading: false,
message: '',
user: this.username,
}
},
watch: {
username(value) {
this.user = value
},
},
methods: {
updateUsername() {
this.$emit('update:username', this.user)
},
async submit() {
this.loading = true
this.error = false
this.message = ''
const url = generateUrl('/lostpassword/email')
try {
const { data } = await axios.post(url, { user: this.user })
if (data.status !== 'success') {
throw new Error(`got status ${data.status}`)
}
this.message = 'send-success'
} catch (error) {
logger.error('could not send reset email request', { error })
this.error = true
this.message = 'send-error'
} finally {
this.loading = false
}
},
},
})
</script>
<style lang="scss" scoped>
.reset-password-form {
display: flex;
flex-direction: column;
gap: .5rem;
width: 100%;
}
</style>
|