2FAuth/resources/js/views/twofaccounts/Edit.vue

260 lines
11 KiB
Vue
Raw Normal View History

<template>
2020-01-28 15:33:33 +01:00
<form-wrapper :title="$t('twofaccounts.forms.edit_account')">
<form @submit.prevent="updateAccount" @keydown="form.onKeydown($event)">
<!-- service -->
<form-field :form="form" fieldName="service" inputType="text" :label="$t('twofaccounts.service')" :placeholder="$t('twofaccounts.forms.service.placeholder')" autofocus />
<!-- account -->
<form-field :form="form" fieldName="account" inputType="text" :label="$t('twofaccounts.account')" :placeholder="$t('twofaccounts.forms.account.placeholder')" />
<!-- icon -->
2020-01-28 15:33:33 +01:00
<div class="field">
<label class="label">{{ $t('twofaccounts.icon') }}</label>
<div class="file is-dark">
<label class="file-label">
<input class="file-input" type="file" accept="image/*" v-on:change="uploadIcon" ref="iconInput">
<span class="file-cta">
<span class="file-icon">
<font-awesome-icon :icon="['fas', 'image']" />
</span>
<span class="file-label">{{ $t('twofaccounts.forms.choose_image') }}</span>
</span>
</label>
<span class="tag is-black is-large" v-if="tempIcon">
<img class="icon-preview" :src="'/storage/icons/' + tempIcon" >
2020-01-28 15:33:33 +01:00
<button class="delete is-small" @click.prevent="deleteIcon"></button>
</span>
</div>
</div>
<field-error :form="form" field="icon" class="help-for-file" />
<!-- otp type -->
<form-toggle class="has-uppercased-button" :isDisabled="true" :form="form" :choices="otpTypes" fieldName="otpType" :label="$t('twofaccounts.forms.otp_type.label')" :help="$t('twofaccounts.forms.otp_type.help')" :hasOffset="true" />
<div v-if="form.otpType">
<!-- secret -->
<label class="label" v-html="$t('twofaccounts.forms.secret.label')"></label>
<div class="field has-addons">
<p class="control">
<span class="select">
<select v-model="form.secretIsBase32Encoded">
<option v-for="format in secretFormats" :value="format.value">{{ format.text }}</option>
</select>
</span>
</p>
<p class="control is-expanded">
<input class="input" type="text" v-model="form.secret">
</p>
2020-01-28 15:33:33 +01:00
</div>
<div class="field">
<field-error :form="form" field="secret" class="help-for-file" />
<p class="help" v-html="$t('twofaccounts.forms.secret.help')"></p>
2020-01-28 15:33:33 +01:00
</div>
<h2 class="title is-4 mt-5 mb-2">{{ $t('commons.options') }}</h2>
<p class="help mb-4">
{{ $t('twofaccounts.forms.options_help') }}
</p>
<!-- digits -->
<form-toggle :form="form" :choices="digitsChoices" fieldName="digits" :label="$t('twofaccounts.forms.digits.label')" :help="$t('twofaccounts.forms.digits.help')" />
<!-- algorithm -->
<form-toggle :form="form" :choices="algorithms" fieldName="algorithm" :label="$t('twofaccounts.forms.algorithm.label')" :help="$t('twofaccounts.forms.algorithm.help')" />
<!-- TOTP period -->
<form-field v-if="form.otpType === 'totp'" :form="form" fieldName="totpPeriod" inputType="text" :label="$t('twofaccounts.forms.totpPeriod.label')" :placeholder="$t('twofaccounts.forms.totpPeriod.placeholder')" :help="$t('twofaccounts.forms.totpPeriod.help')" />
<!-- HOTP counter -->
<div v-if="form.otpType === 'hotp'">
<div class="field" style="margin-bottom: 0.5rem;">
<label class="label">{{ $t('twofaccounts.forms.hotpCounter.label') }}</label>
</div>
<div class="field has-addons">
<div class="control is-expanded">
<input class="input" type="text" placeholder="" v-model="form.hotpCounter" :disabled="hotpCounterIsLocked" />
</div>
<div class="control" v-if="hotpCounterIsLocked">
<a class="button is-dark field-lock" @click="hotpCounterIsLocked = false" :title="$t('twofaccounts.forms.unlock.title')">
<span class="icon">
<font-awesome-icon :icon="['fas', 'lock']" />
</span>
</a>
</div>
<div class="control" v-else>
<a class="button is-dark field-unlock" @click="hotpCounterIsLocked = true" :title="$t('twofaccounts.forms.lock.title')">
<span class="icon has-text-danger">
<font-awesome-icon :icon="['fas', 'lock-open']" />
</span>
</a>
</div>
</div>
<field-error :form="form" field="uri" class="help-for-file" />
<p class="help" v-html="$t('twofaccounts.forms.hotpCounter.help_lock')"></p>
</div>
</div>
<!-- form buttons -->
<vue-footer :showButtons="true">
<p class="control">
<v-button :isLoading="form.isBusy" class="is-rounded" >{{ $t('commons.save') }}</v-button>
</p>
<p class="control" v-if="form.otpType && form.secret">
<button type="button" class="button is-success is-rounded" @click="previewAccount">{{ $t('twofaccounts.forms.test') }}</button>
</p>
<p class="control">
<button type="button" class="button is-text is-rounded" @click="cancelCreation">{{ $t('commons.cancel') }}</button>
</p>
</vue-footer>
2020-01-28 15:33:33 +01:00
</form>
<!-- modal -->
<modal v-model="ShowTwofaccountInModal">
<token-displayer ref="AdvancedFormTokenDisplayer" v-bind="form.data()" @increment-hotp="incrementHotp">
</token-displayer>
</modal>
2020-01-28 15:33:33 +01:00
</form-wrapper>
</template>
<script>
2020-01-20 22:51:57 +01:00
import Modal from '../../components/Modal'
2020-01-20 22:51:57 +01:00
import Form from './../../components/Form'
import TokenDisplayer from '../../components/TokenDisplayer'
2020-01-20 22:51:57 +01:00
export default {
data() {
return {
ShowTwofaccountInModal : false,
hotpCounterIsLocked: true,
twofaccountExists: false,
tempIcon: '',
2020-01-20 22:51:57 +01:00
form: new Form({
service: '',
account: '',
otpType: '',
2020-01-20 22:51:57 +01:00
uri: '',
icon: '',
secret: '',
secretIsBase32Encoded: null,
algorithm: '',
digits: null,
hotpCounter: null,
totpPeriod: null,
imageLink: '',
}),
otpTypes: [
{ text: 'TOTP', value: 'totp' },
{ text: 'HOTP', value: 'hotp' },
],
digitsChoices: [
{ text: 6, value: 6 },
{ text: 7, value: 7 },
{ text: 8, value: 8 },
{ text: 9, value: 9 },
{ text: 10, value: 10 },
],
secretFormats: [
{ text: this.$t('twofaccounts.forms.plain_text'), value: 0 },
{ text: 'Base32', value: 1 }
],
algorithms: [
{ text: 'sha1', value: 'sha1' },
{ text: 'sha256', value: 'sha256' },
{ text: 'sha512', value: 'sha512' },
{ text: 'md5', value: 'md5' },
],
}
},
mounted: function () {
// stop TOTP generation on modal close
this.$on('modalClose', function() {
this.$refs.AdvancedFormTokenDisplayer.stopLoop()
});
},
created: function() {
this.getAccount();
},
components: {
Modal,
TokenDisplayer,
},
methods: {
async getAccount () {
2020-01-16 22:21:05 +01:00
const { data } = await this.axios.get('/api/twofaccounts/' + this.$route.params.twofaccountId + '/withSensitive')
2020-01-08 23:22:51 +01:00
this.form.fill(data)
this.form.secretIsBase32Encoded = 1
this.form.uri = '' // we don't want the uri because the user can change any otp parameter in the form
this.twofaccountExists = true
2020-01-19 22:29:36 +01:00
// set account icon as temp icon
this.tempIcon = this.form.icon
},
async updateAccount() {
2020-01-08 23:22:51 +01:00
// Set new icon and delete old one
2020-01-20 22:51:57 +01:00
if( this.tempIcon !== this.form.icon ) {
2020-01-08 23:22:51 +01:00
let oldIcon = ''
2020-01-20 22:51:57 +01:00
oldIcon = this.form.icon
2020-01-08 23:22:51 +01:00
2020-01-20 22:51:57 +01:00
this.form.icon = this.tempIcon
2020-01-08 23:22:51 +01:00
this.tempIcon = oldIcon
this.deleteIcon()
}
2020-01-27 14:55:30 +01:00
await this.form.put('/api/twofaccounts/' + this.$route.params.twofaccountId)
if( this.form.errors.any() === false ) {
this.$router.push({name: 'accounts', params: { InitialEditMode: true, toRefresh: true }})
2020-01-27 14:55:30 +01:00
}
2020-01-19 22:29:36 +01:00
},
2020-01-05 23:21:28 +01:00
previewAccount() {
this.$refs.AdvancedFormTokenDisplayer.getToken()
},
2020-01-08 23:22:51 +01:00
cancelCreation: function() {
// clean new temp icon
2020-01-16 22:21:05 +01:00
this.deleteIcon()
2020-01-08 23:22:51 +01:00
this.$router.push({name: 'accounts', params: { InitialEditMode: true }});
},
2020-01-27 14:55:30 +01:00
async uploadIcon(event) {
2020-01-05 23:21:28 +01:00
2020-01-08 23:22:51 +01:00
// clean possible tempIcon but keep original one
2020-01-16 22:21:05 +01:00
this.deleteIcon()
2020-01-05 23:21:28 +01:00
let imgdata = new FormData();
2020-01-20 22:51:57 +01:00
imgdata.append('icon', this.$refs.iconInput.files[0]);
2020-01-05 23:21:28 +01:00
2020-01-27 14:55:30 +01:00
const { data } = await this.form.upload('/api/icon/upload', imgdata)
this.tempIcon = data;
2020-01-16 22:21:05 +01:00
2020-01-08 16:14:25 +01:00
},
2020-01-19 22:29:36 +01:00
deleteIcon(event) {
2020-01-08 16:14:25 +01:00
2020-01-20 22:51:57 +01:00
if( this.tempIcon && this.tempIcon !== this.form.icon ) {
this.axios.delete('/api/icon/delete/' + this.tempIcon)
2020-01-08 23:22:51 +01:00
}
this.tempIcon = ''
},
2020-01-08 16:14:25 +01:00
incrementHotp(payload) {
// The quick form or the preview feature has incremented the HOTP counter so we get the new value from
// the component.
// This could desynchronized the HOTP verification server and our local counter if the user never verified the HOTP but this
// is acceptable (and HOTP counter can be edited by the way)
this.form.hotpCounter = payload.nextHotpCounter
this.form.uri = payload.nextUri
},
},
}
</script>