Skip to content
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

Allow users to change their passwords #568

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
/share/container/health_check.js
/share/container/health_check.js
../torrust-index-api-lib
../torrust-index-types-lib
3 changes: 3 additions & 0 deletions components/navigation/NavigationBar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@
<li v-if="user.admin" data-cy="admin-settings-link"><NuxtLink to="/admin/settings/backend">
Admin Settings
</NuxtLink></li>
<li data-cy="change-password-link"><NuxtLink :to="{ name: 'user-username', params: { username: user.username } }">
Change password
</NuxtLink></li>
<li><a data-cy="help" href="https://torrust.github.io/torrust-index-gui-user-guide/" target="_blank">Help</a></li>
<li><a data-cy="logout-link" @click="logoutUser()">Logout {{ user.username }}</a></li>
</ul>
Expand Down
116 changes: 116 additions & 0 deletions components/user/ChangePasswordForm.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,116 @@
<template>
<div class="px-2 lg:px-0">
<div class="w-auto max-w-md px-6 py-6 mx-auto text-neutral-content/50 rounded-2xl">
<h2 class="mb-4 text-2xl font-semibold text-center text-neutral-content">
Change Password
</h2>
<form
class="space-y-3"
@submit.prevent="submit"
>
<FormInputText
v-model="form.current_password"
:type="revealPasswords ? 'text' : 'password'"
label="Current password"
name="current_password"
data-cy="change-password-form-current-password"
required
/>
<FormInputText
v-model="form.password"
:type="revealPasswords ? 'text' : 'password'"
label="New password"
name="password"
data-cy="change-password-form-password"
required
/>
<FormInputText
v-model="form.confirm_password"
:type="revealPasswords ? 'text' : 'password'"
label="Confirm new password"
name="confirm_password"
data-cy="change-password-form-confirm-password"
required
/>
<div class="form-control">
<label class="cursor-pointer label">
<span class="label-text">Reveal passwords</span>
<input type="checkbox" class="toggle" @click="toggleState">
</label>
</div>
<button type="submit" name="submit" data-cy="change-password-form-submit" class="w-full btn btn-primary">
Update
</button>
</form>
</div>
</div>
</template>

<script setup lang="ts">
import { type Ref } from "vue";
import { notify } from "notiwind-ts";
import { ref, useRestApi, useSettings } from "#imports";

const props = defineProps({
username: {
type: String,
required: true
}
});

const revealPasswords: Ref<Boolean> = ref(false);

type Form = {
current_password: string,
password: string,
confirm_password: string
}

const rest = useRestApi();
const settings = useSettings();

const form: Ref<Form> = ref({
current_password: "",
password: "",
confirm_password: ""
});

function toggleState () {
if (revealPasswords.value) {
revealPasswords.value = false;
} else {
revealPasswords.value = true;
}
}

function submit () {
changePassword(props.username);
}

function changePassword (username: string) {
rest.value.user.changePassword({
current_password: form.value.current_password,
password: form.value.password,
confirm_password: form.value.confirm_password
}, username)
.then(() => {
navigateTo("/torrents", { replace: true });
notify({
group: "success",
title: "Success",
text: "Your password was changed!"
}, 4000); // 4s
})
.catch((err) => {
notify({
group: "error",
title: "Error",
text: `Password change failed. ${err.message}.`
}, 10000);
});
}
</script>

<style scoped>

</style>
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"dompurify": "^3.1.4",
"marked": "^12.0.2",
"notiwind-ts": "^2.0.2",
"torrust-index-api-lib": "^1.0.0-alpha.6",
"torrust-index-api-lib": "^1.0.0-alpha.7",
"torrust-index-types-lib": "^1.0.0-alpha.5",
"uuid": "^9.0.1"
}
Expand Down
15 changes: 15 additions & 0 deletions pages/user/[username].vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<template>
<ChangePasswordForm :username="user.username" />
</template>

<script setup lang="ts">
import ChangePasswordForm from "~/components/user/ChangePasswordForm.vue";
import { useUser } from "#imports";

const user = useUser();

</script>

<style scoped>

</style>