633 lines
21 KiB
TypeScript
633 lines
21 KiB
TypeScript
import {
|
|
app,
|
|
BrowserWindow,
|
|
clipboard,
|
|
dialog,
|
|
ipcMain,
|
|
net,
|
|
Notification as ElectronNotification,
|
|
protocol,
|
|
shell,
|
|
WebContentsView,
|
|
type OpenDialogOptions,
|
|
} from "electron";
|
|
import { updateElectronApp } from "update-electron-app";
|
|
import { spawn, type ChildProcessWithoutNullStreams } from "node:child_process";
|
|
import { existsSync } from "node:fs";
|
|
import { readFile } from "node:fs/promises";
|
|
import os from "node:os";
|
|
import path from "node:path";
|
|
import { pathToFileURL } from "node:url";
|
|
import { type DaemonLaunchSpec, resolveDaemonLaunch } from "./shared/daemon-launch";
|
|
import { createListenPortScanner, defaultRunFilePath, parseRunFile } from "./shared/daemon-discovery";
|
|
import type { DaemonStatus } from "./shared/daemon-status";
|
|
import { DEFAULT_POSTHOG_HOST, DEFAULT_POSTHOG_PROJECT_KEY } from "./shared/posthog-config";
|
|
import { buildTelemetryBootstrap } from "./shared/telemetry";
|
|
import { createBrowserViewHost, type BrowserViewHost } from "./main/browser-view-host";
|
|
|
|
// Globals injected at compile time by @electron-forge/plugin-vite.
|
|
declare const MAIN_WINDOW_VITE_DEV_SERVER_URL: string | undefined;
|
|
declare const MAIN_WINDOW_VITE_NAME: string;
|
|
|
|
// Must run before app ready so the About panel and default-menu role labels use it.
|
|
app.setName("Agent Orchestrator");
|
|
|
|
// Pin ALL Electron-owned state (Chromium cache, cookies, local/session storage,
|
|
// crash dumps) under the canonical AO home at ~/.ao instead of Electron's macOS
|
|
// default ~/Library/Application Support/<name>. Keeps the app's entire footprint
|
|
// inside ~/.ao alongside the daemon's data dir and running.json. sessionData and
|
|
// crashDumps derive from userData, so this one override reparents them all.
|
|
// Must run before app ready.
|
|
app.setPath("userData", path.join(os.homedir(), ".ao", "electron"));
|
|
|
|
let mainWindow: BrowserWindow | null = null;
|
|
let daemonProcess: ChildProcessWithoutNullStreams | null = null;
|
|
let daemonStoppingProcess: ChildProcessWithoutNullStreams | null = null;
|
|
let daemonStartPromise: Promise<DaemonStatus> | null = null;
|
|
let daemonStartEpoch = 0;
|
|
let daemonStatus: DaemonStatus = { state: "stopped" };
|
|
let browserViewHost: BrowserViewHost | null = null;
|
|
|
|
const isDev = !app.isPackaged;
|
|
|
|
const RENDERER_SCHEME = "app";
|
|
const RENDERER_HOST = "renderer";
|
|
const RENDERER_ORIGIN = `${RENDERER_SCHEME}://${RENDERER_HOST}`;
|
|
|
|
// The packaged renderer is served from a custom standard scheme, not file://.
|
|
// A file:// page has the opaque "null" origin, which the daemon must never
|
|
// trust (every sandboxed iframe on any website also presents "null"), so its
|
|
// fetch/EventSource calls to the loopback API would be CORS-blocked.
|
|
// app://renderer is an origin only this app can present, so the daemon's CORS
|
|
// allowlist can name it. A standard scheme also makes the build's absolute
|
|
// asset URLs (/assets/…) and history-API routing resolve, which file:// breaks.
|
|
// Must run before app ready.
|
|
protocol.registerSchemesAsPrivileged([
|
|
{
|
|
scheme: RENDERER_SCHEME,
|
|
privileges: { standard: true, secure: true, supportFetchAPI: true },
|
|
},
|
|
]);
|
|
|
|
// Maps app://renderer/<path> to the built renderer in dist/. Paths without a
|
|
// file extension are client-side routes and fall back to index.html (SPA).
|
|
function registerRendererProtocol(): void {
|
|
const distRoot = path.join(__dirname, `../renderer/${MAIN_WINDOW_VITE_NAME}`);
|
|
protocol.handle(RENDERER_SCHEME, async (request) => {
|
|
const url = new URL(request.url);
|
|
if (url.host !== RENDERER_HOST) {
|
|
return new Response("Not found", { status: 404 });
|
|
}
|
|
const resolved = path.resolve(path.join(distRoot, decodeURIComponent(url.pathname)));
|
|
if (resolved !== distRoot && !resolved.startsWith(distRoot + path.sep)) {
|
|
return new Response("Forbidden", { status: 403 });
|
|
}
|
|
const target = path.extname(resolved) === "" ? path.join(distRoot, "index.html") : resolved;
|
|
try {
|
|
return await net.fetch(pathToFileURL(target).toString());
|
|
} catch {
|
|
return new Response("Not found", { status: 404 });
|
|
}
|
|
});
|
|
}
|
|
|
|
function rendererUrl(): string {
|
|
if (typeof MAIN_WINDOW_VITE_DEV_SERVER_URL !== "undefined" && MAIN_WINDOW_VITE_DEV_SERVER_URL) {
|
|
return MAIN_WINDOW_VITE_DEV_SERVER_URL;
|
|
}
|
|
|
|
return `${RENDERER_ORIGIN}/index.html`;
|
|
}
|
|
|
|
function preloadPath(): string {
|
|
return path.join(__dirname, "preload.js");
|
|
}
|
|
|
|
function annotatePreloadPath(): string {
|
|
return path.join(__dirname, "annotate-preload.js");
|
|
}
|
|
|
|
// Runtime window/taskbar icon for Linux and Windows. macOS ignores this and
|
|
// uses the .app bundle's .icns instead. Packaged: shipped via extraResource to
|
|
// resources/icon.png; dev: the source asset under frontend/assets.
|
|
function windowIconPath(): string | undefined {
|
|
const candidate = app.isPackaged
|
|
? path.join(process.resourcesPath, "icon.png")
|
|
: path.join(__dirname, "../../assets/icon.png");
|
|
return existsSync(candidate) ? candidate : undefined;
|
|
}
|
|
|
|
function setDaemonStatus(nextStatus: DaemonStatus): void {
|
|
daemonStatus = nextStatus;
|
|
mainWindow?.webContents.send("daemon:status", daemonStatus);
|
|
}
|
|
|
|
function createWindow(): void {
|
|
browserViewHost?.dispose();
|
|
browserViewHost = null;
|
|
mainWindow = new BrowserWindow({
|
|
width: 1320,
|
|
height: 860,
|
|
minWidth: 960,
|
|
minHeight: 640,
|
|
title: "Agent Orchestrator",
|
|
icon: windowIconPath(),
|
|
backgroundColor: "#0f1014",
|
|
titleBarStyle: "hiddenInset",
|
|
// Lights visually centered at y=28 — the 56px topbar/.titlebar-nav center
|
|
// line — so lights + nav cluster + header content share one row. macOS
|
|
// draws the 12pt disc 2pt below the given y (measured: center = y + 8),
|
|
// hence 20, not 22.
|
|
trafficLightPosition: { x: 14, y: 20 },
|
|
webPreferences: {
|
|
preload: preloadPath(),
|
|
contextIsolation: true,
|
|
nodeIntegration: false,
|
|
sandbox: true,
|
|
},
|
|
});
|
|
|
|
// Harden navigation: never let renderer/terminal content open in-app windows or
|
|
// navigate the privileged window away from the app origin. External links go to
|
|
// the OS browser. Keep this in place before exposing any daemon output to the renderer.
|
|
mainWindow.webContents.setWindowOpenHandler(({ url }) => {
|
|
if (/^https?:\/\//.test(url)) {
|
|
void shell.openExternal(url);
|
|
}
|
|
return { action: "deny" };
|
|
});
|
|
|
|
mainWindow.webContents.on("will-navigate", (event, url) => {
|
|
if (url !== mainWindow?.webContents.getURL()) {
|
|
event.preventDefault();
|
|
}
|
|
});
|
|
|
|
browserViewHost = createBrowserViewHost({
|
|
mainWindow,
|
|
ipcMain,
|
|
shell,
|
|
WebContentsView,
|
|
annotatePreloadPath: annotatePreloadPath(),
|
|
rendererOrigin: RENDERER_ORIGIN,
|
|
});
|
|
|
|
void mainWindow.loadURL(rendererUrl());
|
|
|
|
if (isDev && process.env.AO_OPEN_DEVTOOLS === "1") {
|
|
mainWindow.webContents.once("did-frame-finish-load", () => {
|
|
mainWindow?.webContents.openDevTools({ mode: "detach" });
|
|
});
|
|
}
|
|
|
|
mainWindow.on("closed", () => {
|
|
browserViewHost?.dispose();
|
|
browserViewHost = null;
|
|
mainWindow = null;
|
|
});
|
|
}
|
|
|
|
// How long the supervisor waits for the daemon to confirm its bound port (via
|
|
// the listen log line or running.json) before reporting the configured port as
|
|
// a best-effort fallback.
|
|
const PORT_DISCOVERY_TIMEOUT_MS = 15_000;
|
|
const RUN_FILE_POLL_MS = 300;
|
|
// Accept run-files stamped slightly before our spawn timestamp: the daemon's
|
|
// clock reading and ours race within normal scheduling jitter.
|
|
const RUN_FILE_FRESHNESS_SKEW_MS = 2_000;
|
|
const DAEMON_PROBE_TIMEOUT_MS = 2_000;
|
|
const DAEMON_SERVICE_NAME = "agent-orchestrator-daemon";
|
|
|
|
type DaemonProbe = {
|
|
status: string;
|
|
service: string;
|
|
pid: number;
|
|
executablePath?: string;
|
|
workingDirectory?: string;
|
|
};
|
|
|
|
function runFilePath(): string | null {
|
|
if (process.env.AO_RUN_FILE) return process.env.AO_RUN_FILE;
|
|
return defaultRunFilePath(process.platform, process.env, os.homedir());
|
|
}
|
|
|
|
function daemonEnv(): NodeJS.ProcessEnv {
|
|
return {
|
|
...process.env,
|
|
AO_TELEMETRY_EVENTS: process.env.AO_TELEMETRY_EVENTS ?? "on",
|
|
AO_TELEMETRY_REMOTE: process.env.AO_TELEMETRY_REMOTE ?? "posthog",
|
|
AO_TELEMETRY_POSTHOG_KEY: process.env.AO_TELEMETRY_POSTHOG_KEY ?? DEFAULT_POSTHOG_PROJECT_KEY,
|
|
AO_TELEMETRY_POSTHOG_HOST: process.env.AO_TELEMETRY_POSTHOG_HOST ?? DEFAULT_POSTHOG_HOST,
|
|
};
|
|
}
|
|
|
|
function pathKey(value: string): string {
|
|
const resolved = path.resolve(value);
|
|
return process.platform === "win32" ? resolved.toLowerCase() : resolved;
|
|
}
|
|
|
|
function samePath(a: string, b: string): boolean {
|
|
return pathKey(a) === pathKey(b);
|
|
}
|
|
|
|
function pathInside(child: string, parent: string): boolean {
|
|
const childKey = pathKey(child);
|
|
const parentKey = pathKey(parent);
|
|
return childKey === parentKey || childKey.startsWith(parentKey + path.sep);
|
|
}
|
|
|
|
function processAlive(pid: number): boolean {
|
|
if (!pid) return false;
|
|
try {
|
|
process.kill(pid, 0);
|
|
return true;
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
async function readDaemonProbe(port: number, endpoint: "healthz" | "readyz"): Promise<DaemonProbe | null> {
|
|
const controller = new AbortController();
|
|
const timer = setTimeout(() => controller.abort(), DAEMON_PROBE_TIMEOUT_MS);
|
|
try {
|
|
const response = await net.fetch(`http://127.0.0.1:${port}/${endpoint}`, { signal: controller.signal });
|
|
if (!response.ok) return null;
|
|
const body = (await response.json()) as Partial<DaemonProbe>;
|
|
if (body.status !== (endpoint === "healthz" ? "ok" : "ready")) return null;
|
|
if (body.service !== DAEMON_SERVICE_NAME) return null;
|
|
if (typeof body.pid !== "number" || !Number.isInteger(body.pid)) return null;
|
|
return {
|
|
status: body.status,
|
|
service: body.service,
|
|
pid: body.pid,
|
|
executablePath: typeof body.executablePath === "string" ? body.executablePath : undefined,
|
|
workingDirectory: typeof body.workingDirectory === "string" ? body.workingDirectory : undefined,
|
|
};
|
|
} catch {
|
|
return null;
|
|
} finally {
|
|
clearTimeout(timer);
|
|
}
|
|
}
|
|
|
|
function daemonIdentityError(launch: DaemonLaunchSpec, probe: DaemonProbe): string | null {
|
|
if (launch.source === "dev") {
|
|
const cwdMatches = probe.workingDirectory ? samePath(probe.workingDirectory, launch.cwd) : false;
|
|
const executableMatches = probe.executablePath ? pathInside(probe.executablePath, launch.cwd) : false;
|
|
if (!probe.workingDirectory && !probe.executablePath) {
|
|
return "An older AO daemon is already running, but it does not report its checkout identity. Stop it and restart this app.";
|
|
}
|
|
if (!cwdMatches && !executableMatches) {
|
|
const actual = probe.workingDirectory ?? probe.executablePath ?? "an unknown location";
|
|
return `Another AO daemon is already running from ${actual}; expected this checkout at ${launch.cwd}. Stop the other daemon before using this checkout.`;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
if (launch.source === "bundled") {
|
|
if (!probe.executablePath) {
|
|
return "An older AO daemon is already running, but it does not report its binary path. Stop it and restart this app.";
|
|
}
|
|
if (!samePath(probe.executablePath, launch.command)) {
|
|
return `Another AO daemon is already running from ${probe.executablePath}; expected ${launch.command}. Stop the other daemon before using this app.`;
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
async function inspectExistingDaemon(launch: DaemonLaunchSpec): Promise<DaemonStatus | null> {
|
|
const handshakePath = runFilePath();
|
|
if (!handshakePath) return null;
|
|
let contents: string;
|
|
try {
|
|
contents = await readFile(handshakePath, "utf8");
|
|
} catch {
|
|
return null;
|
|
}
|
|
const info = parseRunFile(contents);
|
|
if (!info || !processAlive(info.pid)) return null;
|
|
|
|
const health = await readDaemonProbe(info.port, "healthz");
|
|
if (!health || health.pid !== info.pid) return null;
|
|
const ready = await readDaemonProbe(info.port, "readyz");
|
|
if (!ready || ready.pid !== info.pid) {
|
|
return {
|
|
state: "error",
|
|
port: info.port,
|
|
pid: info.pid,
|
|
executablePath: health.executablePath,
|
|
workingDirectory: health.workingDirectory,
|
|
message: "An AO daemon is already running, but it is not ready yet.",
|
|
};
|
|
}
|
|
|
|
const identityError = daemonIdentityError(launch, ready);
|
|
if (identityError) {
|
|
return {
|
|
state: "error",
|
|
port: info.port,
|
|
pid: info.pid,
|
|
executablePath: ready.executablePath,
|
|
workingDirectory: ready.workingDirectory,
|
|
message: identityError,
|
|
};
|
|
}
|
|
|
|
return {
|
|
state: "ready",
|
|
port: info.port,
|
|
pid: info.pid,
|
|
executablePath: ready.executablePath,
|
|
workingDirectory: ready.workingDirectory,
|
|
};
|
|
}
|
|
|
|
async function refreshDaemonStatus(): Promise<DaemonStatus> {
|
|
if (daemonProcess) {
|
|
return daemonStatus;
|
|
}
|
|
const launch = resolveDaemonLaunch(
|
|
process.env,
|
|
app.isPackaged,
|
|
process.resourcesPath,
|
|
app.getAppPath(),
|
|
process.platform,
|
|
);
|
|
if (!launch) return daemonStatus;
|
|
const existing = await inspectExistingDaemon(launch);
|
|
if (existing) {
|
|
setDaemonStatus(existing);
|
|
} else if (
|
|
daemonStatus.state === "ready" ||
|
|
(daemonStatus.state === "error" && (daemonStatus.pid || daemonStatus.port))
|
|
) {
|
|
setDaemonStatus({
|
|
state: "stopped",
|
|
message: "AO daemon is no longer reachable.",
|
|
});
|
|
}
|
|
return daemonStatus;
|
|
}
|
|
|
|
async function startDaemon(): Promise<DaemonStatus> {
|
|
if (daemonStartPromise) {
|
|
return daemonStartPromise;
|
|
}
|
|
const startEpoch = daemonStartEpoch;
|
|
const promise = startDaemonInner(startEpoch).finally(() => {
|
|
if (daemonStartPromise === promise) {
|
|
daemonStartPromise = null;
|
|
}
|
|
});
|
|
daemonStartPromise = promise;
|
|
return daemonStartPromise;
|
|
}
|
|
|
|
async function startDaemonInner(startEpoch: number): Promise<DaemonStatus> {
|
|
if (daemonProcess) {
|
|
return daemonStatus;
|
|
}
|
|
|
|
const launch = resolveDaemonLaunch(
|
|
process.env,
|
|
app.isPackaged,
|
|
process.resourcesPath,
|
|
app.getAppPath(),
|
|
process.platform,
|
|
);
|
|
if (!launch) {
|
|
setDaemonStatus({
|
|
state: "stopped",
|
|
message: "AO_DAEMON_COMMAND is not configured; renderer uses loopback REST when available.",
|
|
});
|
|
return daemonStatus;
|
|
}
|
|
|
|
const existing = await inspectExistingDaemon(launch);
|
|
if (startEpoch !== daemonStartEpoch) {
|
|
return daemonStatus;
|
|
}
|
|
if (existing) {
|
|
setDaemonStatus(existing);
|
|
return daemonStatus;
|
|
}
|
|
|
|
if (launch.source === "bundled" && !existsSync(launch.command)) {
|
|
setDaemonStatus({
|
|
state: "error",
|
|
message: `Bundled AO daemon binary was not found at ${launch.command}. Rebuild the desktop package.`,
|
|
});
|
|
return daemonStatus;
|
|
}
|
|
|
|
setDaemonStatus({ state: "starting" });
|
|
|
|
// Capture the spawned handle locally so the async lifecycle listeners act only
|
|
// on THIS process. Without this, a stale exit from an already-stopped daemon
|
|
// could null out a newer daemonProcess started in the meantime, orphaning it.
|
|
//
|
|
// `detached` makes the child its own process-group leader. Because shell:true
|
|
// runs the command through /bin/sh, a plain kill() would only signal the shell
|
|
// wrapper and orphan the real daemon (which keeps holding the port). Killing
|
|
// the whole group via killDaemon() reaches the daemon and any PTY children.
|
|
const child = spawn(launch.command, launch.args, {
|
|
cwd: launch.cwd,
|
|
env: daemonEnv(),
|
|
shell: launch.shell,
|
|
detached: true,
|
|
});
|
|
daemonProcess = child;
|
|
|
|
// Discover the port the daemon ACTUALLY bound rather than trusting AO_PORT:
|
|
// the daemon may fall back to a different port than the one requested. Two
|
|
// confirmed sources race — the "daemon listening" slog line (stderr, but both
|
|
// streams are scanned) and the running.json handshake — first one wins.
|
|
const spawnedAtMs = Date.now();
|
|
let portConfirmed = false;
|
|
let runFileTimer: ReturnType<typeof setInterval> | undefined;
|
|
let fallbackTimer: ReturnType<typeof setTimeout> | undefined;
|
|
|
|
const stopDiscovery = () => {
|
|
if (runFileTimer) clearInterval(runFileTimer);
|
|
runFileTimer = undefined;
|
|
if (fallbackTimer) clearTimeout(fallbackTimer);
|
|
fallbackTimer = undefined;
|
|
};
|
|
|
|
const reportBoundPort = (port: number) => {
|
|
if (portConfirmed || daemonProcess !== child || daemonStoppingProcess === child) return;
|
|
portConfirmed = true;
|
|
stopDiscovery();
|
|
setDaemonStatus({ state: "ready", port });
|
|
};
|
|
|
|
// One scanner per stream: each keeps its own partial-line buffer.
|
|
const scanStdout = createListenPortScanner(reportBoundPort);
|
|
const scanStderr = createListenPortScanner(reportBoundPort);
|
|
|
|
child.stdout.on("data", (chunk: Buffer) => {
|
|
const text = chunk.toString("utf8");
|
|
console.log(text.trimEnd());
|
|
scanStdout(text);
|
|
});
|
|
|
|
child.stderr.on("data", (chunk: Buffer) => {
|
|
const text = chunk.toString("utf8");
|
|
console.error(text.trimEnd());
|
|
scanStderr(text);
|
|
});
|
|
|
|
const handshakePath = runFilePath();
|
|
if (handshakePath) {
|
|
runFileTimer = setInterval(() => {
|
|
readFile(handshakePath, "utf8")
|
|
.then((contents) => {
|
|
const info = parseRunFile(contents);
|
|
// Ignore a stale handshake left by a previous daemon: only trust a
|
|
// file written at/after this spawn.
|
|
if (info && info.startedAtMs >= spawnedAtMs - RUN_FILE_FRESHNESS_SKEW_MS) {
|
|
reportBoundPort(info.port);
|
|
}
|
|
})
|
|
.catch(() => undefined); // absent until the daemon binds; keep polling
|
|
}, RUN_FILE_POLL_MS);
|
|
}
|
|
|
|
// Last resort: neither source confirmed (e.g. an older daemon build). Report
|
|
// the configured port so the renderer is not stuck on "starting" forever.
|
|
fallbackTimer = setTimeout(() => {
|
|
if (portConfirmed || daemonProcess !== child || daemonStoppingProcess === child) return;
|
|
stopDiscovery();
|
|
setDaemonStatus({
|
|
state: "ready",
|
|
port: process.env.AO_PORT ? Number(process.env.AO_PORT) : undefined,
|
|
message: "Daemon port not confirmed from logs or running.json; assuming the configured port.",
|
|
});
|
|
}, PORT_DISCOVERY_TIMEOUT_MS);
|
|
|
|
child.once("error", (error) => {
|
|
stopDiscovery();
|
|
if (daemonProcess !== child) return;
|
|
daemonProcess = null;
|
|
if (daemonStoppingProcess === child) daemonStoppingProcess = null;
|
|
setDaemonStatus({ state: "error", message: error.message });
|
|
});
|
|
|
|
child.once("exit", (code, signal) => {
|
|
stopDiscovery();
|
|
if (daemonProcess !== child) return;
|
|
daemonProcess = null;
|
|
if (daemonStoppingProcess === child) daemonStoppingProcess = null;
|
|
setDaemonStatus({
|
|
state: "stopped",
|
|
message: signal ? `Daemon exited with ${signal}` : `Daemon exited with code ${code ?? "unknown"}`,
|
|
});
|
|
});
|
|
|
|
return daemonStatus;
|
|
}
|
|
|
|
// Signal the daemon's whole process group so the kill reaches the real daemon
|
|
// behind the /bin/sh wrapper (and any PTY children it forked), not just the
|
|
// shell. Falls back to a direct kill if the group signal can't be delivered
|
|
// (e.g. the process already exited).
|
|
function killDaemon(child: ChildProcessWithoutNullStreams): void {
|
|
if (child.pid === undefined) return;
|
|
try {
|
|
process.kill(-child.pid, "SIGTERM");
|
|
} catch {
|
|
child.kill("SIGTERM");
|
|
}
|
|
}
|
|
|
|
function stopDaemon(): DaemonStatus {
|
|
daemonStartEpoch += 1;
|
|
daemonStartPromise = null;
|
|
if (!daemonProcess) {
|
|
setDaemonStatus({ state: "stopped" });
|
|
return daemonStatus;
|
|
}
|
|
|
|
daemonStoppingProcess = daemonProcess;
|
|
killDaemon(daemonProcess);
|
|
setDaemonStatus({ state: "stopped" });
|
|
return daemonStatus;
|
|
}
|
|
|
|
ipcMain.handle("daemon:getStatus", () => refreshDaemonStatus());
|
|
ipcMain.handle("daemon:start", () => startDaemon());
|
|
ipcMain.handle("daemon:stop", () => stopDaemon());
|
|
ipcMain.handle("app:getVersion", () => app.getVersion());
|
|
ipcMain.handle("telemetry:getBootstrap", () =>
|
|
buildTelemetryBootstrap(process.env, app.getVersion(), process.platform),
|
|
);
|
|
ipcMain.handle("app:chooseDirectory", async () => {
|
|
const options: OpenDialogOptions = {
|
|
properties: ["openDirectory"],
|
|
title: "Choose a git repository",
|
|
};
|
|
const result = mainWindow ? await dialog.showOpenDialog(mainWindow, options) : await dialog.showOpenDialog(options);
|
|
|
|
if (result.canceled) return null;
|
|
return result.filePaths[0] ?? null;
|
|
});
|
|
ipcMain.handle("clipboard:writeText", (_event, text: string) => {
|
|
clipboard.writeText(text, "clipboard");
|
|
if (process.platform === "linux") {
|
|
clipboard.writeText(text, "selection");
|
|
}
|
|
});
|
|
ipcMain.handle("clipboard:readText", () => clipboard.readText());
|
|
|
|
ipcMain.handle("notifications:show", (_event, notification: { id: string; title: string; body?: string }) => {
|
|
if (!notification.id || !notification.title || !ElectronNotification.isSupported()) return;
|
|
const toast = new ElectronNotification({
|
|
title: notification.title,
|
|
body: notification.body,
|
|
});
|
|
toast.on("click", () => {
|
|
if (!mainWindow) return;
|
|
if (mainWindow.isMinimized()) mainWindow.restore();
|
|
mainWindow.show();
|
|
mainWindow.focus();
|
|
mainWindow.webContents.send("notifications:click", notification.id);
|
|
});
|
|
toast.show();
|
|
});
|
|
|
|
// Auto-update only runs for packaged builds reading the GitHub Releases feed
|
|
// (see forge.config.ts publishers). In dev there is no feed, so it is skipped.
|
|
// A live updater additionally requires a signed + notarized build — see
|
|
// frontend/docs/desktop-release.md.
|
|
function initAutoUpdates(): void {
|
|
if (!app.isPackaged) return;
|
|
updateElectronApp();
|
|
}
|
|
|
|
app.whenReady().then(() => {
|
|
registerRendererProtocol();
|
|
createWindow();
|
|
void startDaemon();
|
|
initAutoUpdates();
|
|
|
|
app.on("activate", () => {
|
|
if (BrowserWindow.getAllWindows().length === 0) {
|
|
createWindow();
|
|
}
|
|
});
|
|
});
|
|
|
|
app.on("before-quit", () => {
|
|
browserViewHost?.dispose();
|
|
browserViewHost = null;
|
|
if (daemonProcess) {
|
|
killDaemon(daemonProcess);
|
|
}
|
|
});
|
|
|
|
app.on("window-all-closed", () => {
|
|
if (process.platform !== "darwin") {
|
|
app.quit();
|
|
}
|
|
});
|