83 lines
2.1 KiB
Vue
83 lines
2.1 KiB
Vue
<template>
|
|
<div class="2fa">
|
|
<p style="margin-top:0;">{{ $t('intro') }}<a :href="$t('href')" target="_blank">{{ $t('detail') }}</a></p>
|
|
<ui-info warn>{{ $t('caution') }}</ui-info>
|
|
<p v-if="!data && !$store.state.i.twoFactorEnabled"><ui-button @click="register">{{ $t('register') }}</ui-button></p>
|
|
<template v-if="$store.state.i.twoFactorEnabled">
|
|
<p>{{ $t('already-registered') }}</p>
|
|
<ui-button @click="unregister">{{ $t('unregister') }}</ui-button>
|
|
</template>
|
|
<div v-if="data">
|
|
<ol>
|
|
<li>{{ $t('authenticator% <a href="https://support.google.com/accounts/answer/1066447" target="_blank">%i18n:@howtoinstall') }}</a></li>
|
|
<li>{{ $t('scan') }}<br><img :src="data.qr"></li>
|
|
<li>{{ $t('done') }}<br>
|
|
<input type="number" v-model="token" class="ui">
|
|
<ui-button primary @click="submit">{{ $t('submit') }}</ui-button>
|
|
</li>
|
|
</ol>
|
|
<div class="ui info"><p><fa icon="info-circle"/>{{ $t('info') }}</p></div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../../i18n';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n('desktop/views/components/settings.2fa.vue'),
|
|
data() {
|
|
return {
|
|
data: null,
|
|
token: null
|
|
};
|
|
},
|
|
methods: {
|
|
register() {
|
|
this.$root.dialog({
|
|
title: this.$t('enter-password'),
|
|
input: {
|
|
type: 'password'
|
|
}
|
|
}).then(({ canceled, result: password }) => {
|
|
if (canceled) return;
|
|
this.$root.api('i/2fa/register', {
|
|
password: password
|
|
}).then(data => {
|
|
this.data = data;
|
|
});
|
|
});
|
|
},
|
|
|
|
unregister() {
|
|
this.$root.dialog({
|
|
title: this.$t('enter-password'),
|
|
input: {
|
|
type: 'password'
|
|
}
|
|
}).then(({ canceled, result: password }) => {
|
|
if (canceled) return;
|
|
this.$root.api('i/2fa/unregister', {
|
|
password: password
|
|
}).then(() => {
|
|
this.$notify(this.$t('unregistered'));
|
|
this.$store.state.i.twoFactorEnabled = false;
|
|
});
|
|
});
|
|
},
|
|
|
|
submit() {
|
|
this.$root.api('i/2fa/done', {
|
|
token: this.token
|
|
}).then(() => {
|
|
this.$notify(this.$t('success'));
|
|
this.$store.state.i.twoFactorEnabled = true;
|
|
}).catch(() => {
|
|
this.$notify(this.$t('failed'));
|
|
});
|
|
}
|
|
}
|
|
});
|
|
</script>
|