pleroma-fe/src/components/login_form/login_form.js

76 lines
2.1 KiB
JavaScript
Raw Normal View History

import { mapState, mapGetters, mapActions, mapMutations } from 'vuex'
2018-10-26 15:20:39 +02:00
import oauthApi from '../../services/new_api/oauth.js'
2016-10-27 18:02:41 +02:00
const LoginForm = {
data: () => ({
user: {},
error: false
2016-10-27 18:02:41 +02:00
}),
computed: {
isPasswordAuth () { return this.requiredPassword },
isTokenAuth () { return this.requiredToken },
...mapState({
registrationOpen: state => state.instance.registrationOpen,
instance: state => state.instance,
loggingIn: state => state.users.loggingIn,
oauth: state => state.oauth
}),
...mapGetters(
'authFlow', ['requiredPassword', 'requiredToken', 'requiredMFA']
)
2016-10-27 18:02:41 +02:00
},
methods: {
...mapMutations('authFlow', ['requireMFA']),
...mapActions({ login: 'authFlow/login' }),
submit () {
this.isTokenMethod ? this.submitToken() : this.submitPassword()
},
submitToken () {
2018-10-26 15:16:23 +02:00
oauthApi.login({
oauth: this.oauth,
instance: this.instance.server,
2018-10-26 15:16:23 +02:00
commit: this.$store.commit
2018-10-26 15:20:39 +02:00
})
2018-10-26 15:16:23 +02:00
},
submitPassword () {
2018-11-07 16:56:12 +01:00
const data = {
oauth: this.oauth,
instance: this.instance.server
2018-11-07 16:56:12 +01:00
}
this.error = false
2018-11-07 16:56:12 +01:00
oauthApi.getOrCreateApp(data).then((app) => {
oauthApi.getTokenWithCredentials(
{
app,
instance: data.instance,
username: this.user.username,
2019-01-28 16:48:00 +01:00
password: this.user.password
}
).then((result) => {
2019-01-28 16:48:00 +01:00
if (result.error) {
if (result.error === 'mfa_required') {
this.requireMFA({app: app, settings: result})
} else {
this.error = result.error
this.focusOnPasswordInput()
}
2019-01-28 16:48:00 +01:00
return
}
this.login(result).then(() => {
2019-04-09 18:19:48 +02:00
this.$router.push({name: 'friends'})
})
2019-01-28 16:48:00 +01:00
})
2018-11-07 16:56:12 +01:00
})
},
clearError () { this.error = false },
focusOnPasswordInput () {
let passwordInput = this.$refs.passwordInput
passwordInput.focus()
passwordInput.setSelectionRange(0, passwordInput.value.length)
2016-10-27 18:02:41 +02:00
}
}
}
export default LoginForm