|
|
|
@ -1041,64 +1041,6 @@ MessageSender.prototype = {
|
|
|
|
|
silent,
|
|
|
|
|
options
|
|
|
|
|
).catch(logError('resetSession/sendToContact error:'));
|
|
|
|
|
/*
|
|
|
|
|
const deleteAllSessions = targetNumber =>
|
|
|
|
|
textsecure.storage.protocol.getDeviceIds(targetNumber).then(deviceIds =>
|
|
|
|
|
Promise.all(
|
|
|
|
|
deviceIds.map(deviceId => {
|
|
|
|
|
const address = new libsignal.SignalProtocolAddress(
|
|
|
|
|
targetNumber,
|
|
|
|
|
deviceId
|
|
|
|
|
);
|
|
|
|
|
window.log.info('deleting sessions for', address.toString());
|
|
|
|
|
const sessionCipher = new libsignal.SessionCipher(
|
|
|
|
|
textsecure.storage.protocol,
|
|
|
|
|
address
|
|
|
|
|
);
|
|
|
|
|
return sessionCipher.deleteAllSessionsForDevice();
|
|
|
|
|
})
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const sendToContactPromise = deleteAllSessions(number)
|
|
|
|
|
.catch(logError('resetSession/deleteAllSessions1 error:'))
|
|
|
|
|
.then(() => {
|
|
|
|
|
window.log.info(
|
|
|
|
|
'finished closing local sessions, now sending to contact'
|
|
|
|
|
);
|
|
|
|
|
return this.sendIndividualProto(
|
|
|
|
|
number,
|
|
|
|
|
proto,
|
|
|
|
|
timestamp,
|
|
|
|
|
silent,
|
|
|
|
|
options
|
|
|
|
|
).catch(logError('resetSession/sendToContact error:'));
|
|
|
|
|
})
|
|
|
|
|
.then(() =>
|
|
|
|
|
deleteAllSessions(number).catch(
|
|
|
|
|
logError('resetSession/deleteAllSessions2 error:')
|
|
|
|
|
)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
const myNumber = textsecure.storage.user.getNumber();
|
|
|
|
|
// We already sent the reset session to our other devices in the code above!
|
|
|
|
|
if (number === myNumber) {
|
|
|
|
|
return sendToContactPromise;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const buffer = proto.toArrayBuffer();
|
|
|
|
|
const sendSyncPromise = this.sendSyncMessage(
|
|
|
|
|
buffer,
|
|
|
|
|
timestamp,
|
|
|
|
|
number,
|
|
|
|
|
null,
|
|
|
|
|
[],
|
|
|
|
|
[],
|
|
|
|
|
options
|
|
|
|
|
).catch(logError('resetSession/sendSync error:'));
|
|
|
|
|
|
|
|
|
|
return Promise.all([sendToContact, sendSyncPromise]);
|
|
|
|
|
*/
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async sendMessageToGroup(
|
|
|
|
|