summaryrefslogtreecommitdiffstats
path: root/settings/src
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-28 16:44:41 +0200
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-06-19 15:01:22 +0200
commitc77feca64bbf648a076b4931197f9ac241a7d9ba (patch)
tree231032a8b815718776634ea88127419a75388cde /settings/src
parentb25838e1572bddb55f512a3137b3651f9fa9d578 (diff)
downloadnextcloud-server-c77feca64bbf648a076b4931197f9ac241a7d9ba.tar.gz
nextcloud-server-c77feca64bbf648a076b4931197f9ac241a7d9ba.zip
Let the user confirm the remote wipe
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'settings/src')
-rw-r--r--settings/src/components/AuthTokenSection.vue41
1 files changed, 27 insertions, 14 deletions
diff --git a/settings/src/components/AuthTokenSection.vue b/settings/src/components/AuthTokenSection.vue
index 0f2da49e053..c74348631db 100644
--- a/settings/src/components/AuthTokenSection.vue
+++ b/settings/src/components/AuthTokenSection.vue
@@ -39,6 +39,17 @@
import AuthTokenList from './AuthTokenList';
import AuthTokenSetupDialogue from './AuthTokenSetupDialogue';
+ const confirm = () => {
+ return new Promise(res => {
+ OC.dialogs.confirm(
+ t('core', 'Do you really want to wipe your data from this device?'),
+ t('core', 'Confirm wipe'),
+ res,
+ true
+ )
+ })
+ }
+
/**
* Tap into a promise without losing the value
*/
@@ -135,22 +146,24 @@
this.tokens.push(token);
})
},
- wipeToken(token) {
+ async wipeToken(token) {
console.debug('wiping app token', token);
- confirmPassword()
- .then(() => Axios.post(this.baseUrl + '/wipe/' + token.id))
- .then(tap(() => {
- console.debug('app token marked for wipe')
-
- // Update the type
- // TODO: refactor the server-side code to return the updated token
- token.type = 2;
- }))
- .catch(err => {
- console.error.bind('could not wipe app token', err);
- OC.Notification.showTemporary(t('core', 'Error while wiping the device with the token'));
- })
+ try {
+ await confirmPassword()
+
+ if (!(await confirm())) {
+ console.debug('wipe aborted by user')
+ return;
+ }
+ await Axios.post(this.baseUrl + '/wipe/' + token.id)
+ console.debug('app token marked for wipe')
+
+ token.type = 2;
+ } catch (err) {
+ console.error('could not wipe app token', err);
+ OC.Notification.showTemporary(t('core', 'Error while wiping the device with the token'));
+ }
}
}
}