-
-
Notifications
You must be signed in to change notification settings - Fork 945
Expand file tree
/
Copy pathemain-ipc.ts
More file actions
496 lines (456 loc) · 17.8 KB
/
emain-ipc.ts
File metadata and controls
496 lines (456 loc) · 17.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
// Copyright 2025, Command Line Inc.
// SPDX-License-Identifier: Apache-2.0
import * as electron from "electron";
import { FastAverageColor } from "fast-average-color";
import fs from "fs";
import * as child_process from "node:child_process";
import * as path from "path";
import { PNG } from "pngjs";
import { Readable } from "stream";
import { RpcApi } from "../frontend/app/store/wshclientapi";
import { getWebServerEndpoint } from "../frontend/util/endpoints";
import * as keyutil from "../frontend/util/keyutil";
import { fireAndForget, parseDataUrl } from "../frontend/util/util";
import {
incrementTermCommandsDurable,
incrementTermCommandsRemote,
incrementTermCommandsRun,
incrementTermCommandsWsl,
} from "./emain-activity";
import { createBuilderWindow, getAllBuilderWindows, getBuilderWindowByWebContentsId } from "./emain-builder";
import { callWithOriginalXdgCurrentDesktopAsync, unamePlatform } from "./emain-platform";
import { getWaveTabViewByWebContentsId } from "./emain-tabview";
import { handleCtrlShiftState } from "./emain-util";
import { getWaveVersion } from "./emain-wavesrv";
import { createNewWaveWindow, focusedWaveWindow, getWaveWindowByWebContentsId } from "./emain-window";
import { ElectronWshClient } from "./emain-wsh";
const electronApp = electron.app;
let webviewFocusId: number = null;
let webviewKeys: string[] = [];
export function openBuilderWindow(appId?: string) {
const normalizedAppId = appId || "";
const existingBuilderWindows = getAllBuilderWindows();
const existingWindow = existingBuilderWindows.find((win) => win.builderAppId === normalizedAppId);
if (existingWindow) {
existingWindow.focus();
return;
}
fireAndForget(() => createBuilderWindow(normalizedAppId));
}
type UrlInSessionResult = {
stream: Readable;
mimeType: string;
fileName: string;
};
function getSingleHeaderVal(headers: Record<string, string | string[]>, key: string): string {
const val = headers[key];
if (val == null) {
return null;
}
if (Array.isArray(val)) {
return val[0];
}
return val;
}
function cleanMimeType(mimeType: string): string {
if (mimeType == null) {
return null;
}
const parts = mimeType.split(";");
return parts[0].trim();
}
function getFileNameFromUrl(url: string): string {
try {
const pathname = new URL(url).pathname;
const filename = pathname.substring(pathname.lastIndexOf("/") + 1);
return filename;
} catch (e) {
return null;
}
}
function getUrlInSession(session: Electron.Session, url: string): Promise<UrlInSessionResult> {
return new Promise((resolve, reject) => {
if (url.startsWith("data:")) {
try {
const parsed = parseDataUrl(url);
const buffer = Buffer.from(parsed.buffer);
const readable = Readable.from(buffer);
resolve({ stream: readable, mimeType: parsed.mimeType, fileName: "image" });
} catch (err) {
return reject(err);
}
return;
}
const request = electron.net.request({
url,
method: "GET",
session,
});
const readable = new Readable({
read() {},
});
request.on("response", (response) => {
const statusCode = response.statusCode;
if (statusCode < 200 || statusCode >= 300) {
readable.destroy();
request.abort();
reject(new Error(`HTTP request failed with status ${statusCode}: ${response.statusMessage || ""}`));
return;
}
const mimeType = cleanMimeType(getSingleHeaderVal(response.headers, "content-type"));
const fileName = getFileNameFromUrl(url) || "image";
response.on("data", (chunk) => {
readable.push(chunk);
});
response.on("end", () => {
readable.push(null);
resolve({ stream: readable, mimeType, fileName });
});
response.on("error", (err) => {
readable.destroy(err);
reject(err);
});
});
request.on("error", (err) => {
readable.destroy(err);
reject(err);
});
request.end();
});
}
function saveImageFileWithNativeDialog(defaultFileName: string, mimeType: string, readStream: Readable) {
if (defaultFileName == null || defaultFileName == "") {
defaultFileName = "image";
}
const ww = focusedWaveWindow;
if (ww == null) {
return;
}
const mimeToExtension: { [key: string]: string } = {
"image/png": "png",
"image/jpeg": "jpg",
"image/gif": "gif",
"image/webp": "webp",
"image/bmp": "bmp",
"image/tiff": "tiff",
"image/heic": "heic",
"image/svg+xml": "svg",
};
function addExtensionIfNeeded(fileName: string, mimeType: string): string {
const extension = mimeToExtension[mimeType];
if (!path.extname(fileName) && extension) {
return `${fileName}.${extension}`;
}
return fileName;
}
defaultFileName = addExtensionIfNeeded(defaultFileName, mimeType);
electron.dialog
.showSaveDialog(ww, {
title: "Save Image",
defaultPath: defaultFileName,
filters: [{ name: "Images", extensions: ["png", "jpg", "jpeg", "gif", "webp", "bmp", "tiff", "heic"] }],
})
.then((file) => {
if (file.canceled) {
return;
}
const writeStream = fs.createWriteStream(file.filePath);
readStream.pipe(writeStream);
writeStream.on("finish", () => {
console.log("saved file", file.filePath);
});
writeStream.on("error", (err) => {
console.log("error saving file (writeStream)", err);
readStream.destroy();
});
readStream.on("error", (err) => {
console.error("error saving file (readStream)", err);
writeStream.destroy();
});
})
.catch((err) => {
console.log("error trying to save file", err);
});
}
export function initIpcHandlers() {
electron.ipcMain.on("open-external", (event, url) => {
if (url && typeof url === "string") {
fireAndForget(() =>
callWithOriginalXdgCurrentDesktopAsync(() =>
electron.shell.openExternal(url).catch((err) => {
console.error(`Failed to open URL ${url}:`, err);
})
)
);
} else {
console.error("Invalid URL received in open-external event:", url);
}
});
electron.ipcMain.on("webview-image-contextmenu", (event: electron.IpcMainEvent, payload: { src: string }) => {
const menu = new electron.Menu();
const win = getWaveWindowByWebContentsId(event.sender.hostWebContents.id);
if (win == null) {
return;
}
menu.append(
new electron.MenuItem({
label: "Save Image",
click: () => {
const resultP = getUrlInSession(event.sender.session, payload.src);
resultP
.then((result) => {
saveImageFileWithNativeDialog(result.fileName, result.mimeType, result.stream);
})
.catch((e) => {
console.log("error getting image", e);
});
},
})
);
menu.popup();
});
electron.ipcMain.on("download", (event, payload) => {
const baseName = encodeURIComponent(path.basename(payload.filePath));
const streamingUrl =
getWebServerEndpoint() + "/wave/stream-file/" + baseName + "?path=" + encodeURIComponent(payload.filePath);
event.sender.downloadURL(streamingUrl);
});
electron.ipcMain.on("get-cursor-point", (event) => {
const tabView = getWaveTabViewByWebContentsId(event.sender.id);
if (tabView == null) {
event.returnValue = null;
return;
}
const screenPoint = electron.screen.getCursorScreenPoint();
const windowRect = tabView.getBounds();
const retVal: Electron.Point = {
x: screenPoint.x - windowRect.x,
y: screenPoint.y - windowRect.y,
};
event.returnValue = retVal;
});
electron.ipcMain.handle("capture-screenshot", async (event, rect) => {
const tabView = getWaveTabViewByWebContentsId(event.sender.id);
if (!tabView) {
throw new Error("No tab view found for the given webContents id");
}
const image = await tabView.webContents.capturePage(rect);
const base64String = image.toPNG().toString("base64");
return `data:image/png;base64,${base64String}`;
});
electron.ipcMain.on("get-env", (event, varName) => {
event.returnValue = process.env[varName] ?? null;
});
electron.ipcMain.on("get-about-modal-details", (event) => {
event.returnValue = getWaveVersion() as AboutModalDetails;
});
electron.ipcMain.on("get-zoom-factor", (event) => {
event.returnValue = event.sender.getZoomFactor();
});
const hasBeforeInputRegisteredMap = new Map<number, boolean>();
electron.ipcMain.on("webview-focus", (event: Electron.IpcMainEvent, focusedId: number) => {
webviewFocusId = focusedId;
console.log("webview-focus", focusedId);
if (focusedId == null) {
return;
}
const parentWc = event.sender;
const webviewWc = electron.webContents.fromId(focusedId);
if (webviewWc == null) {
webviewFocusId = null;
return;
}
if (!hasBeforeInputRegisteredMap.get(focusedId)) {
hasBeforeInputRegisteredMap.set(focusedId, true);
webviewWc.on("before-input-event", (e, input) => {
let waveEvent = keyutil.adaptFromElectronKeyEvent(input);
handleCtrlShiftState(parentWc, waveEvent);
if (webviewFocusId != focusedId) {
return;
}
if (input.type != "keyDown") {
return;
}
for (let keyDesc of webviewKeys) {
if (keyutil.checkKeyPressed(waveEvent, keyDesc)) {
e.preventDefault();
parentWc.send("reinject-key", waveEvent);
console.log("webview reinject-key", keyDesc);
return;
}
}
});
webviewWc.on("destroyed", () => {
hasBeforeInputRegisteredMap.delete(focusedId);
});
}
});
electron.ipcMain.on("register-global-webview-keys", (event, keys: string[]) => {
webviewKeys = keys ?? [];
});
electron.ipcMain.on("set-keyboard-chord-mode", (event) => {
event.returnValue = null;
const tabView = getWaveTabViewByWebContentsId(event.sender.id);
tabView?.setKeyboardChordMode(true);
});
const fac = new FastAverageColor();
electron.ipcMain.on("update-window-controls-overlay", async (event, rect: Dimensions) => {
if (unamePlatform === "darwin") return;
try {
const fullConfig = await RpcApi.GetFullConfigCommand(ElectronWshClient);
if (fullConfig?.settings?.["window:nativetitlebar"] && unamePlatform !== "win32") return;
const zoomFactor = event.sender.getZoomFactor();
const electronRect: Electron.Rectangle = {
x: rect.left * zoomFactor,
y: rect.top * zoomFactor,
height: rect.height * zoomFactor,
width: rect.width * zoomFactor,
};
const overlay = await event.sender.capturePage(electronRect);
const overlayBuffer = overlay.toPNG();
const png = PNG.sync.read(overlayBuffer);
const color = fac.prepareResult(fac.getColorFromArray4(png.data));
const ww = getWaveWindowByWebContentsId(event.sender.id);
ww.setTitleBarOverlay({
color: unamePlatform === "linux" ? color.rgba : "#00000000",
symbolColor: color.isDark ? "white" : "black",
});
} catch (e) {
console.error("Error updating window controls overlay:", e);
}
});
electron.ipcMain.on("quicklook", (event, filePath: string) => {
if (unamePlatform !== "darwin") return;
child_process.execFile("/usr/bin/qlmanage", ["-p", filePath], (error, stdout, stderr) => {
if (error) {
console.error(`Error opening Quick Look: ${error}`);
}
});
});
electron.ipcMain.handle("clear-webview-storage", async (event, webContentsId: number) => {
try {
const wc = electron.webContents.fromId(webContentsId);
if (wc && wc.session) {
await wc.session.clearStorageData();
console.log("Cleared cookies and storage for webContentsId:", webContentsId);
}
} catch (e) {
console.error("Failed to clear cookies and storage:", e);
throw e;
}
});
electron.ipcMain.on("open-native-path", (event, filePath: string) => {
console.log("open-native-path", filePath);
filePath = filePath.replace("~", electronApp.getPath("home"));
fireAndForget(() =>
callWithOriginalXdgCurrentDesktopAsync(() =>
electron.shell.openPath(filePath).then((excuse) => {
if (excuse) console.error(`Failed to open ${filePath} in native application: ${excuse}`);
})
)
);
});
electron.ipcMain.on("set-window-init-status", (event, status: "ready" | "wave-ready") => {
const tabView = getWaveTabViewByWebContentsId(event.sender.id);
if (tabView != null && tabView.initResolve != null) {
if (status === "ready") {
tabView.initResolve();
if (tabView.savedInitOpts) {
console.log("savedInitOpts calling wave-init", tabView.waveTabId);
tabView.webContents.send("wave-init", tabView.savedInitOpts);
}
} else if (status === "wave-ready") {
tabView.waveReadyResolve();
}
return;
}
const builderWindow = getBuilderWindowByWebContentsId(event.sender.id);
if (builderWindow != null) {
if (status === "ready") {
if (builderWindow.savedInitOpts) {
console.log("savedInitOpts calling builder-init", builderWindow.savedInitOpts.builderId);
builderWindow.webContents.send("builder-init", builderWindow.savedInitOpts);
}
}
return;
}
console.log("set-window-init-status: no window found for webContentsId", event.sender.id);
});
electron.ipcMain.on("fe-log", (event, logStr: string) => {
console.log("fe-log", logStr);
});
electron.ipcMain.on(
"increment-term-commands",
(event, opts?: { isRemote?: boolean; isWsl?: boolean; isDurable?: boolean }) => {
incrementTermCommandsRun();
if (opts?.isRemote) {
incrementTermCommandsRemote();
}
if (opts?.isWsl) {
incrementTermCommandsWsl();
}
if (opts?.isDurable) {
incrementTermCommandsDurable();
}
}
);
electron.ipcMain.on("native-paste", (event) => {
event.sender.paste();
});
electron.ipcMain.on("open-builder", (event, appId?: string) => {
openBuilderWindow(appId);
});
electron.ipcMain.on("set-builder-window-appid", (event, appId: string) => {
const bw = getBuilderWindowByWebContentsId(event.sender.id);
if (bw == null) {
return;
}
bw.builderAppId = appId;
console.log("set-builder-window-appid", bw.builderId, appId);
});
electron.ipcMain.on("open-new-window", () => fireAndForget(createNewWaveWindow));
electron.ipcMain.on("close-builder-window", async (event) => {
const bw = getBuilderWindowByWebContentsId(event.sender.id);
if (bw == null) {
return;
}
const builderId = bw.builderId;
if (builderId) {
try {
await RpcApi.SetRTInfoCommand(ElectronWshClient, {
oref: `builder:${builderId}`,
data: {} as ObjRTInfo,
delete: true,
});
} catch (e) {
console.error("Error deleting builder rtinfo:", e);
}
}
bw.destroy();
});
electron.ipcMain.on("do-refresh", (event) => {
event.sender.reloadIgnoringCache();
});
electron.ipcMain.handle("save-text-file", async (event, fileName: string, content: string) => {
const ww = focusedWaveWindow;
if (ww == null) {
return false;
}
const result = await electron.dialog.showSaveDialog(ww, {
title: "Save Scrollback",
defaultPath: fileName || "session.log",
filters: [{ name: "Text Files", extensions: ["txt", "log"] }],
});
if (result.canceled || !result.filePath) {
return false;
}
try {
await fs.promises.writeFile(result.filePath, content, "utf-8");
console.log("saved scrollback to", result.filePath);
return true;
} catch (err) {
console.error("error saving scrollback file", err);
return false;
}
});
}