You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
308 lines
11 KiB
TypeScript
308 lines
11 KiB
TypeScript
import { compact, isArray, isEmpty, isNumber, isString } from 'lodash';
|
|
import { v4 } from 'uuid';
|
|
import { UserUtils } from '../..';
|
|
import { ConfigDumpData } from '../../../../data/configDump/configDump';
|
|
import { ConfigurationSyncJobDone } from '../../../../shims/events';
|
|
import { assertUnreachable } from '../../../../types/sqlSharedTypes';
|
|
import { GenericWrapperActions } from '../../../../webworker/workers/browser/libsession_worker_interface';
|
|
import { NotEmptyArrayOfBatchResults } from '../../../apis/snode_api/SnodeRequestTypes';
|
|
import { getConversationController } from '../../../conversations';
|
|
import { SharedConfigMessage } from '../../../messages/outgoing/controlMessage/SharedConfigMessage';
|
|
import { MessageSender } from '../../../sending/MessageSender';
|
|
import { LibSessionUtil, OutgoingConfResult } from '../../libsession/libsession_utils';
|
|
import { runners } from '../JobRunner';
|
|
import {
|
|
AddJobCheckReturn,
|
|
ConfigurationSyncPersistedData,
|
|
PersistedJob,
|
|
RunJobResult,
|
|
} from '../PersistedJob';
|
|
|
|
const defaultMsBetweenRetries = 3000;
|
|
const defaultMaxAttempts = 3;
|
|
|
|
/**
|
|
* We want to run each of those jobs at least 3seconds apart.
|
|
* So every time one of that job finishes, update this timestamp, so we know when adding a new job, what is the next minimun date to run it.
|
|
*/
|
|
let lastRunConfigSyncJobTimestamp: number | null = null;
|
|
|
|
export type SingleDestinationChanges = {
|
|
messages: Array<OutgoingConfResult>;
|
|
allOldHashes: Array<string>;
|
|
};
|
|
|
|
type SuccessfulChange = {
|
|
message: SharedConfigMessage;
|
|
updatedHash: string;
|
|
};
|
|
|
|
/**
|
|
* Later in the syncing logic, we want to batch-send all the updates for a pubkey in a single batch call.
|
|
* To make this easier, this function prebuilds and merges together all the changes for each pubkey.
|
|
*/
|
|
async function retrieveSingleDestinationChanges(
|
|
destination: string
|
|
): Promise<SingleDestinationChanges> {
|
|
const outgoingConfResults = await LibSessionUtil.pendingChangesForPubkey(destination);
|
|
|
|
const compactedHashes = compact(outgoingConfResults.map(m => m.oldMessageHashes)).flat();
|
|
|
|
return { messages: outgoingConfResults, allOldHashes: compactedHashes };
|
|
}
|
|
|
|
/**
|
|
* This function is run once we get the results from the multiple batch-send.
|
|
*/
|
|
function resultsToSuccessfulChange(
|
|
result: NotEmptyArrayOfBatchResults | null,
|
|
request: SingleDestinationChanges
|
|
): Array<SuccessfulChange> {
|
|
const successfulChanges: Array<SuccessfulChange> = [];
|
|
|
|
/**
|
|
* For each batch request, we get as result
|
|
* - status code + hash of the new config message
|
|
* - status code of the delete of all messages as given by the request hashes.
|
|
*
|
|
* As it is a sequence, the delete might have failed but the new config message might still be posted.
|
|
* So we need to check which request failed, and if it is the delete by hashes, we need to add the hash of the posted message to the list of hashes
|
|
*/
|
|
|
|
try {
|
|
if (!result?.length) {
|
|
return successfulChanges;
|
|
}
|
|
|
|
for (let j = 0; j < result.length; j++) {
|
|
const batchResult = result[j];
|
|
const messagePostedHashes = batchResult?.body?.hash;
|
|
|
|
if (
|
|
batchResult.code === 200 &&
|
|
isString(messagePostedHashes) &&
|
|
request.messages?.[j].message
|
|
) {
|
|
// the library keeps track of the hashes to push and pushed using the hashes now
|
|
successfulChanges.push({
|
|
updatedHash: messagePostedHashes,
|
|
message: request.messages?.[j].message,
|
|
});
|
|
}
|
|
}
|
|
|
|
return successfulChanges;
|
|
} catch (e) {
|
|
throw e;
|
|
}
|
|
}
|
|
|
|
async function buildAndSaveDumpsToDB(
|
|
changes: Array<SuccessfulChange>,
|
|
destination: string
|
|
): Promise<void> {
|
|
for (let i = 0; i < changes.length; i++) {
|
|
const change = changes[i];
|
|
const variant = LibSessionUtil.kindToVariant(change.message.kind);
|
|
|
|
const needsDump = await LibSessionUtil.markAsPushed(
|
|
variant,
|
|
destination,
|
|
change.message.seqno.toNumber(),
|
|
change.updatedHash
|
|
);
|
|
|
|
if (!needsDump) {
|
|
continue;
|
|
}
|
|
const dump = await GenericWrapperActions.dump(variant);
|
|
await ConfigDumpData.saveConfigDump({
|
|
data: dump,
|
|
publicKey: destination,
|
|
variant,
|
|
});
|
|
}
|
|
}
|
|
|
|
class ConfigurationSyncJob extends PersistedJob<ConfigurationSyncPersistedData> {
|
|
constructor({
|
|
identifier,
|
|
nextAttemptTimestamp,
|
|
maxAttempts,
|
|
currentRetry,
|
|
}: Partial<
|
|
Pick<
|
|
ConfigurationSyncPersistedData,
|
|
'identifier' | 'nextAttemptTimestamp' | 'currentRetry' | 'maxAttempts'
|
|
>
|
|
>) {
|
|
super({
|
|
jobType: 'ConfigurationSyncJobType',
|
|
identifier: identifier || v4(),
|
|
delayBetweenRetries: defaultMsBetweenRetries,
|
|
maxAttempts: isNumber(maxAttempts) ? maxAttempts : defaultMaxAttempts,
|
|
currentRetry: isNumber(currentRetry) ? currentRetry : 0,
|
|
nextAttemptTimestamp: nextAttemptTimestamp || Date.now(),
|
|
});
|
|
}
|
|
|
|
public async run(): Promise<RunJobResult> {
|
|
try {
|
|
if (!window.sessionFeatureFlags.useSharedUtilForUserConfig) {
|
|
this.triggerConfSyncJobDone();
|
|
return RunJobResult.Success;
|
|
}
|
|
window.log.debug(`ConfigurationSyncJob starting ${this.persistedData.identifier}`);
|
|
|
|
const us = UserUtils.getOurPubKeyStrFromCache();
|
|
const ed25519Key = await UserUtils.getUserED25519KeyPairBytes();
|
|
const conversation = getConversationController().get(us);
|
|
if (!us || !conversation || !ed25519Key) {
|
|
// we check for ed25519Key because it is needed for authenticated requests
|
|
window.log.warn('did not find our own conversation');
|
|
return RunJobResult.PermanentFailure;
|
|
}
|
|
for (let index = 0; index < LibSessionUtil.requiredUserVariants.length; index++) {
|
|
const variant = LibSessionUtil.requiredUserVariants[index];
|
|
switch (variant) {
|
|
case 'UserConfig':
|
|
await LibSessionUtil.insertUserProfileIntoWrapper(us);
|
|
break;
|
|
case 'ContactsConfig':
|
|
await LibSessionUtil.insertAllContactsIntoContactsWrapper();
|
|
break;
|
|
case 'UserGroupsConfig':
|
|
await LibSessionUtil.insertAllUserGroupsIntoWrapper();
|
|
break;
|
|
case 'ConvoInfoVolatileConfig':
|
|
await LibSessionUtil.insertAllConvoInfoVolatileIntoWrapper();
|
|
break;
|
|
default:
|
|
assertUnreachable(variant, `ConfigurationSyncDumpJob unhandled variant: "${variant}"`);
|
|
}
|
|
}
|
|
|
|
// TODO add a way to have a few configuration sync jobs running at the same time, but only a single one per pubkey
|
|
const thisJobDestination = us;
|
|
|
|
const singleDestChanges = await retrieveSingleDestinationChanges(thisJobDestination);
|
|
|
|
// If there are no pending changes then the job can just complete (next time something
|
|
// is updated we want to try and run immediately so don't scuedule another run in this case)
|
|
if (isEmpty(singleDestChanges?.messages)) {
|
|
this.triggerConfSyncJobDone();
|
|
return RunJobResult.Success;
|
|
}
|
|
const oldHashesToDelete = new Set(singleDestChanges.allOldHashes);
|
|
const msgs = singleDestChanges.messages.map(item => {
|
|
return {
|
|
namespace: item.namespace,
|
|
pubkey: thisJobDestination,
|
|
timestamp: item.message.timestamp,
|
|
ttl: item.message.ttl(),
|
|
message: item.message,
|
|
};
|
|
});
|
|
|
|
const result = await MessageSender.sendMessagesToSnode(
|
|
msgs,
|
|
thisJobDestination,
|
|
oldHashesToDelete
|
|
);
|
|
|
|
const expectedReplyLength =
|
|
singleDestChanges.messages.length + (oldHashesToDelete.size ? 1 : 0);
|
|
// we do a sequence call here. If we do not have the right expected number of results, consider it a failure
|
|
if (!isArray(result) || result.length !== expectedReplyLength) {
|
|
window.log.info(
|
|
`ConfigurationSyncJob: unexpected result length: expected ${expectedReplyLength} but got ${result?.length}`
|
|
);
|
|
return RunJobResult.RetryJobIfPossible;
|
|
}
|
|
|
|
const changes = resultsToSuccessfulChange(result, singleDestChanges);
|
|
if (isEmpty(changes)) {
|
|
return RunJobResult.RetryJobIfPossible;
|
|
}
|
|
// Now that we have the successful changes, we need to mark them as pushed and
|
|
// generate any config dumps which need to be stored
|
|
|
|
await buildAndSaveDumpsToDB(changes, thisJobDestination);
|
|
this.triggerConfSyncJobDone();
|
|
return RunJobResult.Success;
|
|
} catch (e) {
|
|
throw e;
|
|
} finally {
|
|
// this is a simple way to make sure whatever happens here, we update the lastest timestamp.
|
|
// (a finally statement is always executed (no matter if exception or returns in other try/catch block)
|
|
this.updateLastTickTimestamp();
|
|
}
|
|
}
|
|
|
|
public serializeJob(): ConfigurationSyncPersistedData {
|
|
const fromParent = super.serializeBase();
|
|
return fromParent;
|
|
}
|
|
|
|
public addJobCheck(jobs: Array<ConfigurationSyncPersistedData>): AddJobCheckReturn {
|
|
return this.addJobCheckSameTypePresent(jobs);
|
|
}
|
|
|
|
/**
|
|
* For the SharedConfig job, we do not care about the jobs already in the list.
|
|
* We never want to add a new sync configuration job if there is already one in the queue.
|
|
* This is done by the `addJobCheck` method above
|
|
*/
|
|
public nonRunningJobsToRemove(_jobs: Array<ConfigurationSyncPersistedData>) {
|
|
return [];
|
|
}
|
|
|
|
public getJobTimeoutMs(): number {
|
|
return 20000;
|
|
}
|
|
|
|
private updateLastTickTimestamp() {
|
|
lastRunConfigSyncJobTimestamp = Date.now();
|
|
}
|
|
|
|
private triggerConfSyncJobDone() {
|
|
window.Whisper.events.trigger(ConfigurationSyncJobDone);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Queue a new Sync Configuration if needed job.
|
|
* A ConfigurationSyncJob can only be added if there is none of the same type queued already.
|
|
*/
|
|
async function queueNewJobIfNeeded() {
|
|
if (!window.sessionFeatureFlags.useSharedUtilForUserConfig) {
|
|
return;
|
|
}
|
|
if (
|
|
!lastRunConfigSyncJobTimestamp ||
|
|
lastRunConfigSyncJobTimestamp < Date.now() - defaultMsBetweenRetries
|
|
) {
|
|
// this call will make sure that there is only one configuration sync job at all times
|
|
await runners.configurationSyncRunner.addJob(
|
|
new ConfigurationSyncJob({ nextAttemptTimestamp: Date.now() })
|
|
);
|
|
window.log.debug('Scheduling ConfSyncJob: ASAP');
|
|
} else {
|
|
// if we did run at t=100, and it is currently t=110, the difference is 10
|
|
const diff = Math.max(Date.now() - lastRunConfigSyncJobTimestamp, 0);
|
|
// but we want to run every 30, so what we need is actually `30-10` from now = 20
|
|
const leftBeforeNextTick = Math.max(defaultMsBetweenRetries - diff, 0);
|
|
window.log.debug('Scheduling ConfSyncJob: LATER');
|
|
|
|
// TODO we need to make the addJob wait for the previous addJob to be done before it can be called.
|
|
await runners.configurationSyncRunner.addJob(
|
|
new ConfigurationSyncJob({ nextAttemptTimestamp: Date.now() + leftBeforeNextTick })
|
|
);
|
|
}
|
|
}
|
|
|
|
export const ConfigurationSync = {
|
|
ConfigurationSyncJob,
|
|
queueNewJobIfNeeded,
|
|
};
|