2019-12-21 23:23:44 +01:00
|
|
|
<template>
|
2020-02-04 17:06:11 +01:00
|
|
|
<form @submit.prevent="createAccount" @keydown="form.onKeydown($event)" v-if="isQuickForm">
|
|
|
|
<div class="modal modal-otp is-active">
|
|
|
|
<div class="modal-background"></div>
|
|
|
|
<div class="modal-content has-text-centered">
|
|
|
|
<twofaccount-show
|
|
|
|
:service="form.service"
|
|
|
|
:account="form.account"
|
|
|
|
:uri="form.uri"
|
|
|
|
:type="form.type">
|
|
|
|
</twofaccount-show>
|
|
|
|
<div class="field is-grouped is-grouped-centered">
|
|
|
|
<div class="control">
|
|
|
|
<v-button :isLoading="form.isBusy" >{{ $t('twofaccounts.forms.save') }}</v-button>
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button class="button is-text" @click="cancelCreation">{{ $t('commons.cancel') }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
<form-wrapper :title="$t('twofaccounts.forms.new_account')" v-else>
|
2020-01-28 15:33:33 +01:00
|
|
|
<form @submit.prevent="createAccount" @keydown="form.onKeydown($event)">
|
|
|
|
<div class="field">
|
|
|
|
<div class="file is-dark is-boxed">
|
|
|
|
<label class="file-label" :title="$t('twofaccounts.forms.use_qrcode.title')">
|
|
|
|
<input class="file-input" type="file" accept="image/*" v-on:change="uploadQrcode" ref="qrcodeInput">
|
|
|
|
<span class="file-cta">
|
|
|
|
<span class="file-icon">
|
|
|
|
<font-awesome-icon :icon="['fas', 'qrcode']" size="lg" />
|
2020-01-08 14:56:31 +01:00
|
|
|
</span>
|
2020-01-28 15:33:33 +01:00
|
|
|
<span class="file-label">{{ $t('twofaccounts.forms.use_qrcode.val') }}</span>
|
|
|
|
</span>
|
|
|
|
</label>
|
|
|
|
</div>
|
2020-01-06 17:00:56 +01:00
|
|
|
</div>
|
2020-01-28 15:33:33 +01:00
|
|
|
<field-error :form="form" field="qrcode" class="help-for-file" />
|
|
|
|
<div class="field">
|
|
|
|
<label class="label">{{ $t('twofaccounts.service') }}</label>
|
|
|
|
<div class="control">
|
|
|
|
<input class="input" type="text" :placeholder="$t('twofaccounts.forms.service.placeholder')" v-model="form.service" autofocus />
|
|
|
|
</div>
|
|
|
|
<field-error :form="form" field="service" />
|
|
|
|
</div>
|
|
|
|
<div class="field">
|
|
|
|
<label class="label">{{ $t('twofaccounts.account') }}</label>
|
|
|
|
<div class="control">
|
|
|
|
<input class="input" type="text" :placeholder="$t('twofaccounts.forms.account.placeholder')" v-model="form.account" />
|
|
|
|
</div>
|
|
|
|
<field-error :form="form" field="account" />
|
|
|
|
</div>
|
|
|
|
<div class="field" style="margin-bottom: 0.5rem;">
|
|
|
|
<label class="label">{{ $t('twofaccounts.forms.totp_uri') }}</label>
|
|
|
|
</div>
|
|
|
|
<div class="field has-addons">
|
|
|
|
<div class="control is-expanded">
|
|
|
|
<input class="input" type="text" placeholder="otpauth://totp/..." v-model="form.uri" :disabled="uriIsLocked" />
|
|
|
|
</div>
|
|
|
|
<div class="control" v-if="uriIsLocked">
|
|
|
|
<a class="button is-dark field-lock" @click="uriIsLocked = 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="uriIsLocked = 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" />
|
|
|
|
<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">
|
2020-01-29 14:56:13 +01:00
|
|
|
<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" />
|
|
|
|
<div class="field is-grouped">
|
|
|
|
<div class="control">
|
|
|
|
<v-button :isLoading="form.isBusy" >{{ $t('twofaccounts.forms.create') }}</v-button>
|
|
|
|
</div>
|
|
|
|
<div class="control">
|
|
|
|
<button class="button is-text" @click="cancelCreation">{{ $t('commons.cancel') }}</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</form-wrapper>
|
2019-12-21 23:23:44 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2020-01-20 17:16:08 +01:00
|
|
|
|
|
|
|
import Form from './../../components/Form'
|
2020-02-04 17:06:11 +01:00
|
|
|
import TwofaccountShow from '../../components/TwofaccountShow'
|
2020-01-20 17:16:08 +01:00
|
|
|
|
2019-12-21 23:23:44 +01:00
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
2020-02-04 17:06:11 +01:00
|
|
|
isQuickForm: false,
|
2020-01-08 23:22:51 +01:00
|
|
|
uriIsLocked: true,
|
2020-01-09 16:33:32 +01:00
|
|
|
tempIcon: '',
|
2020-01-20 17:16:08 +01:00
|
|
|
form: new Form({
|
|
|
|
service: '',
|
|
|
|
account: '',
|
|
|
|
uri: '',
|
|
|
|
icon: '',
|
2020-02-04 17:06:11 +01:00
|
|
|
type: '',
|
2020-01-20 17:16:08 +01:00
|
|
|
qrcode: null
|
|
|
|
})
|
2019-12-21 23:23:44 +01:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2020-02-04 17:06:11 +01:00
|
|
|
mounted: function () {
|
|
|
|
if( this.$route.params.qrAccount ) {
|
|
|
|
|
|
|
|
this.isQuickForm = true
|
|
|
|
this.form.fill(this.$route.params.qrAccount)
|
|
|
|
this.form.type = this.form.uri.slice(0, 15 ) === "otpauth://totp/" ? 'totp' : 'hotp';
|
|
|
|
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
components: {
|
|
|
|
TwofaccountShow,
|
|
|
|
},
|
|
|
|
|
2019-12-21 23:23:44 +01:00
|
|
|
methods: {
|
|
|
|
|
2020-01-27 14:55:30 +01:00
|
|
|
async createAccount() {
|
2020-01-08 23:22:51 +01:00
|
|
|
// set current temp icon as account icon
|
2020-01-20 22:51:57 +01:00
|
|
|
this.form.icon = this.tempIcon
|
2020-01-08 23:22:51 +01:00
|
|
|
|
2020-01-27 14:55:30 +01:00
|
|
|
await this.form.post('/api/twofaccounts')
|
|
|
|
|
|
|
|
if( this.form.errors.any() === false ) {
|
2020-01-07 23:10:04 +01:00
|
|
|
this.$router.push({name: 'accounts', params: { InitialEditMode: false }});
|
2020-01-27 14:55:30 +01:00
|
|
|
}
|
2020-01-16 22:21:05 +01:00
|
|
|
|
2020-01-03 17:25:56 +01:00
|
|
|
},
|
|
|
|
|
2020-01-08 23:22:51 +01:00
|
|
|
cancelCreation: function() {
|
|
|
|
// clean possible uploaded temp icon
|
2020-01-20 22:51:57 +01:00
|
|
|
this.deleteIcon()
|
2020-01-08 23:22:51 +01:00
|
|
|
|
|
|
|
this.$router.push({name: 'accounts', params: { InitialEditMode: false }});
|
|
|
|
},
|
|
|
|
|
2020-01-27 14:55:30 +01:00
|
|
|
async uploadQrcode(event) {
|
2020-01-03 17:25:56 +01:00
|
|
|
|
|
|
|
let imgdata = new FormData();
|
2020-01-20 17:16:08 +01:00
|
|
|
imgdata.append('qrcode', this.$refs.qrcodeInput.files[0]);
|
2020-01-03 17:25:56 +01:00
|
|
|
|
2020-01-27 14:55:30 +01:00
|
|
|
const { data } = await this.form.upload('/api/qrcode/decode', imgdata)
|
|
|
|
|
|
|
|
this.form.fill(data)
|
2020-01-16 22:21:05 +01:00
|
|
|
|
2020-01-05 23:21:28 +01:00
|
|
|
},
|
|
|
|
|
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 already uploaded temp icon
|
2020-01-20 22:51:57 +01:00
|
|
|
this.deleteIcon()
|
2020-01-05 23:21:28 +01:00
|
|
|
|
|
|
|
let imgdata = new FormData();
|
2020-01-20 17:16:08 +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-09 16:33:32 +01:00
|
|
|
|
2020-01-08 15:24:34 +01:00
|
|
|
},
|
|
|
|
|
2020-01-19 22:29:36 +01:00
|
|
|
deleteIcon(event) {
|
2020-01-09 20:33:31 +01:00
|
|
|
if(this.tempIcon) {
|
2020-01-26 21:04:33 +01:00
|
|
|
this.axios.delete('/api/icon/delete/' + this.tempIcon)
|
2020-01-16 22:21:05 +01:00
|
|
|
this.tempIcon = ''
|
2020-01-09 20:33:31 +01:00
|
|
|
}
|
|
|
|
},
|
2020-01-08 16:14:25 +01:00
|
|
|
|
2019-12-21 23:23:44 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|