Add channel id field to invitations

pull/645/head
Maxim Shishmarev 5 years ago
parent a5fce17d8c
commit 8ea82b14e3

@ -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) {

@ -464,7 +464,8 @@
onClick: () => {
Whisper.events.trigger(
'invitationAccepted',
invitation.serverAddress
invitation.serverAddress,
invitation.channelId
);
},
};

@ -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
);
},

@ -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,
}
);

@ -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;

Loading…
Cancel
Save