2018-10-26 13:20:39 +00:00
|
|
|
import oauthApi from '../../services/new_api/oauth.js'
|
2016-10-27 16:02:41 +00:00
|
|
|
const LoginForm = {
|
|
|
|
data: () => ({
|
2017-03-08 17:28:41 +00:00
|
|
|
user: {},
|
|
|
|
authError: false
|
2016-10-27 16:02:41 +00:00
|
|
|
}),
|
|
|
|
computed: {
|
2018-11-07 15:56:12 +00:00
|
|
|
loginMethod () { return this.$store.state.instance.loginMethod },
|
2017-06-20 07:37:51 +00:00
|
|
|
loggingIn () { return this.$store.state.users.loggingIn },
|
2018-09-09 18:21:23 +00:00
|
|
|
registrationOpen () { return this.$store.state.instance.registrationOpen }
|
2016-10-27 16:02:41 +00:00
|
|
|
},
|
|
|
|
methods: {
|
2018-10-26 13:16:23 +00:00
|
|
|
oAuthLogin () {
|
|
|
|
oauthApi.login({
|
|
|
|
oauth: this.$store.state.oauth,
|
|
|
|
instance: this.$store.state.instance.server,
|
|
|
|
commit: this.$store.commit
|
2018-10-26 13:20:39 +00:00
|
|
|
})
|
2018-10-26 13:16:23 +00:00
|
|
|
},
|
2016-10-27 16:02:41 +00:00
|
|
|
submit () {
|
2018-11-07 15:56:12 +00:00
|
|
|
const data = {
|
|
|
|
oauth: this.$store.state.oauth,
|
|
|
|
instance: this.$store.state.instance.server
|
|
|
|
}
|
2019-01-28 15:43:51 +00:00
|
|
|
this.clearError()
|
2018-11-07 15:56:12 +00:00
|
|
|
oauthApi.getOrCreateApp(data).then((app) => {
|
|
|
|
oauthApi.getTokenWithCredentials(
|
|
|
|
{
|
|
|
|
app,
|
|
|
|
instance: data.instance,
|
|
|
|
username: this.user.username,
|
2019-01-28 15:48:00 +00:00
|
|
|
password: this.user.password
|
|
|
|
}
|
|
|
|
).then((result) => {
|
|
|
|
if (result.error) {
|
|
|
|
this.authError = result.error
|
|
|
|
this.user.password = ''
|
|
|
|
return
|
|
|
|
}
|
|
|
|
this.$store.commit('setToken', result.access_token)
|
|
|
|
this.$store.dispatch('loginUser', result.access_token)
|
|
|
|
this.$router.push({name: 'friends'})
|
|
|
|
})
|
2018-11-07 15:56:12 +00:00
|
|
|
})
|
2019-01-28 15:43:51 +00:00
|
|
|
},
|
|
|
|
clearError () {
|
|
|
|
this.authError = false
|
2016-10-27 16:02:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default LoginForm
|