|
|
|
@ -664,40 +664,67 @@ MessageSender.prototype = {
|
|
|
|
|
return Promise.resolve();
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
async sendContactSyncMessage(contactConversation) {
|
|
|
|
|
if (!contactConversation.isPrivate()) {
|
|
|
|
|
async sendContactSyncMessage(conversations) {
|
|
|
|
|
// If we havn't got a primaryDeviceKey then we are in the middle of pairing
|
|
|
|
|
// primaryDevicePubKey is set to our own number if we are the master device
|
|
|
|
|
const primaryDeviceKey = window.storage.get('primaryDevicePubKey');
|
|
|
|
|
if (!primaryDeviceKey) {
|
|
|
|
|
return Promise.resolve();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We need to sync across 3 contacts at a time
|
|
|
|
|
// This is to avoid hitting storage server limit
|
|
|
|
|
const chunked = _.chunk(conversations, 3);
|
|
|
|
|
const syncMessages = await Promise.all(
|
|
|
|
|
chunked.map(c => libloki.api.createContactSyncProtoMessage(c))
|
|
|
|
|
);
|
|
|
|
|
const syncPromises = syncMessages
|
|
|
|
|
.filter(message => message != null)
|
|
|
|
|
.map(syncMessage => {
|
|
|
|
|
const contentMessage = new textsecure.protobuf.Content();
|
|
|
|
|
contentMessage.syncMessage = syncMessage;
|
|
|
|
|
|
|
|
|
|
const silent = true;
|
|
|
|
|
return this.sendIndividualProto(
|
|
|
|
|
primaryDeviceKey,
|
|
|
|
|
contentMessage,
|
|
|
|
|
Date.now(),
|
|
|
|
|
silent,
|
|
|
|
|
{} // options
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return Promise.all(syncPromises);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sendGroupSyncMessage(conversations) {
|
|
|
|
|
// If we havn't got a primaryDeviceKey then we are in the middle of pairing
|
|
|
|
|
// primaryDevicePubKey is set to our own number if we are the master device
|
|
|
|
|
const primaryDeviceKey = window.storage.get('primaryDevicePubKey');
|
|
|
|
|
const allOurDevices = (await libloki.storage.getAllDevicePubKeysForPrimaryPubKey(
|
|
|
|
|
primaryDeviceKey
|
|
|
|
|
))
|
|
|
|
|
// Don't send to ourselves
|
|
|
|
|
.filter(pubKey => pubKey !== textsecure.storage.user.getNumber());
|
|
|
|
|
if (
|
|
|
|
|
allOurDevices.includes(contactConversation.id) ||
|
|
|
|
|
!primaryDeviceKey ||
|
|
|
|
|
allOurDevices.length === 0
|
|
|
|
|
) {
|
|
|
|
|
// If we havn't got a primaryDeviceKey then we are in the middle of pairing
|
|
|
|
|
if (!primaryDeviceKey) {
|
|
|
|
|
return Promise.resolve();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const syncMessage = await libloki.api.createContactSyncProtoMessage([
|
|
|
|
|
contactConversation,
|
|
|
|
|
]);
|
|
|
|
|
const contentMessage = new textsecure.protobuf.Content();
|
|
|
|
|
contentMessage.syncMessage = syncMessage;
|
|
|
|
|
// We need to sync across 1 group at a time
|
|
|
|
|
// This is because we could hit the storage server limit with one group
|
|
|
|
|
const syncPromises = conversations
|
|
|
|
|
.map(c => libloki.api.createGroupSyncProtoMessage([c]))
|
|
|
|
|
.filter(message => message != null)
|
|
|
|
|
.map(syncMessage => {
|
|
|
|
|
const contentMessage = new textsecure.protobuf.Content();
|
|
|
|
|
contentMessage.syncMessage = syncMessage;
|
|
|
|
|
|
|
|
|
|
const silent = true;
|
|
|
|
|
return this.sendIndividualProto(
|
|
|
|
|
primaryDeviceKey,
|
|
|
|
|
contentMessage,
|
|
|
|
|
Date.now(),
|
|
|
|
|
silent,
|
|
|
|
|
{} // options
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
const silent = true;
|
|
|
|
|
return this.sendIndividualProto(
|
|
|
|
|
primaryDeviceKey,
|
|
|
|
|
contentMessage,
|
|
|
|
|
Date.now(),
|
|
|
|
|
silent,
|
|
|
|
|
{} // options
|
|
|
|
|
);
|
|
|
|
|
return Promise.all(syncPromises);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
sendRequestContactSyncMessage(options) {
|
|
|
|
@ -1107,7 +1134,7 @@ MessageSender.prototype = {
|
|
|
|
|
return this.sendMessage(attrs, options);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
updateGroup(groupId, name, avatar, members, recipients, options) {
|
|
|
|
|
updateGroup(groupId, name, avatar, members, admins, recipients, options) {
|
|
|
|
|
const proto = new textsecure.protobuf.DataMessage();
|
|
|
|
|
proto.group = new textsecure.protobuf.GroupContext();
|
|
|
|
|
|
|
|
|
@ -1164,6 +1191,14 @@ MessageSender.prototype = {
|
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
requestGroupInfo(groupId, groupNumbers, options) {
|
|
|
|
|
const proto = new textsecure.protobuf.DataMessage();
|
|
|
|
|
proto.group = new textsecure.protobuf.GroupContext();
|
|
|
|
|
proto.group.id = stringToArrayBuffer(groupId);
|
|
|
|
|
proto.group.type = textsecure.protobuf.GroupContext.Type.REQUEST_INFO;
|
|
|
|
|
return this.sendGroupProto(groupNumbers, proto, Date.now(), options);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
leaveGroup(groupId, groupNumbers, options) {
|
|
|
|
|
const proto = new textsecure.protobuf.DataMessage();
|
|
|
|
|
proto.group = new textsecure.protobuf.GroupContext();
|
|
|
|
@ -1251,6 +1286,7 @@ textsecure.MessageSender = function MessageSenderWrapper(username, password) {
|
|
|
|
|
sender
|
|
|
|
|
);
|
|
|
|
|
this.sendContactSyncMessage = sender.sendContactSyncMessage.bind(sender);
|
|
|
|
|
this.sendGroupSyncMessage = sender.sendGroupSyncMessage.bind(sender);
|
|
|
|
|
this.sendRequestConfigurationSyncMessage = sender.sendRequestConfigurationSyncMessage.bind(
|
|
|
|
|
sender
|
|
|
|
|
);
|
|
|
|
@ -1263,6 +1299,7 @@ textsecure.MessageSender = function MessageSenderWrapper(username, password) {
|
|
|
|
|
this.addNumberToGroup = sender.addNumberToGroup.bind(sender);
|
|
|
|
|
this.setGroupName = sender.setGroupName.bind(sender);
|
|
|
|
|
this.setGroupAvatar = sender.setGroupAvatar.bind(sender);
|
|
|
|
|
this.requestGroupInfo = sender.requestGroupInfo.bind(sender);
|
|
|
|
|
this.leaveGroup = sender.leaveGroup.bind(sender);
|
|
|
|
|
this.sendSyncMessage = sender.sendSyncMessage.bind(sender);
|
|
|
|
|
this.getProfile = sender.getProfile.bind(sender);
|
|
|
|
|