From 8ea82b14e3b96a222aa59bab745a42ed07c23a86 Mon Sep 17 00:00:00 2001 From: Maxim Shishmarev Date: Mon, 25 Nov 2019 10:02:24 +1100 Subject: [PATCH] Add channel id field to invitations --- js/background.js | 69 ++++++++++++++------------ js/models/messages.js | 3 +- js/views/invite_friends_dialog_view.js | 7 ++- libtextsecure/sendmessage.js | 1 + protos/SignalService.proto | 3 +- 5 files changed, 47 insertions(+), 36 deletions(-) diff --git a/js/background.js b/js/background.js index dda8f8199..9c8ac20ef 100644 --- a/js/background.js +++ b/js/background.js @@ -809,6 +809,7 @@ if (convo) { convo.sendMessage('', null, null, null, { serverName: serverInfo.name, + channelId: serverInfo.channelId, serverAddress: serverInfo.address, }); } @@ -833,43 +834,45 @@ } }); - Whisper.events.on('invitationAccepted', async serverAddress => { - // To some degree this has been copy-pasted - // form connection_to_server_dialog_view.js: - const channelId = 1; - const rawServerUrl = serverAddress - .replace(/^https?:\/\//i, '') - .replace(/[/\\]+$/i, ''); - const sslServerUrl = `https://${rawServerUrl}`; - const conversationId = `publicChat:${channelId}@${rawServerUrl}`; - - const conversationExists = ConversationController.get(conversationId); - if (conversationExists) { - window.log.warn('We are already a member of this public chat'); - return; - } + Whisper.events.on( + 'invitationAccepted', + async (serverAddress, channelId) => { + // To some degree this has been copy-pasted + // form connection_to_server_dialog_view.js: + const rawServerUrl = serverAddress + .replace(/^https?:\/\//i, '') + .replace(/[/\\]+$/i, ''); + const sslServerUrl = `https://${rawServerUrl}`; + const conversationId = `publicChat:${channelId}@${rawServerUrl}`; + + const conversationExists = ConversationController.get(conversationId); + if (conversationExists) { + window.log.warn('We are already a member of this public chat'); + return; + } - const serverAPI = await window.lokiPublicChatAPI.findOrCreateServer( - sslServerUrl - ); - if (!serverAPI) { - window.log.warn(`Could not connect to ${serverAddress}`); - return; - } + const serverAPI = await window.lokiPublicChatAPI.findOrCreateServer( + sslServerUrl + ); + if (!serverAPI) { + window.log.warn(`Could not connect to ${serverAddress}`); + return; + } - const conversation = await ConversationController.getOrCreateAndWait( - conversationId, - 'group' - ); + const conversation = await ConversationController.getOrCreateAndWait( + conversationId, + 'group' + ); - serverAPI.findOrCreateChannel(channelId, conversationId); - await conversation.setPublicSource(sslServerUrl, channelId); - await conversation.setFriendRequestStatus( - window.friends.friendRequestStatusEnum.friends - ); + serverAPI.findOrCreateChannel(channelId, conversationId); + await conversation.setPublicSource(sslServerUrl, channelId); + await conversation.setFriendRequestStatus( + window.friends.friendRequestStatusEnum.friends + ); - appView.openConversation(conversationId, {}); - }); + appView.openConversation(conversationId, {}); + } + ); Whisper.events.on('leaveGroup', async groupConvo => { if (appView) { diff --git a/js/models/messages.js b/js/models/messages.js index fec2bb975..4e558816f 100644 --- a/js/models/messages.js +++ b/js/models/messages.js @@ -464,7 +464,8 @@ onClick: () => { Whisper.events.trigger( 'invitationAccepted', - invitation.serverAddress + invitation.serverAddress, + invitation.channelId ); }, }; diff --git a/js/views/invite_friends_dialog_view.js b/js/views/invite_friends_dialog_view.js index 4a8a1735b..06d59e9df 100644 --- a/js/views/invite_friends_dialog_view.js +++ b/js/views/invite_friends_dialog_view.js @@ -21,6 +21,7 @@ this.friends = friends; this.chatName = convo.get('name'); this.chatServer = convo.get('server'); + this.channelId = convo.get('channelId'); this.$el.focus(); this.render(); @@ -45,7 +46,11 @@ }, submit(pubkeys) { window.sendGroupInvitations( - { address: this.chatServer, name: this.chatName }, + { + address: this.chatServer, + name: this.chatName, + channelId: this.channelId, + }, pubkeys ); }, diff --git a/libtextsecure/sendmessage.js b/libtextsecure/sendmessage.js index 81afbe085..a021fd9df 100644 --- a/libtextsecure/sendmessage.js +++ b/libtextsecure/sendmessage.js @@ -165,6 +165,7 @@ Message.prototype = { proto.groupInvitation = new textsecure.protobuf.DataMessage.GroupInvitation( { serverAddress: this.groupInvitation.serverAddress, + channelId: this.groupInvitation.channelId, serverName: this.groupInvitation.serverName, } ); diff --git a/protos/SignalService.proto b/protos/SignalService.proto index b2203a11f..9c0000ede 100644 --- a/protos/SignalService.proto +++ b/protos/SignalService.proto @@ -202,7 +202,8 @@ message DataMessage { message GroupInvitation { optional string serverAddress = 1; - optional string serverName = 2; + optional string channelId = 2; + optional string serverName = 3; } optional string body = 1;