Closed group fixes. (#816)

* Fix group updates not syning

* Fix leaving closed groups

* Fix incorrect members being shown on create group dialog

* Linting

* Fix create closed group showing our own conversation
pull/825/head
Mikunj Varsani 5 years ago committed by GitHub
parent e4a48f87ab
commit beb4cdbed8

@ -2162,6 +2162,11 @@
"message": "Leave Closed Group", "message": "Leave Closed Group",
"description": "Button action that the user can click to leave the group" "description": "Button action that the user can click to leave the group"
}, },
"leaveClosedGroupConfirmation": {
"message": "Leave this Closed Group?",
"description":
"Confirmation dialog text that tells the user what will happen if they leave the closed group."
},
"leaveGroupDialogTitle": { "leaveGroupDialogTitle": {
"message": "Are you sure you want to leave this group?", "message": "Are you sure you want to leave this group?",
"description": "description":

@ -161,15 +161,18 @@
if (!conversation) { if (!conversation) {
return; return;
} }
if (conversation.isPublic()) {
// Close group leaving
if (conversation.isClosedGroup()) {
await conversation.leaveGroup();
} else if (conversation.isPublic()) {
const channelAPI = await conversation.getPublicSendData(); const channelAPI = await conversation.getPublicSendData();
if (channelAPI === null) { if (channelAPI === null) {
log.warn(`Could not get API for public conversation ${id}`); log.warn(`Could not get API for public conversation ${id}`);
} else { } else {
channelAPI.serverAPI.partChannel(channelAPI.channelId); channelAPI.serverAPI.partChannel(channelAPI.channelId);
} }
} } else if (conversation.isPrivate()) {
await conversation.destroyMessages();
const deviceIds = await textsecure.storage.protocol.getDeviceIds(id); const deviceIds = await textsecure.storage.protocol.getDeviceIds(id);
await Promise.all( await Promise.all(
deviceIds.map(deviceId => { deviceIds.map(deviceId => {
@ -181,6 +184,9 @@
return sessionCipher.deleteAllSessionsForDevice(); return sessionCipher.deleteAllSessionsForDevice();
}) })
); );
}
await conversation.destroyMessages();
await window.Signal.Data.removeConversation(id, { await window.Signal.Data.removeConversation(id, {
Conversation: Whisper.Conversation, Conversation: Whisper.Conversation,
}); });

@ -205,6 +205,11 @@
isPublic() { isPublic() {
return !!(this.id && this.id.match(/^publicChat:/)); return !!(this.id && this.id.match(/^publicChat:/));
}, },
isClosedGroup() {
return (
this.get('type') === Message.GROUP && !this.isPublic() && !this.isRss()
);
},
isClosable() { isClosable() {
return !this.isRss() || this.get('closable'); return !this.isRss() || this.get('closable');
}, },
@ -881,6 +886,9 @@
throw new Error('Invalid friend request state'); throw new Error('Invalid friend request state');
} }
}, },
isOurConversation() {
return this.id === this.ourNumber;
},
isSecondaryDevice() { isSecondaryDevice() {
return !!this.get('secondaryStatus'); return !!this.get('secondaryStatus');
}, },
@ -2712,13 +2720,16 @@
}, },
deleteContact() { deleteContact() {
const title = this.isPublic() let title = i18n('deleteContact');
? i18n('deletePublicChannel') let message = i18n('deleteContactConfirmation');
: i18n('deleteContact');
const message = this.isPublic() if (this.isPublic()) {
? i18n('deletePublicChannelConfirmation') title = i18n('deletePublicChannel');
: i18n('deleteContactConfirmation'); message = i18n('deletePublicChannelConfirmation');
} else if (this.isClosedGroup()) {
title = i18n('leaveClosedGroup');
message = i18n('leaveClosedGroupConfirmation');
}
window.confirmationDialog({ window.confirmationDialog({
title, title,

@ -238,13 +238,16 @@
this.el.append(dialog.el); this.el.append(dialog.el);
}, },
showLeaveGroupDialog(groupConvo) { showLeaveGroupDialog(groupConvo) {
const title = groupConvo.isPublic() let title = i18n('deleteContact');
? i18n('deletePublicChannel') let message = i18n('deleteContactConfirmation');
: i18n('deleteContact');
const message = groupConvo.isPublic() if (groupConvo.isPublic()) {
? i18n('deletePublicChannelConfirmation') title = i18n('deletePublicChannel');
: i18n('deleteContactConfirmation'); message = i18n('deletePublicChannelConfirmation');
} else if (groupConvo.isClosedGroup()) {
title = i18n('leaveClosedGroup');
message = i18n('leaveClosedGroupConfirmation');
}
window.confirmationDialog({ window.confirmationDialog({
title, title,

@ -640,6 +640,10 @@ MessageSender.prototype = {
}, },
async sendContactSyncMessage(contactConversation) { async sendContactSyncMessage(contactConversation) {
if (!contactConversation.isPrivate()) {
return Promise.resolve();
}
const primaryDeviceKey = window.storage.get('primaryDevicePubKey'); const primaryDeviceKey = window.storage.get('primaryDevicePubKey');
const allOurDevices = (await libloki.storage.getAllDevicePubKeysForPrimaryPubKey( const allOurDevices = (await libloki.storage.getAllDevicePubKeysForPrimaryPubKey(
primaryDeviceKey primaryDeviceKey
@ -869,9 +873,7 @@ MessageSender.prototype = {
}, },
sendGroupProto(providedNumbers, proto, timestamp = Date.now(), options = {}) { sendGroupProto(providedNumbers, proto, timestamp = Date.now(), options = {}) {
const me = textsecure.storage.user.getNumber(); if (providedNumbers.length === 0) {
const numbers = providedNumbers.filter(number => number !== me);
if (numbers.length === 0) {
return Promise.resolve({ return Promise.resolve({
successfulNumbers: [], successfulNumbers: [],
failoverNumbers: [], failoverNumbers: [],
@ -894,7 +896,7 @@ MessageSender.prototype = {
this.sendMessageProto( this.sendMessageProto(
timestamp, timestamp,
numbers, providedNumbers,
proto, proto,
callback, callback,
silent, silent,

@ -69,7 +69,8 @@ export class LeftPaneMessageSection extends React.Component<Props, any> {
this.state = { this.state = {
showComposeView: false, showComposeView: false,
pubKeyPasted: '', pubKeyPasted: '',
shouldRenderMessageOnboarding: length === 0 && renderOnboardingSetting && false, shouldRenderMessageOnboarding:
length === 0 && renderOnboardingSetting && false,
connectSuccess: false, connectSuccess: false,
loading: false, loading: false,
}; };

@ -52,14 +52,16 @@ export class SessionClosableOverlay extends React.Component<Props, State> {
} }
public getContacts() { public getContacts() {
const conversations = window.getConversations(); const conversations = window.getConversations() || [];
let conversationList = conversations; const conversationList = conversations.filter((conversation: any) => {
if (conversationList !== undefined) { return (
conversationList = conversationList.filter((conv: any) => { !conversation.isOurConversation() &&
return !conv.isRss() && !conv.isPublic() && conv.attributes.lastMessage; conversation.isPrivate() &&
!conversation.isSecondaryDevice() &&
conversation.isFriend()
);
}); });
}
return conversationList.map((d: any) => { return conversationList.map((d: any) => {
const lokiProfile = d.getLokiProfile(); const lokiProfile = d.getLokiProfile();

Loading…
Cancel
Save