Merge pull request #602 from sachaaaaa/unpairing_device

[multi-device] Allow unpairing device
pull/609/head
sachaaaaa 5 years ago committed by GitHub
commit 5529deb019
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -961,6 +961,12 @@
"showPairingWordsTitle": { "showPairingWordsTitle": {
"message": "Pairing Secret Words" "message": "Pairing Secret Words"
}, },
"confirmUnpairingTitle": {
"message": "Please confirm you want to unpair the following device:"
},
"unpairDevice": {
"message": "Unpair Device"
},
"clear": { "clear": {
"message": "Clear" "message": "Clear"
}, },

@ -253,7 +253,6 @@
<div class="defaultView"> <div class="defaultView">
<h4>{{ defaultTitle }}</h4> <h4>{{ defaultTitle }}</h4>
<ul id="pairedPubKeys"> <ul id="pairedPubKeys">
<li>No paired devices</li>
</ul> </ul>
<div class='buttons'> <div class='buttons'>
<button id='close' tabindex='2'>{{ closeText }}</button> <button id='close' tabindex='2'>{{ closeText }}</button>
@ -292,6 +291,16 @@
<button class="ok" style="display: none;">{{ okText }}</button> <button class="ok" style="display: none;">{{ okText }}</button>
</div> </div>
</div> </div>
<!--Prompt user to confirm unpairing -->
<div class="confirmUnpairView" style="display: none;">
<h4>{{ confirmUnpairViewTitle }}</h4>
<p id="pubkey"></p>
<div class='buttons'>
<button class='cancel' tabindex='2'>{{ cancelText }}</button>
<button class='unpairDevice' tabindex='1'>{{ unpairDevice }}</button>
</div>
</div>
</div> </div>
</script> </script>

@ -1,4 +1,12 @@
/* global Whisper, i18n, libloki, textsecure, ConversationController */ /* global
Whisper,
i18n,
libloki,
textsecure,
ConversationController,
$,
lokiFileServerAPI
*/
// eslint-disable-next-line func-names // eslint-disable-next-line func-names
(function() { (function() {
@ -19,6 +27,7 @@
this.pubKey = null; this.pubKey = null;
this.accepted = false; this.accepted = false;
this.isListening = false; this.isListening = false;
this.pubKeyToUnpair = null;
this.success = false; this.success = false;
}, },
events: { events: {
@ -28,6 +37,8 @@
'click .requestReceivedView .skip': 'skipDevice', 'click .requestReceivedView .skip': 'skipDevice',
'click #allowPairing': 'allowDevice', 'click #allowPairing': 'allowDevice',
'click .requestAcceptedView .ok': 'stopReceivingRequests', 'click .requestAcceptedView .ok': 'stopReceivingRequests',
'click .confirmUnpairView .cancel': 'stopReceivingRequests',
'click .confirmUnpairView .unpairDevice': 'confirmUnpairDevice',
}, },
render_attributes() { render_attributes() {
return { return {
@ -37,10 +48,12 @@
requestAcceptedTitle: i18n('devicePairingAccepted'), requestAcceptedTitle: i18n('devicePairingAccepted'),
startPairingText: i18n('pairNewDevice'), startPairingText: i18n('pairNewDevice'),
cancelText: i18n('cancel'), cancelText: i18n('cancel'),
unpairDevice: i18n('unpairDevice'),
closeText: i18n('close'), closeText: i18n('close'),
skipText: i18n('skip'), skipText: i18n('skip'),
okText: i18n('ok'), okText: i18n('ok'),
allowPairingText: i18n('allowPairing'), allowPairingText: i18n('allowPairing'),
confirmUnpairViewTitle: i18n('confirmUnpairingTitle'),
}; };
}, },
startReceivingRequests() { startReceivingRequests() {
@ -103,31 +116,64 @@
// FIFO: pop at the back of the array using pop() // FIFO: pop at the back of the array using pop()
this.pubKey = this.pubKeyRequests.pop(); this.pubKey = this.pubKeyRequests.pop();
}, },
async confirmUnpairDevice() {
await libloki.storage.removePairingAuthorisationForSecondaryPubKey(
this.pubKeyToUnpair
);
await lokiFileServerAPI.updateOurDeviceMapping();
this.reset();
this.showView();
},
requestUnpairDevice(pubKey) {
this.pubKeyToUnpair = pubKey;
this.showView();
},
getPubkeyName(pubKey) {
const secretWords = window.mnemonic.pubkey_to_secret_words(pubKey);
const conv = ConversationController.get(pubKey);
const deviceAlias = conv ? conv.getNickname() : 'Unnamed Device';
return `${deviceAlias} (pairing secret: <i>${secretWords}</i>)`;
},
async showView() { async showView() {
const defaultView = this.$('.defaultView'); const defaultView = this.$('.defaultView');
const waitingForRequestView = this.$('.waitingForRequestView'); const waitingForRequestView = this.$('.waitingForRequestView');
const requestReceivedView = this.$('.requestReceivedView'); const requestReceivedView = this.$('.requestReceivedView');
const requestAcceptedView = this.$('.requestAcceptedView'); const requestAcceptedView = this.$('.requestAcceptedView');
if (!this.isListening) { const confirmUnpairView = this.$('.confirmUnpairView');
const ourPubKey = textsecure.storage.user.getNumber(); if (this.pubKeyToUnpair) {
defaultView.show(); defaultView.hide();
requestReceivedView.hide();
waitingForRequestView.hide();
requestAcceptedView.hide();
confirmUnpairView.show();
const name = this.getPubkeyName(this.pubKeyToUnpair);
this.$('.confirmUnpairView #pubkey').html(name);
} else if (!this.isListening) {
requestReceivedView.hide(); requestReceivedView.hide();
waitingForRequestView.hide(); waitingForRequestView.hide();
requestAcceptedView.hide(); requestAcceptedView.hide();
confirmUnpairView.hide();
const ourPubKey = textsecure.storage.user.getNumber();
defaultView.show();
const pubKeys = await libloki.storage.getSecondaryDevicesFor(ourPubKey); const pubKeys = await libloki.storage.getSecondaryDevicesFor(ourPubKey);
this.$('#pairedPubKeys').empty();
if (pubKeys && pubKeys.length > 0) { if (pubKeys && pubKeys.length > 0) {
this.$('#pairedPubKeys').empty();
pubKeys.forEach(x => { pubKeys.forEach(x => {
let deviceAlias = 'Paired Device'; const name = this.getPubkeyName(x);
const secretWords = window.mnemonic.pubkey_to_secret_words(x); const li = $('<li>').html(name);
const conv = ConversationController.get(x); if (window.lokiFeatureFlags.multiDeviceUnpairing) {
if (conv) { const link = $('<a>')
deviceAlias = conv.getNickname(); .text('Unpair')
.attr('href', '#');
link.on('click', () => this.requestUnpairDevice(x));
li.append(' - ');
li.append(link);
} }
this.$('#pairedPubKeys').append( this.$('#pairedPubKeys').append(li);
`<li>${deviceAlias} (${secretWords})</li>`
);
}); });
} else {
this.$('#pairedPubKeys').append('<li>No paired devices</li>');
} }
} else if (this.accepted) { } else if (this.accepted) {
defaultView.hide(); defaultView.hide();

@ -457,3 +457,7 @@ if (config.environment === 'test') {
window.shortenPubkey = pubkey => `(...${pubkey.substring(pubkey.length - 6)})`; window.shortenPubkey = pubkey => `(...${pubkey.substring(pubkey.length - 6)})`;
window.pubkeyPattern = /@[a-fA-F0-9]{64,66}\b/g; window.pubkeyPattern = /@[a-fA-F0-9]{64,66}\b/g;
window.lokiFeatureFlags = {
multiDeviceUnpairing: false,
};

Loading…
Cancel
Save