123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417 |
- <template>
- <div>
- <!-- Quick form -->
- <form @submit.prevent="createAccount" @keydown="form.onKeydown($event)" v-if="showQuickForm">
- <div class="container preview has-text-centered">
- <div class="columns is-mobile">
- <div class="column">
- <label class="add-icon-button" v-if="!tempIcon">
- <input class="file-input" type="file" accept="image/*" v-on:change="uploadIcon" ref="iconInput">
- <font-awesome-icon :icon="['fas', 'image']" size="2x" />
- </label>
- <button class="delete delete-icon-button is-medium" v-if="tempIcon" @click.prevent="deleteIcon"></button>
- <otp-displayer ref="QuickFormOtpDisplayer" v-bind="form.data()" @increment-hotp="incrementHotp">
- </otp-displayer>
- </div>
- </div>
- <div class="columns is-mobile" v-if="form.errors.any()">
- <div class="column">
- <p v-for="field in form.errors.errors" class="help is-danger">
- <ul>
- <li v-for="(error, index) in field">{{ error }}</li>
- </ul>
- </p>
- </div>
- </div>
- <div class="columns is-mobile">
- <div class="column quickform-footer">
- <div class="field is-grouped is-grouped-centered">
- <div class="control">
- <v-button :isLoading="form.isBusy" >{{ $t('commons.save') }}</v-button>
- </div>
- <div class="control">
- <button type="button" class="button is-text" @click="cancelCreation">{{ $t('commons.cancel') }}</button>
- </div>
- </div>
- </div>
- </div>
- </div>
- </form>
- <!-- Full form -->
- <form-wrapper :title="$t('twofaccounts.forms.new_account')" v-if="showAdvancedForm">
- <form @submit.prevent="createAccount" @keydown="form.onKeydown($event)">
- <!-- qcode fileupload -->
- <div class="field">
- <div class="file is-black is-small">
- <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" />
- </span>
- <span class="file-label">{{ $t('twofaccounts.forms.prefill_using_qrcode') }}</span>
- </span>
- </label>
- </div>
- </div>
- <field-error :form="form" field="qrcode" class="help-for-file" />
- <!-- service -->
- <form-field :form="form" :isDisabled="form.otp_type === 'steamtotp'" 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 upload -->
- <label class="label">{{ $t('twofaccounts.icon') }}</label>
- <div class="field is-grouped">
- <!-- i'm lucky button -->
- <div class="control">
- <v-button @click="fetchLogo" :color="'is-dark'" :nativeType="'button'" :isDisabled="form.service.length < 3">
- <span class="icon is-small">
- <font-awesome-icon :icon="['fas', 'globe']" />
- </span>
- <span>{{ $t('twofaccounts.forms.i_m_lucky') }}</span>
- </v-button>
- </div>
- <!-- upload button -->
- <div class="control">
- <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', 'upload']" />
- </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" >
- <button class="delete is-small" @click.prevent="deleteIcon"></button>
- </span>
- </div>
- </div>
- </div>
- <div class="field">
- <field-error :form="form" field="icon" class="help-for-file" />
- <p class="help" v-html="$t('twofaccounts.forms.i_m_lucky_legend')"></p>
- </div>
- <!-- otp type -->
- <form-toggle @otp_type="setFormState" class="has-uppercased-button" :form="form" :choices="otp_types" fieldName="otp_type" :label="$t('twofaccounts.forms.otp_type.label')" :help="$t('twofaccounts.forms.otp_type.help')" :hasOffset="true" />
- <div v-if="form.otp_type">
- <!-- secret -->
- <label class="label" v-html="$t('twofaccounts.forms.secret.label')"></label>
- <div class="field has-addons">
- <p class="control">
- <span class="select">
- <select @change="form.secret=''" v-model="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>
- </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>
- </div>
- <div v-if="form.otp_type !== 'steamtotp'">
- <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.otp_type === 'totp'" :form="form" fieldName="period" inputType="text" :label="$t('twofaccounts.forms.period.label')" :placeholder="$t('twofaccounts.forms.period.placeholder')" :help="$t('twofaccounts.forms.period.help')" />
- <!-- HOTP counter -->
- <form-field v-if="form.otp_type === 'hotp'" :form="form" fieldName="counter" inputType="text" :label="$t('twofaccounts.forms.counter.label')" :placeholder="$t('twofaccounts.forms.counter.placeholder')" :help="$t('twofaccounts.forms.counter.help')" />
- </div>
- </div>
- <vue-footer :showButtons="true">
- <p class="control">
- <v-button :isLoading="form.isBusy" class="is-rounded" >{{ $t('commons.create') }}</v-button>
- </p>
- <p class="control" v-if="form.otp_type && 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>
- </form>
- <!-- modal -->
- <modal v-model="ShowTwofaccountInModal">
- <otp-displayer ref="AdvancedFormOtpDisplayer" v-bind="form.data()" @increment-hotp="incrementHotp">
- </otp-displayer>
- </modal>
- </form-wrapper>
- <!-- alternatives -->
- <modal v-model="showAlternatives">
- <div class="too-bad"></div>
- <div class="block">
- {{ $t('errors.data_of_qrcode_is_not_valid_URI') }}
- </div>
- <div class="block has-text-light mb-6" v-html="uri"></div>
- <!-- Copy to clipboard -->
- <div class="block has-text-link">
- <label class="button is-link is-outlined is-rounded" v-clipboard="() => uri" v-clipboard:success="clipboardSuccessHandler">
- {{ $t('commons.copy_to_clipboard') }}
- </label>
- </div>
- <!-- Open in browser -->
- <div class="block has-text-link" v-if="isUrl(uri)" @click="openInBrowser(uri)">
- <label class="button is-link is-outlined is-rounded">
- {{ $t('commons.open_in_browser') }}
- </label>
- </div>
- </modal>
- </div>
- </template>
- <script>
- /**
- * Create form view
- *
- * route: '/account/create'
- *
- * Offer the user to define, preview and store an account. The form has 2 designs :
- * - The 'Quick Form', a read only design fed with $route.params.decodedUri passed by the Start view.
- * - The 'Advanced Form', a fully editable form, that let user define all field and OTP parameters.
- * ~ A qrcode can be used to automatically fill the form
- * ~ If an 'image' parameter is embeded in the qrcode, the remote image is downloaded and preset in the icon field
- *
- * Both design use the otpDisplayer component to preview the account with an otp rotation.
- *
- * input : [optional, for the Quick Form] an URI previously decoded by the Start view
- * submit : post account data to php backend to create the account
- */
- import Modal from '../../components/Modal'
- import Form from './../../components/Form'
- import OtpDisplayer from '../../components/OtpDisplayer'
- import Base32 from "hi-base32"
- export default {
- data() {
- return {
- showQuickForm: false,
- showAdvancedForm: false,
- ShowTwofaccountInModal : false,
- showAlternatives : false,
- tempIcon: '',
- uri: '',
- secretIsBase32Encoded: 0,
- form: new Form({
- service: '',
- account: '',
- otp_type: '',
- icon: '',
- secret: '',
- algorithm: '',
- digits: null,
- counter: null,
- period: null,
- image: '',
- qrcode: null,
- }),
- otp_types: [
- { text: 'TOTP', value: 'totp' },
- { text: 'HOTP', value: 'hotp' },
- { text: 'STEAM', value: 'steamtotp' },
- ],
- 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' },
- ],
- }
- },
- watch: {
- tempIcon: function(val) {
- if( this.showQuickForm ) {
- this.$refs.QuickFormOtpDisplayer.internal_icon = val
- }
- },
- },
- mounted: function () {
- if( this.$route.params.decodedUri ) {
- this.uri = this.$route.params.decodedUri
- // the Start view provided an uri so we parse it and prefill the quick form
- this.axios.post('/api/v1/twofaccounts/preview', { uri: this.uri }).then(response => {
- this.form.fill(response.data)
- this.secretIsBase32Encoded = 1
- this.tempIcon = response.data.icon ? response.data.icon : null
- this.showQuickForm = true
- })
- .catch(error => {
- if( error.response.status === 422 ) {
- if( error.response.data.errors.uri ) {
- this.showAlternatives = true
- this.showAdvancedForm = true
- }
- }
- });
- } else {
- this.showAdvancedForm = true
- }
- this.$on('modalClose', function() {
- this.showAlternatives = false;
- if( this.showAdvancedForm ) {
- this.$refs.AdvancedFormOtpDisplayer.stopLoop()
- }
- });
- },
- components: {
- Modal,
- OtpDisplayer,
- },
- methods: {
- async createAccount() {
- // set current temp icon as account icon
- this.form.icon = this.tempIcon
- // Secret to base32 if necessary
- this.form.secret = this.secretIsBase32Encoded ? this.form.secret : Base32.encode(this.form.secret).toString();
- await this.form.post('/api/v1/twofaccounts')
- if( this.form.errors.any() === false ) {
- this.$router.push({name: 'accounts', params: { toRefresh: true }});
- }
- },
- previewAccount() {
- this.$refs.AdvancedFormOtpDisplayer.show()
- },
- cancelCreation: function() {
- if( this.form.service ) {
- if( confirm(this.$t('twofaccounts.confirm.cancel')) === false ) {
- return
- }
- }
- // clean possible uploaded temp icon
- this.deleteIcon()
- this.$router.push({name: 'accounts'});
- },
- async uploadQrcode(event) {
- let imgdata = new FormData();
- imgdata.append('qrcode', this.$refs.qrcodeInput.files[0]);
- imgdata.append('inputFormat', 'fileUpload');
- // First we get the uri encoded in the qrcode
- const { data } = await this.form.upload('/api/v1/qrcode/decode', imgdata)
- this.uri = data.data
- // Then the otp described by the uri
- this.axios.post('/api/v1/twofaccounts/preview', { uri: data.data }).then(response => {
- this.form.fill(response.data)
- this.secretIsBase32Encoded = 1
- this.tempIcon = response.data.icon ? response.data.icon : null
- })
- .catch(error => {
- if( error.response.status === 422 ) {
- if( error.response.data.errors.uri ) {
- this.showAlternatives = true
- }
- }
- });
- },
- async uploadIcon(event) {
- // clean possible already uploaded temp icon
- this.deleteIcon()
- let imgdata = new FormData();
- imgdata.append('icon', this.$refs.iconInput.files[0]);
- const { data } = await this.form.upload('/api/v1/icons', imgdata)
- this.tempIcon = data.filename;
- },
- fetchLogo() {
- this.axios.post('/api/v1/icons/default', {service: this.form.service}, {returnError: true}).then(response => {
- if (response.status === 201) {
- // clean possible already uploaded temp icon
- this.deleteIcon()
- this.tempIcon = response.data.filename;
- }
- else this.$notify({type: 'is-warning', text: this.$t('errors.no_logo_found_for_x', {service: this.form.service}) })
- })
- .catch(error => {
- this.$notify({type: 'is-warning', text: this.$t('errors.no_logo_found_for_x', {service: this.form.service}) })
- });
- },
- deleteIcon(event) {
- if(this.tempIcon) {
- this.axios.delete('/api/v1/icons/' + this.tempIcon)
- this.tempIcon = ''
- }
- },
- 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.counter = payload.nextHotpCounter
- },
- clipboardSuccessHandler ({ value, event }) {
- if(this.$root.appSettings.kickUserAfter == -1) {
- this.appLogout()
- }
- this.$notify({ type: 'is-success', text: this.$t('commons.copied_to_clipboard') })
- },
- clipboardErrorHandler ({ value, event }) {
- console.log('error', value)
- },
- setFormState (event) {
- this.form.otp_type = event
- this.form.service = event === 'steamtotp' ? 'Steam' : ''
- this.secretIsBase32Encoded = event === 'steamtotp' ? 1 : this.secretIsBase32Encoded
- },
-
- },
- }
- </script>
|