feat: depracate getLastProfileUpdateTimestamp

since new user config has been on for a few months
pull/3056/head
William Grant 1 year ago
parent 5e79ebc239
commit 76b7c2192f

@ -35,12 +35,7 @@ import { assertUnreachable } from '../types/sqlSharedTypes';
import { BlockedNumberController } from '../util';
import { Registration } from '../util/registration';
import { ReleasedFeatures } from '../util/releaseFeature';
import {
Storage,
getLastProfileUpdateTimestamp,
isSignInByLinking,
setLastProfileUpdateTimestamp,
} from '../util/storage';
import { Storage, isSignInByLinking, setLastProfileUpdateTimestamp } from '../util/storage';
// eslint-disable-next-line import/no-unresolved
import { ConfigWrapperObjectTypes } from '../webworker/workers/browser/libsession_worker_functions';
@ -946,32 +941,6 @@ async function updateOurProfileLegacyOrViaLibSession({
}
}
async function handleOurProfileUpdateLegacy(
sentAt: number | Long,
configMessage: SignalService.ConfigurationMessage
) {
const userConfigLibsession = await ReleasedFeatures.checkIsUserConfigFeatureReleased();
// 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 (userConfigLibsession && !isSignInByLinking()) {
return;
}
const latestProfileUpdateTimestamp = getLastProfileUpdateTimestamp();
if (!latestProfileUpdateTimestamp || sentAt > latestProfileUpdateTimestamp) {
window?.log?.info(
`Handling our profileUdpate ourLastUpdate:${latestProfileUpdateTimestamp}, envelope sent at: ${sentAt}`
);
const { profileKey, profilePicture, displayName } = configMessage;
await updateOurProfileLegacyOrViaLibSession({
sentAt: toNumber(sentAt),
displayName,
profileUrl: profilePicture,
profileKey,
priority: null, // passing null to say do not set the priority, as we do not get one from the legacy config message
});
}
}
async function handleGroupsAndContactsFromConfigMessageLegacy(
envelope: EnvelopePlus,
configMessage: SignalService.ConfigurationMessage
@ -1141,7 +1110,6 @@ async function handleConfigurationMessageLegacy(
return;
}
await handleOurProfileUpdateLegacy(envelope.timestamp, configurationMessage);
await handleGroupsAndContactsFromConfigMessageLegacy(envelope, configurationMessage);
await removeFromCache(envelope);
}

@ -129,10 +129,6 @@ export async function setSignWithRecoveryPhrase(isRecoveryPhraseUsed: boolean) {
await put('is_sign_in_recovery_phrase', isRecoveryPhraseUsed);
}
export function getLastProfileUpdateTimestamp() {
return get('last_profile_update_timestamp');
}
export async function setLastProfileUpdateTimestamp(lastUpdateTimestamp: number) {
if (await ReleasedFeatures.checkIsUserConfigFeatureReleased()) {
return;

Loading…
Cancel
Save