mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-04-28 04:13:18 +01:00
Rename files
This commit is contained in:
248
ts/routineProfileRefresh.preload.ts
Normal file
248
ts/routineProfileRefresh.preload.ts
Normal file
@@ -0,0 +1,248 @@
|
||||
// Copyright 2021 Signal Messenger, LLC
|
||||
// SPDX-License-Identifier: AGPL-3.0-only
|
||||
|
||||
import lodash from 'lodash';
|
||||
import PQueue from 'p-queue';
|
||||
|
||||
import { createLogger } from './logging/log.std.js';
|
||||
import { assertDev } from './util/assert.std.js';
|
||||
import { sleep } from './util/sleep.std.js';
|
||||
import { isNormalNumber } from './util/isNormalNumber.std.js';
|
||||
import { take } from './util/iterables.std.js';
|
||||
import type { ConversationModel } from './models/conversations.preload.js';
|
||||
import type { StorageInterface } from './types/Storage.d.ts';
|
||||
import * as Errors from './types/errors.std.js';
|
||||
import { getProfile } from './util/getProfile.preload.js';
|
||||
import { drop } from './util/drop.std.js';
|
||||
import { MINUTE, HOUR, DAY, WEEK } from './util/durations/index.std.js';
|
||||
import { isDirectConversation } from './util/whatTypeOfConversation.dom.js';
|
||||
|
||||
const { isNil, sortBy } = lodash;
|
||||
|
||||
const log = createLogger('routineProfileRefresh');
|
||||
|
||||
const STORAGE_KEY = 'lastAttemptedToRefreshProfilesAt';
|
||||
const MAX_AGE_TO_BE_CONSIDERED_RECENTLY_REFRESHED = 3 * DAY;
|
||||
const MAX_CONVERSATIONS_TO_REFRESH = 50;
|
||||
const MIN_ELAPSED_DURATION_TO_REFRESH_AGAIN = HOUR;
|
||||
const MIN_REFRESH_DELAY = MINUTE;
|
||||
|
||||
let idCounter = 1;
|
||||
|
||||
export class RoutineProfileRefresher {
|
||||
#started = false;
|
||||
#id: number;
|
||||
|
||||
constructor(
|
||||
private readonly options: {
|
||||
getAllConversations: () => ReadonlyArray<ConversationModel>;
|
||||
getOurConversationId: () => string | undefined;
|
||||
storage: Pick<StorageInterface, 'get' | 'put'>;
|
||||
}
|
||||
) {
|
||||
// We keep track of how many of these classes we create, because we suspect that
|
||||
// there might be too many...
|
||||
idCounter += 1;
|
||||
this.#id = idCounter;
|
||||
log.info(
|
||||
`Creating new RoutineProfileRefresher instance with id ${this.#id}`
|
||||
);
|
||||
}
|
||||
|
||||
public async start(): Promise<void> {
|
||||
const logId = `RoutineProfileRefresher.start/${this.#id}`;
|
||||
|
||||
if (this.#started) {
|
||||
log.warn(`${logId}: already started!`);
|
||||
return;
|
||||
}
|
||||
this.#started = true;
|
||||
|
||||
const { storage, getAllConversations, getOurConversationId } = this.options;
|
||||
|
||||
// eslint-disable-next-line no-constant-condition
|
||||
while (true) {
|
||||
const refreshInMs = timeUntilNextRefresh(storage);
|
||||
|
||||
log.info(`${logId}: waiting for ${refreshInMs}ms`);
|
||||
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await sleep(refreshInMs);
|
||||
|
||||
const ourConversationId = getOurConversationId();
|
||||
if (!ourConversationId) {
|
||||
log.warn(`${logId}: missing our conversation id`);
|
||||
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await sleep(MIN_REFRESH_DELAY);
|
||||
|
||||
continue;
|
||||
}
|
||||
|
||||
try {
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await routineProfileRefresh({
|
||||
allConversations: getAllConversations(),
|
||||
ourConversationId,
|
||||
storage,
|
||||
id: this.#id,
|
||||
});
|
||||
} catch (error) {
|
||||
log.error(`${logId}: failure`, Errors.toLogFormat(error));
|
||||
} finally {
|
||||
// eslint-disable-next-line no-await-in-loop
|
||||
await sleep(MIN_REFRESH_DELAY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export async function routineProfileRefresh({
|
||||
allConversations,
|
||||
ourConversationId,
|
||||
storage,
|
||||
id,
|
||||
// Only for tests
|
||||
getProfileFn = getProfile,
|
||||
}: {
|
||||
allConversations: ReadonlyArray<ConversationModel>;
|
||||
ourConversationId: string;
|
||||
storage: Pick<StorageInterface, 'get' | 'put'>;
|
||||
id: number;
|
||||
getProfileFn?: typeof getProfile;
|
||||
}): Promise<void> {
|
||||
const logId = `routineProfileRefresh/${id}`;
|
||||
log.info(`${logId}: starting`);
|
||||
|
||||
const refreshInMs = timeUntilNextRefresh(storage);
|
||||
if (refreshInMs > 0) {
|
||||
log.info(`${logId}: too soon to refresh. Doing nothing`);
|
||||
return;
|
||||
}
|
||||
|
||||
log.info(`${logId}: updating last refresh time`);
|
||||
await storage.put(STORAGE_KEY, Date.now());
|
||||
|
||||
const conversationsToRefresh = getConversationsToRefresh(
|
||||
allConversations,
|
||||
ourConversationId
|
||||
);
|
||||
|
||||
log.info(`${logId}: starting to refresh conversations`);
|
||||
|
||||
let totalCount = 0;
|
||||
let successCount = 0;
|
||||
|
||||
async function refreshConversation(
|
||||
conversation: ConversationModel
|
||||
): Promise<void> {
|
||||
log.info(`${logId}: refreshing profile for ${conversation.idForLogging()}`);
|
||||
|
||||
totalCount += 1;
|
||||
try {
|
||||
await getProfileFn({
|
||||
serviceId: conversation.getServiceId() ?? null,
|
||||
e164: conversation.get('e164') ?? null,
|
||||
groupId: null,
|
||||
});
|
||||
log.info(
|
||||
`${logId}: refreshed profile for ${conversation.idForLogging()}`
|
||||
);
|
||||
successCount += 1;
|
||||
} catch (err) {
|
||||
if ('code' in err) {
|
||||
log.warn(
|
||||
`${logId}: refreshed profile for ${conversation.idForLogging()},`,
|
||||
`got error code ${err.code}`
|
||||
);
|
||||
} else {
|
||||
log.error(
|
||||
`${logId}: refreshed profile for ${conversation.idForLogging()}`,
|
||||
Errors.toLogFormat(err)
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const refreshQueue = new PQueue({
|
||||
concurrency: 5,
|
||||
timeout: MINUTE * 30,
|
||||
throwOnTimeout: true,
|
||||
});
|
||||
for (const conversation of conversationsToRefresh) {
|
||||
drop(refreshQueue.add(() => refreshConversation(conversation)));
|
||||
}
|
||||
await refreshQueue.onIdle();
|
||||
|
||||
log.info(
|
||||
`${logId}: successfully refreshed ${successCount} out of ${totalCount} conversation(s)`
|
||||
);
|
||||
}
|
||||
|
||||
function timeUntilNextRefresh(storage: Pick<StorageInterface, 'get'>): number {
|
||||
const storedValue = storage.get(STORAGE_KEY);
|
||||
|
||||
if (isNil(storedValue)) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
if (isNormalNumber(storedValue)) {
|
||||
const planned = storedValue + MIN_ELAPSED_DURATION_TO_REFRESH_AGAIN;
|
||||
const now = Date.now();
|
||||
return Math.min(Math.max(0, planned - now), WEEK);
|
||||
}
|
||||
|
||||
assertDev(
|
||||
false,
|
||||
`An invalid value was stored in ${STORAGE_KEY}; treating it as nil`
|
||||
);
|
||||
return 0;
|
||||
}
|
||||
|
||||
function getConversationsToRefresh(
|
||||
conversations: ReadonlyArray<ConversationModel>,
|
||||
ourConversationId: string
|
||||
): Iterable<ConversationModel> {
|
||||
const filteredConversations = getFilteredConversations(
|
||||
conversations,
|
||||
ourConversationId
|
||||
);
|
||||
return take(filteredConversations, MAX_CONVERSATIONS_TO_REFRESH);
|
||||
}
|
||||
|
||||
function* getFilteredConversations(
|
||||
conversations: ReadonlyArray<ConversationModel>,
|
||||
ourConversationId: string
|
||||
): Iterable<ConversationModel> {
|
||||
const filtered = conversations.filter(
|
||||
c =>
|
||||
isDirectConversation(c.attributes) &&
|
||||
!c.isUnregisteredAndStale() &&
|
||||
c.getServiceId()
|
||||
);
|
||||
const sorted = sortBy(filtered, c => c.get('profileLastFetchedAt') || 0);
|
||||
|
||||
for (const conversation of sorted) {
|
||||
if (conversation.id === ourConversationId) {
|
||||
if (conversation.hasProfileKeyCredentialExpired()) {
|
||||
yield conversation;
|
||||
}
|
||||
continue;
|
||||
}
|
||||
|
||||
if (!hasRefreshedProfileRecently(conversation)) {
|
||||
yield conversation;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
function hasRefreshedProfileRecently(
|
||||
conversation: Readonly<ConversationModel>
|
||||
): boolean {
|
||||
const profileLastFetchedAt = conversation.get('profileLastFetchedAt');
|
||||
return (
|
||||
isNormalNumber(profileLastFetchedAt) &&
|
||||
profileLastFetchedAt + MAX_AGE_TO_BE_CONSIDERED_RECENTLY_REFRESHED >
|
||||
Date.now()
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user