2FAuth/resources/js/components/TokenDisplayer.vue

235 lines
8.7 KiB
Vue
Raw Normal View History

2019-12-21 23:25:19 +01:00
<template>
<div>
2020-02-06 17:03:08 +01:00
<figure class="image is-64x64" :class="{ 'no-icon': !internal_icon }" style="display: inline-block">
2020-02-04 17:06:11 +01:00
<img :src="'storage/icons/' + internal_icon" v-if="internal_icon">
2019-12-21 23:25:19 +01:00
</figure>
2020-02-04 17:06:11 +01:00
<p class="is-size-4 has-text-grey-light has-ellipsis">{{ internal_service }}</p>
<p class="is-size-6 has-text-grey has-ellipsis">{{ internal_account }}</p>
<p class="is-size-1 has-text-white is-clickable" :title="$t('commons.copy_to_clipboard')" v-clipboard="() => token.replace(/ /g, '')" v-clipboard:success="clipboardSuccessHandler">{{ displayedToken }}</p>
<ul class="dots" v-if="internal_otpType === 'totp'">
<li v-for="n in 30"></li>
</ul>
<ul v-else-if="internal_otpType === 'hotp'">
<li>counter: {{ internal_hotpCounter }}</li>
2020-01-24 22:37:48 +01:00
</ul>
2019-12-21 23:25:19 +01:00
</div>
</template>
<script>
export default {
name: 'TokenDisplayer',
2019-12-21 23:25:19 +01:00
data() {
return {
id: null,
next_uri: '',
nextHotpCounter: null,
token : '',
timerID: null,
position: null,
internal_otpType: '',
internal_account: '',
internal_service: '',
internal_icon: '',
internal_hotpCounter: null,
2019-12-21 23:25:19 +01:00
}
},
2020-02-04 17:06:11 +01:00
props: {
account : String,
algorithm : String,
digits : Number,
hotpCounter : Number,
icon : String,
imageLink : String,
otpType : String,
qrcode : null,
secret : String,
secretIsBase32Encoded : Number,
service : String,
totpPeriod : Number,
uri : String
2020-02-04 17:06:11 +01:00
},
2020-02-27 16:58:04 +01:00
computed: {
displayedToken() {
return this.$root.appSettings.showTokenAsDot ? this.token.replace(/[0-9]/g, '●') : this.token
2020-02-27 16:58:04 +01:00
}
},
2020-02-04 17:06:11 +01:00
mounted: function() {
this.getToken()
2020-02-04 17:06:11 +01:00
},
methods: {
async getToken(id) {
// 3 possible cases :
// - Trigger when user ask for a token of an existing account: the ID is provided so we fetch the account data
// from db but without the uri.
// This prevent the uri (a sensitive data) to transit via http request unnecessarily. In this
2020-11-05 22:50:49 +01:00
// case this.otpType is sent by the backend.
// - Trigger when user use the Quick Uploader and preview the account: No ID but we have an URI.
// - Trigger when user use the Advanced form and preview the account: We should have all OTP parameter
// to obtain a token, including Secret and otpType which are required
try {
this.internal_otpType = this.otpType.toLowerCase()
}
catch(e) {
//do nothing
}
finally {
this.internal_account = this.account
this.internal_service = this.service
this.internal_icon = this.icon
this.internal_hotpCounter = this.hotpCounter
}
if( id ) {
this.id = id
const { data } = await this.axios.get('api/twofaccounts/' + this.id)
this.internal_service = data.service
this.internal_account = data.account
this.internal_icon = data.icon
this.internal_otpType = data.otpType
}
// We force the otpType to be based on the uri
if( this.uri ) {
this.internal_otpType = this.uri.slice(0, 15 ).toLowerCase() === "otpauth://totp/" ? 'totp' : 'hotp';
}
if( this.id || this.uri || this.secret ) { // minimun required vars to get a token from the backend
switch(this.internal_otpType) {
2020-11-05 22:50:49 +01:00
case 'totp':
await this.getTOTP()
break;
case 'hotp':
await this.getHOTP()
break;
default:
this.$router.push({ name: 'genericError', params: { err: this.$t('errors.not_a_supported_otp_type') } });
}
this.$parent.isActive = true
}
},
2020-01-24 22:37:48 +01:00
getTOTP: function() {
this.axios.post('/api/twofaccounts/otp', { id: this.id, otp: this.$props }).then(response => {
let spacePosition = Math.ceil(response.data.token.length / 2);
this.token = response.data.token.substr(0, spacePosition) + " " + response.data.token.substr(spacePosition);
this.position = response.data.position;
let dots = this.$el.querySelector('.dots');
// clear active dots
while (dots.querySelector('[data-is-active]')) {
dots.querySelector('[data-is-active]').removeAttribute('data-is-active');
}
// set dot at given position as the active one
let active = dots.querySelector('li:nth-child(' + (this.position + 1 ) + ')');
active.setAttribute('data-is-active', true);
let self = this;
this.timerID = setInterval(function() {
let sibling = active.nextSibling;
if(active.nextSibling === null) {
2020-01-24 22:37:48 +01:00
console.log('no more sibling to activate, we refresh the OTP')
self.stopLoop()
2020-01-24 22:37:48 +01:00
self.getTOTP();
}
else
{
active.removeAttribute('data-is-active');
sibling.setAttribute('data-is-active', true);
active = sibling
}
}, 1000);
})
2020-11-05 22:54:06 +01:00
.catch(error => {
this.$router.push({ name: 'genericError', params: { err: error.response } });
});
},
2020-01-24 22:37:48 +01:00
getHOTP: function() {
this.axios.post('/api/twofaccounts/otp', { id: this.id, otp: this.$props }).then(response => {
let spacePosition = Math.ceil(response.data.token.length / 2);
2020-01-24 22:37:48 +01:00
this.token = response.data.token.substr(0, spacePosition) + " " + response.data.token.substr(spacePosition)
this.internal_hotpCounter = response.data.hotpCounter
this.nextHotpCounter = response.data.nextHotpCounter
this.next_uri = response.data.nextUri
this.$emit('update-hotp-counter', { nextHotpCounter: this.nextHotpCounter })
2020-01-24 22:37:48 +01:00
})
2020-11-05 22:54:06 +01:00
.catch(error => {
this.$router.push({ name: 'genericError', params: { err: error.response } });
});
2020-01-24 22:37:48 +01:00
},
clearOTP: function() {
this.stopLoop()
this.id = this.timerID = this.position = this.internal_hotpCounter = null
this.internal_service = this.internal_account = this.internal_icon = this.internal_otpType = ''
this.token = '... ...'
try {
this.$el.querySelector('[data-is-active]').removeAttribute('data-is-active');
this.$el.querySelector('.dots li:first-child').setAttribute('data-is-active', true);
}
catch(e) {
// we do not throw anything
}
},
stopLoop: function() {
if( this.internal_otpType === 'totp' ) {
clearInterval(this.timerID)
}
},
clipboardSuccessHandler ({ value, event }) {
2020-10-08 15:38:36 +02:00
if(this.$root.appSettings.kickUserAfter == -1) {
this.appLogout()
}
else if(this.$root.appSettings.closeTokenOnCopy) {
this.$parent.isActive = false
this.clearOTP()
}
this.$notify({ type: 'is-success', text: this.$t('commons.copied_to_clipboard') })
},
clipboardErrorHandler ({ value, event }) {
console.log('error', value)
}
},
beforeDestroy () {
this.stopLoop()
}
2019-12-21 23:25:19 +01:00
}
</script>