2FAuth/resources/js_vue3/views/Accounts.vue

666 lines
28 KiB
Vue

<script setup>
import twofaccountService from '@/services/twofaccountService'
import groupService from '@/services/groupService'
import Spinner from '@/components/Spinner.vue'
import TotpLooper from '@/components/TotpLooper.vue'
import GroupSwitch from '@/components/GroupSwitch.vue'
import DestinationGroupSelector from '@/components/DestinationGroupSelector.vue'
import SearchBox from '@/components/SearchBox.vue'
import Toolbar from '@/components/Toolbar.vue'
import OtpDisplay from '@/components/OtpDisplay.vue'
import { UseColorMode } from '@vueuse/components'
import { useUserStore } from '@/stores/user'
import { useNotifyStore } from '@/stores/notify'
import { useBusStore } from '@/stores/bus'
import { useAppSettingsStore } from '@/stores/appSettings'
import { useDisplayablePassword } from '@/composables/helpers'
import { saveAs } from 'file-saver';
const $2fauth = inject('2fauth')
const notify = useNotifyStore()
const user = useUserStore()
const bus = useBusStore()
const router = useRouter()
const appSettings = useAppSettingsStore()
const { copy, copied } = useClipboard({ legacy: true })
const search = ref('')
const accounts = ref([])
const groups = ref([])
const selectedAccounts = ref([])
const showOtpInModal = ref(false)
const isDragging = ref(false)
const showGroupSwitch = ref(false)
const showDestinationGroupSelector = ref(false)
const otpDisplay = ref(null)
const selectedAccountsIds = computed(() => {
return selectedAccounts.value.forEach(id => ids.push(id))
})
/**
* Returns the name of a group
*/
const activeGroupName = computed(() => {
const g = groups.value.find(el => el.id === parseInt(user.preferences.activeGroup))
return g ? g.name : trans('commons.all')
})
/**
* Returns whether or not the accounts should be displayed
*/
const showAccounts = computed(() => {
return accounts.value.length > 0 && !showGroupSwitch.value && !showDestinationGroupSelector.value
})
watch(showOtpInModal, (val) => {
if (val == false) {
otpDisplay.value?.clearOTP()
}
})
onMounted(() => {
// we don't have to fetch fresh data so we try to load them from localstorage to avoid display latency
// if( user.preferences.getOtpOnRequest && !this.toRefresh && !this.$route.params.isFirstLoad ) {
// const accounts = this.$storage.get('accounts', null) // use null as fallback if localstorage is empty
// if( accounts ) this.accounts = accounts
// const groups = this.$storage.get('groups', null) // use null as fallback if localstorage is empty
// if( groups ) this.groups = groups
// }
// we fetch fresh data whatever. The user will be notified to reload the page if there are any data changes
fetchAccounts()
// stop OTP generation on modal close
// this.$on('modalClose', function() {
// this.$refs.OtpDisplayer.clearOTP()
// })
})
/**
* The actual list of displayed accounts
*/
const filteredAccounts = computed({
get() {
return accounts.value.filter(
item => {
if (parseInt(user.preferences.activeGroup) > 0 ) {
return ((item.service ? item.service.toLowerCase().includes(search.value.toLowerCase()) : false) ||
item.account.toLowerCase().includes(search.value.toLowerCase())) &&
(item.group_id == parseInt(user.preferences.activeGroup))
}
else {
return ((item.service ? item.service.toLowerCase().includes(search.value.toLowerCase()) : false) ||
item.account.toLowerCase().includes(search.value.toLowerCase()))
}
}
)
},
set(newValue) {
accounts.value = newValue
}
})
/**
* Fetch accounts from db
*/
function fetchAccounts(forceRefresh = false) {
let _accounts = []
selectedAccounts.value = []
twofaccountService.getAll(!user.preferences.getOtpOnRequest).then(response => {
response.data.forEach((data) => {
_accounts.push(data)
})
// if ( accounts.value.length > 0 && !objectEquals(_accounts, accounts.value, { depth: 1 }) && !forceRefresh ) {
// notify.action({
// text: '<span class="is-size-7">' + trans('commons.some_data_have_changed') + '</span><br /><a href="." class="button is-rounded is-warning is-small">' + trans('commons.reload') + '</a>',
// duration:-1,
// closeOnClick: false
// })
// }
if( accounts.value.length === 0 && _accounts.length === 0 ) {
// No account yet, we force user to land on the start view.
//this.$storage.set('accounts', this.accounts)
router.push({ name: 'start' });
}
else {
accounts.value = _accounts
//this.$storage.set('accounts', accounts.value)
fetchGroups()
}
})
}
/**
* Select an account while in edit mode
*/
function selectAccount(accountId) {
for (var i=0 ; i < selectedAccounts.value.length ; i++) {
if ( selectedAccounts.value[i] === accountId ) {
selectedAccounts.value.splice(i,1);
return
}
}
selectedAccounts.value.push(accountId)
}
/**
* Delete accounts selected from the Edit mode
*/
async function destroyAccounts() {
if(confirm(trans('twofaccounts.confirm.delete'))) {
await twofaccountService.batchDelete(selectedAccountsIds.join())
.then(response => {
ids.forEach(function(id) {
accounts.value = accounts.filter(a => a.id !== id)
})
notify.info({ text: trans('twofaccounts.accounts_deleted') })
})
// we fetch the accounts again to prevent the js collection being
// desynchronize from the backend php collection
fetchAccounts(true)
}
}
/**
* Export selected accounts to a downloadable file
*/
function exportAccounts() {
twofaccountService.export(selectedAccountsIds.join(), {responseType: 'blob'})
.then((response) => {
var blob = new Blob([response.data], {type: "application/json;charset=utf-8"});
saveAs.saveAs(blob, "2fauth_export.json");
})
}
/**
* Runs some updates after accounts assignement/withdraw
*/
function postGroupAssignementUpdate() {
// we fetch the accounts again to prevent the js collection being
// desynchronize from the backend php collection
fetchAccounts(true)
notify.info({ text: trans('twofaccounts.accounts_moved') })
}
/**
* Shows rotating OTP for the provided account
*/
function showOTP(account) {
// In Edit mode, clicking an account does not show the otpDisplay, it selects the account
if(bus.inManagementMode) {
selectAccount(account.id)
}
else {
showOtpInModal.value = true
otpDisplay.value.show(account.id);
}
}
/**
* Gets groups list from backend
*/
function fetchGroups() {
groupService.getAll().then(response => {
let _groups = []
response.data.forEach((data) => {
_groups.push(data)
})
// if ( !objectEquals(_groups, groups.value) ) {
groups.value = _groups
// }
//this.$storage.set('groups', this.groups)
})
}
/**
* Routes user to the appropriate submitting view
*/
function start() {
if( user.preferences.useDirectCapture && user.preferences.defaultCaptureMode === 'advancedForm' ) {
router.push({ name: 'createAccount' })
}
else if( user.preferences.useDirectCapture && user.preferences.defaultCaptureMode === 'livescan' ) {
router.push({ name: 'capture' })
}
else {
router.push({ name: 'start' })
}
}
/**
* Shows an OTP in a modal or directly copies it to the clipboard
*/
function showOrCopy(account) {
if (!user.preferences.getOtpOnRequest && account.otp_type.includes('totp')) {
copyOTP(account.otp.password)
}
else {
showOTP(account)
}
}
/**
* Copies an OTP
*/
function copyOTP (password) {
copy(password)
if (copied) {
if(user.preferences.kickUserAfter == -1) {
user.logout()
}
notify.info({ text: trans('commons.copied_to_clipboard') })
}
}
/**
* Gets a fresh OTP from backend and copies it
*/
async function getAndCopyOTP(account) {
twofaccountService.getOtpById(account.id).then(response => {
let otp = response.data
copyOTP(otp.password)
if (otp.otp_type == 'hotp') {
let hotpToIncrement = accounts.value.find((acc) => acc.id == account.id)
// TODO : à koi ça sert ?
if (hotpToIncrement != undefined) {
hotpToIncrement.counter = otp.counter
}
}
})
}
/**
* Save the account order in db
*/
function saveOrder() {
isDragging.value = false
const orderedIds = accounts.value.map(a => a.id)
twofaccountService.saveOrder(orderedIds)
}
/**
* Sort accounts ascending
*/
function sortAsc() {
accounts.value.sort((a, b) => a.service > b.service ? 1 : -1)
saveOrder()
}
/**
*Sort accounts descending
*/
function sortDesc() {
accounts.value.sort((a, b) => a.service < b.service ? 1 : -1)
saveOrder()
}
/**
* Select all accounts while in edit mode
*/
function selectAll() {
if(bus.inManagementMode) {
accounts.value.forEach(function(account) {
if ( !selectedAccounts.value.includes(account.id) ) {
selectedAccounts.value.push(account.id)
}
})
}
}
/**
* Unselect all accounts
*/
function unselectAll() {
selectedAccounts.value = []
}
</script>
<template>
<div>
<GroupSwitch v-if="showGroupSwitch" v-model:showGroupSwitch="showGroupSwitch" />
<DestinationGroupSelector
v-if="showDestinationGroupSelector"
v-model:showDestinationGroupSelector="showDestinationGroupSelector"
v-model:selectedAccountsIds="selectedAccountsIds"
@account-moved="postGroupAssignementUpdate">
</DestinationGroupSelector>
<!-- header -->
<div class="header" v-if="showAccounts || showGroupSwitch">
<div class="columns is-gapless is-mobile is-centered">
<div class="column is-three-quarters-mobile is-one-third-tablet is-one-quarter-desktop is-one-quarter-widescreen is-one-quarter-fullhd">
<!-- search -->
<SearchBox v-model:keyword="search"/>
<!-- toolbar -->
<Toolbar v-if="bus.inManagementMode"
:selectedCount="selectedAccounts.length"
@clear-selected="selectedAccounts = []"
@select-all="selectAll"
@sort-asc="sortAsc"
@sort-desc="sortDesc">
</Toolbar>
<!-- group switch toggle -->
<div v-else class="has-text-centered">
<div class="columns">
<UseColorMode v-slot="{ mode }">
<div class="column" v-if="!showGroupSwitch">
<button id="btnShowGroupSwitch" :title="$t('groups.show_group_selector')" tabindex="1" class="button is-text is-like-text" :class="{'has-text-grey' : mode != 'dark'}" @click.stop="showGroupSwitch = !showGroupSwitch">
{{ activeGroupName }} ({{ filteredAccounts.length }})&nbsp;
<FontAwesomeIcon :icon="['fas', 'caret-down']" />
</button>
</div>
<div class="column" v-else>
<button id="btnHideGroupSwitch" :title="$t('groups.hide_group_selector')" tabindex="1" class="button is-text is-like-text" :class="{'has-text-grey' : mode != 'dark'}" @click.stop="showGroupSwitch = !showGroupSwitch">
{{ $t('groups.select_accounts_to_show') }}
</button>
</div>
</UseColorMode>
</div>
</div>
</div>
</div>
</div>
<!-- modal -->
<Modal v-model="showOtpInModal">
<OtpDisplay
ref="otpDisplay"
@please-close-me="showOtpInModal = false">
</OtpDisplay>
</Modal>
<!-- show accounts list -->
<div class="container" v-if="showAccounts" :class="bus.inManagementMode ? 'is-edit-mode' : ''">
<!-- accounts -->
<!-- <vue-pull-refresh :on-refresh="onRefresh" :config="{
errorLabel: 'error',
startLabel: '',
readyLabel: '',
loadingLabel: 'refreshing'
}" > -->
<!-- <draggable v-model="filteredAccounts" @start="isDragging = true" @end="saveOrder" ghost-class="ghost" handle=".tfa-dots" animation="200" class="accounts"> -->
<div class="accounts">
<!-- <transition-group class="columns is-multiline" :class="{ 'is-centered': user.preferences.displayMode === 'grid' }" type="transition" :name="!isDragging ? 'flip-list' : null"> -->
<span class="columns is-multiline">
<div :class="[user.preferences.displayMode === 'grid' ? 'tfa-grid' : 'tfa-list']" class="column is-narrow" v-for="account in filteredAccounts" :key="account.id">
<div class="tfa-container">
<!-- <transition name="slideCheckbox"> -->
<div class="tfa-cell tfa-checkbox" v-if="bus.inManagementMode">
<div class="field">
<UseColorMode v-slot="{ mode }">
<input class="is-checkradio is-small" :class="mode == 'dark' ? 'is-white':'is-info'" :id="'ckb_' + account.id" :value="account.id" type="checkbox" :name="'ckb_' + account.id" v-model="selectedAccounts">
</UseColorMode>
<label tabindex="0" :for="'ckb_' + account.id" v-on:keypress.space.prevent="selectAccount(account.id)"></label>
</div>
</div>
<!-- </transition> -->
<div tabindex="0" class="tfa-cell tfa-content is-size-3 is-size-4-mobile" @click.exact="showOrCopy(account)" @keyup.enter="showOrCopy(account)" @click.ctrl="getAndCopyOTP(account)" role="button">
<div class="tfa-text has-ellipsis">
<img class="tfa-icon" :src="$2fauth.config.subdirectory + '/storage/icons/' + account.icon" v-if="account.icon && user.preferences.showAccountsIcons" :alt="$t('twofaccounts.icon_for_account_x_at_service_y', {account: account.account, service: account.service})">
{{ account.service ? account.service : $t('twofaccounts.no_service') }}<FontAwesomeIcon class="has-text-danger is-size-5 ml-2" v-if="appSettings.useEncryption && account.account === $t('errors.indecipherable')" :icon="['fas', 'exclamation-circle']" />
<span class="has-ellipsis is-family-primary is-size-6 is-size-7-mobile has-text-grey ">{{ account.account }}</span>
</div>
</div>
<!-- <transition name="popLater"> -->
<div v-show="user.preferences.getOtpOnRequest == false && !bus.inManagementMode" class="has-text-right">
<span v-if="account.otp != undefined && isRenewingOTPs" class="has-nowrap has-text-grey has-text-centered is-size-5">
<FontAwesomeIcon :icon="['fas', 'circle-notch']" spin />
</span>
<span v-else-if="account.otp != undefined && isRenewingOTPs == false" class="always-on-otp is-clickable has-nowrap has-text-grey is-size-5 ml-4" @click="copyOTP(account.otp.password)" @keyup.enter="copyOTP(account.otp.password)" :title="$t('commons.copy_to_clipboard')">
{{ useDisplayablePassword(account.otp.password) }}
</span>
<span v-else>
<!-- get hotp button -->
<UseColorMode v-slot="{ mode }">
<button class="button tag" :class="mode == 'dark' ? 'is-dark' : 'is-white'" @click="showOTP(account)" :title="$t('twofaccounts.import.import_this_account')">
{{ $t('commons.generate') }}
</button>
</UseColorMode>
</span>
<!-- <dots v-if="account.otp_type.includes('totp')" @hook:mounted="turnDotsOnFromCache(account.period)" :class="'condensed'" :ref="'dots_' + account.period"></dots> -->
</div>
<!-- </transition> -->
<!-- <transition name="fadeInOut"> -->
<div class="tfa-cell tfa-edit has-text-grey" v-if="bus.inManagementMode">
<UseColorMode v-slot="{ mode }">
<RouterLink :to="{ name: 'editAccount', params: { twofaccountId: account.id }}" class="tag is-rounded mr-1" :class="mode == 'dark' ? 'is-dark' : 'is-white'">
{{ $t('commons.edit') }}
</RouterLink>
<RouterLink :to="{ name: 'showQRcode', params: { twofaccountId: account.id }}" class="tag is-rounded" :class="mode == 'dark' ? 'is-dark' : 'is-white'" :title="$t('twofaccounts.show_qrcode')">
<FontAwesomeIcon :icon="['fas', 'qrcode']" />
</RouterLink>
</UseColorMode>
</div>
<!-- </transition> -->
<!-- <transition name="fadeInOut"> -->
<div class="tfa-cell tfa-dots has-text-grey" v-if="bus.inManagementMode">
<FontAwesomeIcon :icon="['fas', 'bars']" />
</div>
<!-- </transition> -->
</div>
</div>
</span>
<!-- </transition-group> -->
</div>
<!-- </draggable> -->
<!-- </vue-pull-refresh> -->
<VueFooter :showButtons="true" v-on:management-mode-exited="unselectAll">
<UseColorMode v-slot="{ mode }">
<!-- New item buttons -->
<p class="control" v-if="!bus.inManagementMode">
<button class="button is-link is-rounded is-focus" @click="start">
<span>{{ $t('commons.new') }}</span>
<span class="icon is-small">
<FontAwesomeIcon :icon="['fas', 'qrcode']" />
</span>
</button>
</p>
<!-- Manage button -->
<p class="control" v-if="!bus.inManagementMode">
<button id="btnManage" class="button is-rounded" :class="{'is-dark' : mode == 'dark'}" @click="bus.inManagementMode = true">{{ $t('commons.manage') }}</button>
</p>
<!-- move button -->
<p class="control" v-if="bus.inManagementMode">
<button
id="btnMove"
:disabled='selectedAccounts.length == 0' class="button is-rounded"
:class="[{ 'is-outlined': mode == 'dark' || selectedAccounts.length == 0 }, selectedAccounts.length == 0 ? 'is-dark': 'is-link']"
@click="showDestinationGroupSelector = true"
:title="$t('groups.move_selected_to_group')" >
{{ $t('commons.move') }}
</button>
</p>
<!-- delete button -->
<p class="control" v-if="bus.inManagementMode">
<button
id="btnDelete"
:disabled='selectedAccounts.length == 0' class="button is-rounded"
:class="[{ 'is-outlined': mode == 'dark' || selectedAccounts.length == 0 }, selectedAccounts.length == 0 ? 'is-dark': 'is-link']"
@click="destroyAccounts" >
{{ $t('commons.delete') }}
</button>
</p>
<!-- export button -->
<p class="control" v-if="bus.inManagementMode">
<button
id="btnExport"
:disabled='selectedAccounts.length == 0' class="button is-rounded"
:class="[{ 'is-outlined': mode == 'dark' || selectedAccounts.length == 0 }, selectedAccounts.length == 0 ? 'is-dark': 'is-link']"
@click="exportAccounts"
:title="$t('twofaccounts.export_selected_to_json')" >
{{ $t('commons.export') }}
</button>
</p>
</UseColorMode>
</VueFooter>
</div>
<!-- totp loopers -->
<!-- <span v-if="!user.preferences.getOtpOnRequest">
<TotpLooper
v-for="period in periods"
:key="period.period"
:period="period.period"
:generated_at="period.generated_at"
v-on:loop-ended="updateTotps(period.period)"
v-on:loop-started="setCurrentStep(period.period, $event)"
v-on:stepped-up="setCurrentStep(period.period, $event)"
ref="loopers"
></TotpLooper>
</span> -->
</div>
</template>
<script>
/**
* Accounts view
*
* route: '/account' (alias: '/')
*
* The main view of 2FAuth that list all existing account recorded in DB.
* Available feature in this view :
* - {{OTP}} generation
* - Account fetching :
* ~ Search
* ~ Filtering (by group)
* - Accounts management :
* ~ Sorting
* ~ QR code recovering
* ~ Mass association to group
* ~ Mass account deletion
* ~ Access to account editing
*
* Behavior :
* - The view has 2 modes (toggle is done with the 'manage' button) :
* ~ The View mode (the default one)
* ~ The Edit mode
* - User are automatically pushed to the start view if there is no account to list.
* - The view is affected by :
* ~ 'userPreferences.showAccountsIcons' toggle the icon visibility
* ~ 'userPreferences.displayMode' change the account appearance
*
*
*/
// export default {
// data(){
// return {
// stepIndexes: {},
// isRenewingOTPs: false
// }
// },
// computed: {
/**
* Returns an array of all totp periods present in the twofaccounts list
*/
// periods() {
// return !user.preferences.getOtpOnRequest ?
// this.accounts.filter(acc => acc.otp_type == 'totp').map(function(item) {
// return {period: item.period, generated_at: item.otp.generated_at}
// // return item.period
// }).filter((value, index, self) => index === self.findIndex((t) => (
// t.period === value.period
// ))).sort()
// : null
// },
// },
// props: ['toRefresh'],
// methods: {
/**
*
*/
// setCurrentStep(period, stepIndex) {
// this.stepIndexes[period] = stepIndex
// this.turnDotsOn(period, stepIndex)
// },
/**
*
*/
// turnDotsOnFromCache(period, stepIndex) {
// if (this.stepIndexes[period] != undefined) {
// this.turnDotsOn(period, this.stepIndexes[period])
// }
// },
/**
*
*/
// turnDotsOn(period, stepIndex) {
// this.$refs['dots_' + period].forEach((dots) => {
// dots.turnOn(stepIndex)
// })
// },
/**
* Fetch all accounts set with the given period to get fresh OTPs
*/
// async updateTotps(period) {
// this.isRenewingOTPs = true
// this.axios.get('api/v1/twofaccounts?withOtp=1&ids=' + this.accountIdsWithPeriod(period).join(',')).then(response => {
// response.data.forEach((account) => {
// const index = this.accounts.findIndex(acc => acc.id === account.id)
// this.accounts[index].otp = account.otp
// this.$refs.loopers.forEach((looper) => {
// if (looper.period == period) {
// looper.generatedAt = account.otp.generated_at
// this.$nextTick(() => {
// looper.startLoop()
// })
// }
// })
// })
// })
// .finally(() => {
// this.isRenewingOTPs = false
// })
// },
/**
* Return an array of all accounts (ids) set with the given period
*/
// accountIdsWithPeriod(period) {
// return this.accounts.filter(a => a.period == period).map(item => item.id)
// },
/**
* Get a fresh OTP for the provided account
*/
// getOTP(accountId) {
// this.axios.get('api/v1/twofaccounts/' + accountId + '/otp').then(response => {
// this.$notify({ type: 'is-success', text: this.$t('commons.copied_to_clipboard')+ ' '+response.data })
// })
// },
// }
// };
</script>
<style scoped>
.flip-list-move {
transition: transform 0.5s;
}
.ghost {
opacity: 1;
/*background: hsl(0, 0%, 21%);*/
}
</style>