Fix "copy image" context menu

This commit is contained in:
Fedor Indutny 2024-07-12 11:44:26 -07:00 committed by GitHub
parent b40dd2dd9c
commit 8f06df9f2a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 161 additions and 122 deletions

View file

@ -30,6 +30,7 @@ import { isPathInside } from '../ts/util/isPathInside';
import { missingCaseError } from '../ts/util/missingCaseError'; import { missingCaseError } from '../ts/util/missingCaseError';
import { safeParseInteger } from '../ts/util/numbers'; import { safeParseInteger } from '../ts/util/numbers';
import { drop } from '../ts/util/drop'; import { drop } from '../ts/util/drop';
import { strictAssert } from '../ts/util/assert';
import { decryptAttachmentV2ToSink } from '../ts/AttachmentCrypto'; import { decryptAttachmentV2ToSink } from '../ts/AttachmentCrypto';
let initialized = false; let initialized = false;
@ -200,6 +201,12 @@ function deleteOrphanedAttachments({
void runSafe(); void runSafe();
} }
let attachmentsDir: string | undefined;
let stickersDir: string | undefined;
let tempDir: string | undefined;
let draftDir: string | undefined;
let avatarDataDir: string | undefined;
export function initialize({ export function initialize({
configDir, configDir,
sql, sql,
@ -212,16 +219,28 @@ export function initialize({
} }
initialized = true; initialized = true;
const attachmentsDir = getPath(configDir); attachmentsDir = getPath(configDir);
const stickersDir = getStickersPath(configDir); stickersDir = getStickersPath(configDir);
const tempDir = getTempPath(configDir); tempDir = getTempPath(configDir);
const draftDir = getDraftPath(configDir); draftDir = getDraftPath(configDir);
const avatarDataDir = getAvatarsPath(configDir); avatarDataDir = getAvatarsPath(configDir);
ipcMain.handle(ERASE_TEMP_KEY, () => rimraf.sync(tempDir)); ipcMain.handle(ERASE_TEMP_KEY, () => {
ipcMain.handle(ERASE_ATTACHMENTS_KEY, () => rimraf.sync(attachmentsDir)); strictAssert(tempDir != null, 'not initialized');
ipcMain.handle(ERASE_STICKERS_KEY, () => rimraf.sync(stickersDir)); rimraf.sync(tempDir);
ipcMain.handle(ERASE_DRAFTS_KEY, () => rimraf.sync(draftDir)); });
ipcMain.handle(ERASE_ATTACHMENTS_KEY, () => {
strictAssert(attachmentsDir != null, 'not initialized');
rimraf.sync(attachmentsDir);
});
ipcMain.handle(ERASE_STICKERS_KEY, () => {
strictAssert(stickersDir != null, 'not initialized');
rimraf.sync(stickersDir);
});
ipcMain.handle(ERASE_DRAFTS_KEY, () => {
strictAssert(draftDir != null, 'not initialized');
rimraf.sync(draftDir);
});
ipcMain.handle(CLEANUP_ORPHANED_ATTACHMENTS_KEY, async () => { ipcMain.handle(CLEANUP_ORPHANED_ATTACHMENTS_KEY, async () => {
const start = Date.now(); const start = Date.now();
@ -230,7 +249,10 @@ export function initialize({
console.log(`cleanupOrphanedAttachments: took ${duration}ms`); console.log(`cleanupOrphanedAttachments: took ${duration}ms`);
}); });
protocol.handle('attachment', async req => { protocol.handle('attachment', handleAttachmentRequest);
}
export async function handleAttachmentRequest(req: Request): Promise<Response> {
const url = new URL(req.url); const url = new URL(req.url);
if (url.host !== 'v1' && url.host !== 'v2') { if (url.host !== 'v1' && url.host !== 'v2') {
return new Response('Unknown host', { status: 404 }); return new Response('Unknown host', { status: 404 });
@ -243,6 +265,12 @@ export function initialize({
disposition = dispositionSchema.parse(dispositionParam); disposition = dispositionSchema.parse(dispositionParam);
} }
strictAssert(attachmentsDir != null, 'not initialized');
strictAssert(tempDir != null, 'not initialized');
strictAssert(draftDir != null, 'not initialized');
strictAssert(stickersDir != null, 'not initialized');
strictAssert(avatarDataDir != null, 'not initialized');
let parentDir: string; let parentDir: string;
switch (disposition) { switch (disposition) {
case 'attachment': case 'attachment':
@ -335,7 +363,6 @@ export function initialize({
size: maybeSize, size: maybeSize,
plaintext, plaintext,
}); });
});
} }
type HandleRangeRequestOptionsType = Readonly<{ type HandleRangeRequestOptionsType = Readonly<{

View file

@ -3,7 +3,6 @@
import type { BrowserWindow } from 'electron'; import type { BrowserWindow } from 'electron';
import { Menu, clipboard, nativeImage } from 'electron'; import { Menu, clipboard, nativeImage } from 'electron';
import { fileURLToPath } from 'url';
import * as LocaleMatcher from '@formatjs/intl-localematcher'; import * as LocaleMatcher from '@formatjs/intl-localematcher';
import { maybeParseUrl } from '../ts/util/url'; import { maybeParseUrl } from '../ts/util/url';
@ -12,6 +11,7 @@ import type { MenuListType } from '../ts/types/menu';
import type { LocalizerType } from '../ts/types/Util'; import type { LocalizerType } from '../ts/types/Util';
import { strictAssert } from '../ts/util/assert'; import { strictAssert } from '../ts/util/assert';
import type { LoggerType } from '../ts/types/Logging'; import type { LoggerType } from '../ts/types/Logging';
import { handleAttachmentRequest } from './attachment_channel';
export const FAKE_DEFAULT_LOCALE = 'en-x-ignore'; // -x- is an extension space for attaching other metadata to the locale export const FAKE_DEFAULT_LOCALE = 'en-x-ignore'; // -x- is an extension space for attaching other metadata to the locale
@ -151,23 +151,35 @@ export const setup = (
}; };
label = i18n('icu:contextMenuCopyLink'); label = i18n('icu:contextMenuCopyLink');
} else if (isImage) { } else if (isImage) {
click = async () => {
const parsedSrcUrl = maybeParseUrl(params.srcURL);
if (!parsedSrcUrl || parsedSrcUrl.protocol !== 'attachment:') {
return;
}
const urlIsViewOnce = const urlIsViewOnce =
params.srcURL?.includes('/temp/') || parsedSrcUrl.searchParams.get('disposition') === 'temporary';
params.srcURL?.includes('\\temp\\');
if (urlIsViewOnce) { if (urlIsViewOnce) {
return; return;
} }
click = () => { const req = new Request(parsedSrcUrl, {
const parsedSrcUrl = maybeParseUrl(params.srcURL); method: 'GET',
if (!parsedSrcUrl || parsedSrcUrl.protocol !== 'file:') { });
try {
const res = await handleAttachmentRequest(req);
if (!res.ok) {
return; return;
} }
const image = nativeImage.createFromPath( const image = nativeImage.createFromBuffer(
fileURLToPath(params.srcURL) Buffer.from(await res.arrayBuffer())
); );
clipboard.writeImage(image); clipboard.writeImage(image);
} catch (error) {
logger.error('Failed to load image', error);
}
}; };
label = i18n('icu:contextMenuCopyImage'); label = i18n('icu:contextMenuCopyImage');
} else { } else {