46 lines
1 KiB
TypeScript
46 lines
1 KiB
TypeScript
// Copyright 2019-2022 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import * as log from '../logging/log';
|
|
import { singleProtoJobQueue } from '../jobs/singleProtoJobQueue';
|
|
import * as Errors from '../types/errors';
|
|
|
|
export async function sendStickerPackSync(
|
|
packId: string,
|
|
packKey: string,
|
|
installed: boolean
|
|
): Promise<void> {
|
|
const { textsecure } = window;
|
|
|
|
if (!textsecure.messaging) {
|
|
log.error(
|
|
'shim: Cannot call sendStickerPackSync, textsecure.messaging is falsey'
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
if (window.ConversationController.areWePrimaryDevice()) {
|
|
log.warn(
|
|
'shims/sendStickerPackSync: We are primary device; not sending sync'
|
|
);
|
|
return;
|
|
}
|
|
|
|
try {
|
|
await singleProtoJobQueue.add(
|
|
textsecure.messaging.getStickerPackSync([
|
|
{
|
|
packId,
|
|
packKey,
|
|
installed,
|
|
},
|
|
])
|
|
);
|
|
} catch (error) {
|
|
log.error(
|
|
'sendStickerPackSync: Failed to queue sync message',
|
|
Errors.toLogFormat(error)
|
|
);
|
|
}
|
|
}
|