mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 20:11:58 +02:00
136 lines
4.5 KiB
Vue
136 lines
4.5 KiB
Vue
<template>
|
|
<form class="ui form" @submit.prevent="submit()">
|
|
<div v-if="error" role="alert" class="ui negative message">
|
|
<h4 class="header"><translate translate-context="Content/Login/Error message.Title">We cannot log you in</translate></h4>
|
|
<ul class="list">
|
|
<li v-if="error == 'invalid_credentials' && $store.state.instance.settings.moderation.signup_approval_enabled.value">
|
|
<translate translate-context="Content/Login/Error message.List item/Call to action">If you signed-up recently, you may need to wait before our moderation team review your account, or verify your email.</translate>
|
|
</li>
|
|
<li v-else-if="error == 'invalid_credentials'">
|
|
<translate translate-context="Content/Login/Error message.List item/Call to action">Please double-check your username/password couple is correct and ensure you verified your email.</translate>
|
|
</li>
|
|
<li v-else>{{ error }}</li>
|
|
</ul>
|
|
</div>
|
|
<template v-if="$store.getters['instance/appDomain'] === $store.getters['instance/domain']" >
|
|
<div class="field">
|
|
<label>
|
|
<translate translate-context="Content/Login/Input.Label/Noun">Username or email</translate>
|
|
<template v-if="showSignup">
|
|
|
|
|
<router-link :to="{path: '/signup'}">
|
|
<translate translate-context="*/Signup/Link/Verb">Create an account</translate>
|
|
</router-link>
|
|
</template>
|
|
</label>
|
|
<input
|
|
ref="username"
|
|
tabindex="1"
|
|
required
|
|
name="username"
|
|
type="text"
|
|
autofocus
|
|
:placeholder="labels.usernamePlaceholder"
|
|
v-model="credentials.username"
|
|
>
|
|
</div>
|
|
<div class="field">
|
|
<label>
|
|
<translate translate-context="*/*/*">Password</translate> |
|
|
<router-link :to="{name: 'auth.password-reset', query: {email: credentials.username}}">
|
|
<translate translate-context="*/Login/*/Verb">Reset your password</translate>
|
|
</router-link>
|
|
</label>
|
|
<password-input :index="2" required v-model="credentials.password" />
|
|
|
|
</div>
|
|
</template>
|
|
<template v-else>
|
|
<p>
|
|
<translate translate-context="Contant/Auth/Paragraph" :translate-params="{domain: $store.getters['instance/domain']}">You will be redirected to %{ domain } to authenticate.</translate>
|
|
</p>
|
|
</template>
|
|
<button tabindex="3" :class="['ui', {'loading': isLoading}, 'right', 'floated', buttonClasses, 'button']" type="submit">
|
|
<translate translate-context="*/Login/*/Verb">Login</translate>
|
|
</button>
|
|
</form>
|
|
</template>
|
|
|
|
<script>
|
|
import PasswordInput from "@/components/forms/PasswordInput"
|
|
|
|
export default {
|
|
props: {
|
|
next: { type: String, default: "/library" },
|
|
buttonClasses: { type: String, default: "success" },
|
|
showSignup: { type: Boolean, default: true},
|
|
},
|
|
components: {
|
|
PasswordInput
|
|
},
|
|
data() {
|
|
return {
|
|
// We need to initialize the component with any
|
|
// properties that will be used in it
|
|
credentials: {
|
|
username: "",
|
|
password: ""
|
|
},
|
|
error: "",
|
|
isLoading: false
|
|
}
|
|
},
|
|
created () {
|
|
if (this.$store.state.auth.authenticated) {
|
|
this.$router.push(this.next)
|
|
}
|
|
},
|
|
mounted() {
|
|
if (this.$refs.username) {
|
|
this.$refs.username.focus()
|
|
}
|
|
},
|
|
computed: {
|
|
labels() {
|
|
let usernamePlaceholder = this.$pgettext('Content/Login/Input.Placeholder', "Enter your username or email")
|
|
return {
|
|
usernamePlaceholder,
|
|
}
|
|
}
|
|
},
|
|
methods: {
|
|
async submit() {
|
|
if (this.$store.getters['instance/appDomain'] === this.$store.getters['instance/domain']) {
|
|
return await this.submitSession()
|
|
} else {
|
|
this.isLoading = true
|
|
await this.$store.dispatch('auth/oauthLogin', this.next)
|
|
}
|
|
},
|
|
async submitSession() {
|
|
var self = this
|
|
self.isLoading = true
|
|
this.error = ""
|
|
var credentials = {
|
|
username: this.credentials.username,
|
|
password: this.credentials.password
|
|
}
|
|
this.$store
|
|
.dispatch("auth/login", {
|
|
credentials,
|
|
next: this.next,
|
|
onError: error => {
|
|
if (error.response.status === 400) {
|
|
self.error = "invalid_credentials"
|
|
} else {
|
|
self.error = error.backendErrors[0]
|
|
}
|
|
}
|
|
})
|
|
.then(e => {
|
|
self.isLoading = false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|