|
|
|
@ -216,17 +216,26 @@ OutgoingMessage.prototype = {
|
|
|
|
|
this.errors[this.errors.length] = error;
|
|
|
|
|
this.numberCompleted();
|
|
|
|
|
},
|
|
|
|
|
reloadDevicesAndSend(primaryPubKey) {
|
|
|
|
|
reloadDevicesAndSend(primaryPubKey, multiDevice = true, excludedDevices = []) {
|
|
|
|
|
const ourNumber = textsecure.storage.user.getNumber();
|
|
|
|
|
|
|
|
|
|
if (!multiDevice) {
|
|
|
|
|
if (primaryPubKey === ourNumber) {
|
|
|
|
|
return Promise.resolve();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return this.doSendMessage(primaryPubKey, [primaryPubKey]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
libloki.storage
|
|
|
|
|
.getAllDevicePubKeysForPrimaryPubKey(primaryPubKey)
|
|
|
|
|
// Don't send to ourselves
|
|
|
|
|
.then(devicesPubKeys =>
|
|
|
|
|
devicesPubKeys.filter(pubKey => pubKey !== ourNumber)
|
|
|
|
|
devicesPubKeys.filter(pubKey => pubKey !== ourNumber && !excludedDevices.includes(pubKey))
|
|
|
|
|
)
|
|
|
|
|
.then(devicesPubKeys => {
|
|
|
|
|
|
|
|
|
|
if (devicesPubKeys.length === 0) {
|
|
|
|
|
// No need to start the sending of message without a recipient
|
|
|
|
|
return Promise.resolve();
|
|
|
|
@ -349,7 +358,7 @@ OutgoingMessage.prototype = {
|
|
|
|
|
const updatedDevices = await getStaleDeviceIdsForNumber(devicePubKey);
|
|
|
|
|
const keysFound = await this.getKeysForNumber(devicePubKey, updatedDevices);
|
|
|
|
|
|
|
|
|
|
let isMultiDeviceRequest = false;
|
|
|
|
|
// let isMultiDeviceRequest = false;
|
|
|
|
|
let thisDeviceMessageType = this.messageType;
|
|
|
|
|
if (
|
|
|
|
|
thisDeviceMessageType !== 'pairing-request' &&
|
|
|
|
@ -370,7 +379,7 @@ OutgoingMessage.prototype = {
|
|
|
|
|
// - We haven't received a friend request from this device
|
|
|
|
|
// - We haven't sent a friend request recently
|
|
|
|
|
if (conversation.friendRequestTimerIsExpired()) {
|
|
|
|
|
isMultiDeviceRequest = true;
|
|
|
|
|
// isMultiDeviceRequest = true;
|
|
|
|
|
thisDeviceMessageType = 'friend-request';
|
|
|
|
|
} else {
|
|
|
|
|
// Throttle automated friend requests
|
|
|
|
@ -412,27 +421,11 @@ OutgoingMessage.prototype = {
|
|
|
|
|
window.log.info('attaching prekeys to outgoing message');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
let messageBuffer;
|
|
|
|
|
let logDetails;
|
|
|
|
|
if (isMultiDeviceRequest) {
|
|
|
|
|
const tempMessage = new textsecure.protobuf.Content();
|
|
|
|
|
const tempDataMessage = new textsecure.protobuf.DataMessage();
|
|
|
|
|
tempDataMessage.body = i18n('secondaryDeviceDefaultFR');
|
|
|
|
|
if (this.message.dataMessage && this.message.dataMessage.profile) {
|
|
|
|
|
tempDataMessage.profile = this.message.dataMessage.profile;
|
|
|
|
|
}
|
|
|
|
|
tempMessage.preKeyBundleMessage = this.message.preKeyBundleMessage;
|
|
|
|
|
tempMessage.dataMessage = tempDataMessage;
|
|
|
|
|
messageBuffer = tempMessage.toArrayBuffer();
|
|
|
|
|
logDetails = {
|
|
|
|
|
tempMessage,
|
|
|
|
|
};
|
|
|
|
|
} else {
|
|
|
|
|
messageBuffer = this.message.toArrayBuffer();
|
|
|
|
|
logDetails = {
|
|
|
|
|
message: this.message,
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
const messageBuffer = this.message.toArrayBuffer();
|
|
|
|
|
const logDetails = {
|
|
|
|
|
message: this.message,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const messageTypeStr = this.debugMessageType;
|
|
|
|
|
|
|
|
|
|
const ourPubKey = textsecure.storage.user.getNumber();
|
|
|
|
@ -489,6 +482,7 @@ OutgoingMessage.prototype = {
|
|
|
|
|
plaintext,
|
|
|
|
|
pubKey,
|
|
|
|
|
isSessionRequest,
|
|
|
|
|
isFriendRequest,
|
|
|
|
|
enableFallBackEncryption,
|
|
|
|
|
} = clearMessage;
|
|
|
|
|
// Session doesn't use the deviceId scheme, it's always 1.
|
|
|
|
@ -534,7 +528,7 @@ OutgoingMessage.prototype = {
|
|
|
|
|
sourceDevice,
|
|
|
|
|
content,
|
|
|
|
|
pubKey,
|
|
|
|
|
isFriendRequest: enableFallBackEncryption,
|
|
|
|
|
isFriendRequest,
|
|
|
|
|
isSessionRequest,
|
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
@ -708,14 +702,14 @@ OutgoingMessage.prototype = {
|
|
|
|
|
return promise;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sendToNumber(number) {
|
|
|
|
|
sendToNumber(number, multiDevice = true, excludedDevices = []) {
|
|
|
|
|
let conversation;
|
|
|
|
|
try {
|
|
|
|
|
conversation = ConversationController.get(number);
|
|
|
|
|
} catch (e) {
|
|
|
|
|
// do nothing
|
|
|
|
|
}
|
|
|
|
|
return this.reloadDevicesAndSend(number).catch(error => {
|
|
|
|
|
return this.reloadDevicesAndSend(number, multiDevice, excludedDevices).catch(error => {
|
|
|
|
|
conversation.resetPendingSend();
|
|
|
|
|
if (error.message === 'Identity key changed') {
|
|
|
|
|
// eslint-disable-next-line no-param-reassign
|
|
|
|
@ -740,9 +734,7 @@ OutgoingMessage.prototype = {
|
|
|
|
|
OutgoingMessage.buildAutoFriendRequestMessage = function buildAutoFriendRequestMessage(
|
|
|
|
|
pubKey
|
|
|
|
|
) {
|
|
|
|
|
const body =
|
|
|
|
|
'(If you see this message, you must be using an out-of-date client)';
|
|
|
|
|
|
|
|
|
|
const body = 'Please accept to enable messages to be synced across devices';
|
|
|
|
|
const dataMessage = new textsecure.protobuf.DataMessage({ body });
|
|
|
|
|
|
|
|
|
|
const content = new textsecure.protobuf.Content({
|
|
|
|
@ -750,7 +742,7 @@ OutgoingMessage.buildAutoFriendRequestMessage = function buildAutoFriendRequestM
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const options = {
|
|
|
|
|
messageType: 'onlineBroadcast',
|
|
|
|
|
messageType: 'friend-request',
|
|
|
|
|
debugMessageType: DebugMessageType.AUTO_FR_REQUEST,
|
|
|
|
|
};
|
|
|
|
|
// Send a empty message with information about how to contact us directly
|
|
|
|
@ -768,9 +760,12 @@ OutgoingMessage.buildAutoFriendRequestMessage = function buildAutoFriendRequestM
|
|
|
|
|
OutgoingMessage.buildSessionRequestMessage = function buildSessionRequestMessage(
|
|
|
|
|
pubKey
|
|
|
|
|
) {
|
|
|
|
|
const body =
|
|
|
|
|
'(If you see this message, you must be using an out-of-date client)';
|
|
|
|
|
|
|
|
|
|
const flags = textsecure.protobuf.DataMessage.Flags.SESSION_REQUEST;
|
|
|
|
|
|
|
|
|
|
const dataMessage = new textsecure.protobuf.DataMessage({ flags });
|
|
|
|
|
const dataMessage = new textsecure.protobuf.DataMessage({ flags, body });
|
|
|
|
|
|
|
|
|
|
const content = new textsecure.protobuf.Content({
|
|
|
|
|
dataMessage,
|
|
|
|
|