iceshrimp-legacy/src/client/app/common/views/components/settings/2fa.vue

83 lines
2.1 KiB
Vue
Raw Normal View History

2018-02-12 15:48:01 +01:00
<template>
2018-02-21 17:25:57 +01:00
<div class="2fa">
2018-12-12 02:07:30 +01:00
<p style="margin-top:0;">{{ $t('intro') }}<a :href="$t('url')" 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>
2018-05-27 06:49:09 +02:00
<template v-if="$store.state.i.twoFactorEnabled">
<p>{{ $t('already-registered') }}</p>
<ui-button @click="unregister">{{ $t('unregister') }}</ui-button>
2018-02-12 15:48:01 +01:00
</template>
2018-12-29 14:10:54 +01:00
<div v-if="data && !$store.state.i.twoFactorEnabled">
2018-02-12 15:48:01 +01:00
<ol>
2019-05-13 19:50:23 +02:00
<li>{{ $t('authenticator') }}<a href="https://support.google.com/accounts/answer/1066447" rel="noopener" target="_blank">{{ $t('howtoinstall') }}</a></li>
<li>{{ $t('scan') }}<br><img :src="data.qr"></li>
<li>{{ $t('done') }}<br>
2018-12-29 14:10:54 +01:00
<ui-input v-model="token">{{ $t('token') }}</ui-input>
<ui-button primary @click="submit">{{ $t('submit') }}</ui-button>
2018-02-12 15:48:01 +01:00
</li>
</ol>
2018-12-29 14:10:54 +01:00
<ui-info>{{ $t('info') }}</ui-info>
2018-02-12 15:48:01 +01:00
</div>
</div>
</template>
<script lang="ts">
import Vue from 'vue';
import i18n from '../../../../i18n';
2018-02-12 15:48:01 +01:00
export default Vue.extend({
i18n: i18n('desktop/views/components/settings.2fa.vue'),
2018-02-12 15:48:01 +01:00
data() {
return {
data: null,
token: null
};
},
methods: {
register() {
2018-12-02 12:10:53 +01:00
this.$root.dialog({
title: this.$t('enter-password'),
2018-12-02 12:10:53 +01:00
input: {
type: 'password'
}
}).then(({ canceled, result: password }) => {
if (canceled) return;
2018-11-09 00:13:34 +01:00
this.$root.api('i/2fa/register', {
2018-02-12 15:48:01 +01:00
password: password
}).then(data => {
this.data = data;
});
});
},
unregister() {
2018-12-02 12:10:53 +01:00
this.$root.dialog({
title: this.$t('enter-password'),
2018-12-02 12:10:53 +01:00
input: {
type: 'password'
}
}).then(({ canceled, result: password }) => {
if (canceled) return;
2018-11-09 00:13:34 +01:00
this.$root.api('i/2fa/unregister', {
2018-02-12 15:48:01 +01:00
password: password
}).then(() => {
this.$notify(this.$t('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-11-09 00:13:34 +01:00
this.$root.api('i/2fa/done', {
2018-02-12 15:48:01 +01:00
token: this.token
}).then(() => {
this.$notify(this.$t('success'));
2018-05-27 06:49:09 +02:00
this.$store.state.i.twoFactorEnabled = true;
2018-02-12 15:48:01 +01:00
}).catch(() => {
this.$notify(this.$t('failed'));
2018-02-12 15:48:01 +01:00
});
}
}
});
</script>