fix: allow legacy config message during linking

We only handle handlethem after the new config message ones, so if there is a
shared config message on the network we will use it for the linking
process instead. The legacy one this commit is about is bound to be
removed completely and will only be used until our users have updated to
the new ones for some time.
pull/2620/head
Audric Ackermann 2 years ago
parent fe5eea4c8d
commit 027bd46ff7

@ -237,7 +237,6 @@ const { setupi18n } = require('./ts/util/i18n');
window.Signal = data.initData(); window.Signal = data.initData();
const { getConversationController } = require('./ts/session/conversations/ConversationController'); const { getConversationController } = require('./ts/session/conversations/ConversationController');
const { isEmpty } = require('lodash');
window.getConversationController = getConversationController; window.getConversationController = getConversationController;
// Linux seems to periodically let the event loop stop, so this is a global workaround // Linux seems to periodically let the event loop stop, so this is a global workaround
setInterval(() => { setInterval(() => {

@ -24,6 +24,7 @@ import { toHex } from '../session/utils/String';
import { configurationMessageReceived, trigger } from '../shims/events'; import { configurationMessageReceived, trigger } from '../shims/events';
import { assertUnreachable } from '../types/sqlSharedTypes'; import { assertUnreachable } from '../types/sqlSharedTypes';
import { BlockedNumberController } from '../util'; import { BlockedNumberController } from '../util';
import { Registration } from '../util/registration';
import { getLastProfileUpdateTimestamp, setLastProfileUpdateTimestamp } from '../util/storage'; import { getLastProfileUpdateTimestamp, setLastProfileUpdateTimestamp } from '../util/storage';
import { ConfigWrapperObjectTypes } from '../webworker/workers/browser/libsession_worker_functions'; import { ConfigWrapperObjectTypes } from '../webworker/workers/browser/libsession_worker_functions';
import { import {
@ -654,8 +655,8 @@ async function handleOurProfileUpdateLegacy(
sentAt: number | Long, sentAt: number | Long,
configMessage: SignalService.ConfigurationMessage configMessage: SignalService.ConfigurationMessage
) { ) {
// this call won't be needed with the new sharedUtilLibrary // we want to allow if we are not registered, as we might need to fetch an old config message (can be removed once we released for a weeks the libsession util)
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
return; return;
} }
const latestProfileUpdateTimestamp = getLastProfileUpdateTimestamp(); const latestProfileUpdateTimestamp = getLastProfileUpdateTimestamp();
@ -678,7 +679,7 @@ async function handleGroupsAndContactsFromConfigMessageLegacy(
envelope: EnvelopePlus, envelope: EnvelopePlus,
configMessage: SignalService.ConfigurationMessage configMessage: SignalService.ConfigurationMessage
) { ) {
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
return; return;
} }
const envelopeTimestamp = toNumber(envelope.timestamp); const envelopeTimestamp = toNumber(envelope.timestamp);
@ -718,7 +719,7 @@ async function handleGroupsAndContactsFromConfigMessageLegacy(
* @param openGroups string array of open group urls * @param openGroups string array of open group urls
*/ */
const handleOpenGroupsFromConfig = (openGroups: Array<string>) => { const handleOpenGroupsFromConfig = (openGroups: Array<string>) => {
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
return; return;
} }
const numberOpenGroup = openGroups?.length || 0; const numberOpenGroup = openGroups?.length || 0;
@ -746,7 +747,7 @@ const handleClosedGroupsFromConfigLegacy = async (
closedGroups: Array<SignalService.ConfigurationMessage.IClosedGroup>, closedGroups: Array<SignalService.ConfigurationMessage.IClosedGroup>,
envelope: EnvelopePlus envelope: EnvelopePlus
) => { ) => {
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
return; return;
} }
const numberClosedGroup = closedGroups?.length || 0; const numberClosedGroup = closedGroups?.length || 0;
@ -781,7 +782,7 @@ const handleContactFromConfigLegacy = async (
contactReceived: SignalService.ConfigurationMessage.IContact, contactReceived: SignalService.ConfigurationMessage.IContact,
envelope: EnvelopePlus envelope: EnvelopePlus
) => { ) => {
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
return; return;
} }
try { try {
@ -845,7 +846,11 @@ async function handleConfigurationMessageLegacy(
envelope: EnvelopePlus, envelope: EnvelopePlus,
configurationMessage: SignalService.ConfigurationMessage configurationMessage: SignalService.ConfigurationMessage
): Promise<void> { ): Promise<void> {
if (window.sessionFeatureFlags.useSharedUtilForUserConfig) { // when the useSharedUtilForUserConfig flag is ON, we want only allow a legacy config message if we are registering a new user.
// this is to allow users linking a device to find their config message if they do not have a shared config message yet.
// the process of those messages is always done after the process of the shared config messages, so that's only a fallback.
if (window.sessionFeatureFlags.useSharedUtilForUserConfig && Registration.isDone()) {
window?.log?.info( window?.log?.info(
'useSharedUtilForUserConfig is set, not handling config messages with "handleConfigurationMessageLegacy()"' 'useSharedUtilForUserConfig is set, not handling config messages with "handleConfigurationMessageLegacy()"'
); );

@ -181,6 +181,8 @@ async function registrationDone(ourPubkey: string, displayName: string) {
// initializeLibSessionUtilWrappers needs our publicKey to be set // initializeLibSessionUtilWrappers needs our publicKey to be set
await Storage.put('primaryDevicePubKey', ourPubkey); await Storage.put('primaryDevicePubKey', ourPubkey);
await Registration.markDone();
try { try {
await LibSessionUtil.initializeLibSessionUtilWrappers(); await LibSessionUtil.initializeLibSessionUtilWrappers();
} catch (e) { } catch (e) {
@ -203,8 +205,6 @@ async function registrationDone(ourPubkey: string, displayName: string) {
}; };
window.inboxStore?.dispatch(userActions.userChanged(user)); window.inboxStore?.dispatch(userActions.userChanged(user));
await Registration.markDone();
window?.log?.info('dispatching registration event'); window?.log?.info('dispatching registration event');
trigger('registration_done'); trigger('registration_done');
} }

Loading…
Cancel
Save