fix: compilation issues since merge

unwrapped was duplicating in onboarding1, so I had to duplicate my fix
to not unwrap it
pull/3122/head
Audric Ackermann 9 months ago
parent 6747652c8c
commit 60c6f47bfa

@ -1,7 +1,7 @@
/* eslint-disable no-await-in-loop */ /* eslint-disable no-await-in-loop */
/* eslint-disable more/no-then */ /* eslint-disable more/no-then */
/* eslint-disable @typescript-eslint/no-misused-promises */ /* eslint-disable @typescript-eslint/no-misused-promises */
import { compact, concat, flatten, isEmpty, last, sample, toNumber, uniqBy } from 'lodash'; import { compact, concat, flatten, isEmpty, last, sample, uniqBy } from 'lodash';
import { Data, Snode } from '../../../data/data'; import { Data, Snode } from '../../../data/data';
import { SignalService } from '../../../protobuf'; import { SignalService } from '../../../protobuf';
import * as Receiver from '../../../receiver/receiver'; import * as Receiver from '../../../receiver/receiver';
@ -377,59 +377,54 @@ export class SwarmPolling {
userConfigMessagesMerged: Array<RetrieveMessageItemWithNamespace>, userConfigMessagesMerged: Array<RetrieveMessageItemWithNamespace>,
returnDisplayNameOnly?: boolean returnDisplayNameOnly?: boolean
): Promise<string> { ): Promise<string> {
if (!userConfigMessagesMerged.length) { if (!userConfigMessagesMerged.length) {
return ''; return '';
} }
try { try {
window.log.info( window.log.info(
`handleConfigMessagesViaLibSession of "${userConfigMessagesMerged.length}" messages with libsession` `handleConfigMessagesViaLibSession of "${userConfigMessagesMerged.length}" messages with libsession`
); );
if (returnDisplayNameOnly) { if (returnDisplayNameOnly) {
try { try {
const keypair = await UserUtils.getUserED25519KeyPairBytes(); const keypair = await UserUtils.getUserED25519KeyPairBytes();
if (!keypair || !keypair.privKeyBytes) { if (!keypair || !keypair.privKeyBytes) {
throw new Error('edkeypair not found for current user'); throw new Error('edkeypair not found for current user');
} }
const privateKeyEd25519 = keypair.privKeyBytes; const privateKeyEd25519 = keypair.privKeyBytes;
// we take the lastest config message to create the wrapper in memory // we take the lastest config message to create the wrapper in memory
const incomingConfigMessages = userConfigMessagesMerged.map(m => ({ const incomingConfigMessages = userConfigMessagesMerged.map(m => ({
data: StringUtils.fromBase64ToArray( m.data), data: StringUtils.fromBase64ToArray(m.data),
hash: m.hash, hash: m.hash,
})); }));
await GenericWrapperActions.init('UserConfig', privateKeyEd25519, null); await GenericWrapperActions.init('UserConfig', privateKeyEd25519, null);
await GenericWrapperActions.merge('UserConfig', incomingConfigMessages); await GenericWrapperActions.merge('UserConfig', incomingConfigMessages);
const userInfo = await UserConfigWrapperActions.getUserInfo(); const userInfo = await UserConfigWrapperActions.getUserInfo();
if (!userInfo) { if (!userInfo) {
throw new Error('UserInfo not found'); throw new Error('UserInfo not found');
}
return userInfo.name;
} catch (e) {
window.log.warn(
'LibSessionUtil.initializeLibSessionUtilWrappers failed with',
e.message
);
} finally {
await GenericWrapperActions.free('UserConfig');
} }
return userInfo.name;
return ''; } catch (e) {
window.log.warn('LibSessionUtil.initializeLibSessionUtilWrappers failed with', e.message);
} finally {
await GenericWrapperActions.free('UserConfig');
} }
await ConfigMessageHandler.handleConfigMessagesViaLibSession(userConfigMessagesMerged); return '';
} catch (e) {
const allMessageHases = userConfigMessagesMerged.map(m => m.hash).join(',');
window.log.warn(
`failed to handle messages hashes "${allMessageHases}" with libsession. Error: "${e.message}"`
);
} }
return ''
await ConfigMessageHandler.handleConfigMessagesViaLibSession(userConfigMessagesMerged);
} catch (e) {
const allMessageHases = userConfigMessagesMerged.map(m => m.hash).join(',');
window.log.warn(
`failed to handle messages hashes "${allMessageHases}" with libsession. Error: "${e.message}"`
);
}
return '';
} }
// Fetches messages for `pubkey` from `node` potentially updating // Fetches messages for `pubkey` from `node` potentially updating
@ -693,11 +688,14 @@ export class SwarmPolling {
); );
} }
const userConfigMessages = resultsFromUserProfile const userConfigMessagesWithNamespace: Array<Array<RetrieveMessageItemWithNamespace>> =
.filter(m => SnodeNamespace.isUserConfigNamespace(m.namespace)) resultsFromUserProfile.map(r => {
.map(r => r.messages.messages); return (r.messages.messages || []).map(m => {
return { ...m, namespace: SnodeNamespaces.UserProfile };
});
});
const userConfigMessagesMerged = flatten(compact(userConfigMessages)); const userConfigMessagesMerged = flatten(compact(userConfigMessagesWithNamespace));
if (!userConfigMessagesMerged.length) { if (!userConfigMessagesMerged.length) {
throw new NotFoundError( throw new NotFoundError(
'[pollOnceForOurDisplayName] after merging there are no user config messages' '[pollOnceForOurDisplayName] after merging there are no user config messages'

Loading…
Cancel
Save