signal-desktop/ts/util/resolveDraftAttachmentOnDisk.ts
2024-07-11 12:44:09 -07:00

70 lines
1.5 KiB
TypeScript

// Copyright 2021 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
import * as log from '../logging/log';
import type { AttachmentDraftType } from '../types/Attachment';
import { isVideoAttachment } from '../types/Attachment';
import {
getLocalAttachmentUrl,
AttachmentDisposition,
} from './getLocalAttachmentUrl';
export function resolveDraftAttachmentOnDisk(
attachment: AttachmentDraftType
): AttachmentDraftType {
let url = '';
if (attachment.pending) {
return attachment;
}
if (attachment.screenshotPath) {
// Legacy
url = window.Signal.Migrations.getAbsoluteDraftPath(
attachment.screenshotPath
);
} else if (attachment.screenshot?.path) {
url = getLocalAttachmentUrl(attachment.screenshot, {
disposition: AttachmentDisposition.Draft,
});
} else if (!isVideoAttachment(attachment) && attachment.path) {
url = getLocalAttachmentUrl(attachment, {
disposition: AttachmentDisposition.Draft,
});
} else {
log.warn(
'resolveOnDiskAttachment: Attachment was missing both screenshotPath and path fields'
);
}
const {
blurHash,
caption,
clientUuid,
contentType,
fileName,
flags,
path,
size,
width,
height,
version,
localKey,
} = attachment;
return {
blurHash,
caption,
clientUuid,
contentType,
fileName,
flags,
path,
size,
width,
height,
version,
localKey,
pending: false,
url,
};
}