2018-02-12 15:48:01 +01:00
|
|
|
<template>
|
2018-02-21 17:25:57 +01:00
|
|
|
<div class="2fa">
|
2018-04-14 18:04:40 +02:00
|
|
|
<p>%i18n:@intro%<a href="%i18n:@url%" target="_blank">%i18n:@detail%</a></p>
|
|
|
|
<div class="ui info warn"><p>%fa:exclamation-triangle%%i18n:@caution%</p></div>
|
2018-10-18 23:18:33 +02:00
|
|
|
<p v-if="!data && !$store.state.i.twoFactorEnabled"><ui-button @click="register">%i18n:@register%</ui-button></p>
|
2018-05-27 06:49:09 +02:00
|
|
|
<template v-if="$store.state.i.twoFactorEnabled">
|
2018-04-14 18:04:40 +02:00
|
|
|
<p>%i18n:@already-registered%</p>
|
2018-10-18 23:18:33 +02:00
|
|
|
<ui-button @click="unregister">%i18n:@unregister%</ui-button>
|
2018-02-12 15:48:01 +01:00
|
|
|
</template>
|
|
|
|
<div v-if="data">
|
|
|
|
<ol>
|
2018-04-14 18:04:40 +02:00
|
|
|
<li>%i18n:@authenticator% <a href="https://support.google.com/accounts/answer/1066447" target="_blank">%i18n:@howtoinstall%</a></li>
|
|
|
|
<li>%i18n:@scan%<br><img :src="data.qr"></li>
|
|
|
|
<li>%i18n:@done%<br>
|
2018-02-12 15:48:01 +01:00
|
|
|
<input type="number" v-model="token" class="ui">
|
2018-10-18 23:18:33 +02:00
|
|
|
<ui-button primary @click="submit">%i18n:@submit%</ui-button>
|
2018-02-12 15:48:01 +01:00
|
|
|
</li>
|
|
|
|
</ol>
|
2018-04-14 18:04:40 +02:00
|
|
|
<div class="ui info"><p>%fa:info-circle%%i18n:@info%</p></div>
|
2018-02-12 15:48:01 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
data: null,
|
|
|
|
token: null
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
register() {
|
2018-02-21 17:25:57 +01:00
|
|
|
(this as any).apis.input({
|
2018-05-20 13:26:38 +02:00
|
|
|
title: '%i18n:@enter-password%',
|
2018-02-21 17:25:57 +01:00
|
|
|
type: 'password'
|
|
|
|
}).then(password => {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('i/2fa/register', {
|
2018-02-12 15:48:01 +01:00
|
|
|
password: password
|
|
|
|
}).then(data => {
|
|
|
|
this.data = data;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
unregister() {
|
2018-02-21 17:25:57 +01:00
|
|
|
(this as any).apis.input({
|
2018-05-20 13:26:38 +02:00
|
|
|
title: '%i18n:@enter-password%',
|
2018-02-21 17:25:57 +01:00
|
|
|
type: 'password'
|
|
|
|
}).then(password => {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('i/2fa/unregister', {
|
2018-02-12 15:48:01 +01:00
|
|
|
password: password
|
|
|
|
}).then(() => {
|
2018-05-20 13:26:38 +02:00
|
|
|
(this as any).apis.notify('%i18n:@unregistered%');
|
2018-05-27 06:49:09 +02:00
|
|
|
this.$store.state.i.twoFactorEnabled = false;
|
2018-02-12 15:48:01 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
submit() {
|
2018-02-18 04:35:18 +01:00
|
|
|
(this as any).api('i/2fa/done', {
|
2018-02-12 15:48:01 +01:00
|
|
|
token: this.token
|
|
|
|
}).then(() => {
|
2018-05-20 13:26:38 +02:00
|
|
|
(this as any).apis.notify('%i18n:@success%');
|
2018-05-27 06:49:09 +02:00
|
|
|
this.$store.state.i.twoFactorEnabled = true;
|
2018-02-12 15:48:01 +01:00
|
|
|
}).catch(() => {
|
2018-05-20 13:26:38 +02:00
|
|
|
(this as any).apis.notify('%i18n:@failed%');
|
2018-02-12 15:48:01 +01:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-02-21 17:25:57 +01:00
|
|
|
.2fa
|
2018-02-12 15:48:01 +01:00
|
|
|
color #4a535a
|
|
|
|
|
|
|
|
</style>
|