mirror of
https://github.com/wavetermdev/waveterm.git
synced 2025-11-27 20:50:25 +08:00
adds a new secret store protected by electron's safeStorage API. currently just hooked up to the CLI via a new wsh command: `wsh secret`. will be used to power secrets in tsunami later (and for config + connections)
120 lines
4.3 KiB
TypeScript
120 lines
4.3 KiB
TypeScript
// Copyright 2025, Command Line Inc.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { WindowService } from "@/app/store/services";
|
|
import { RpcResponseHelper, WshClient } from "@/app/store/wshclient";
|
|
import { RpcApi } from "@/app/store/wshclientapi";
|
|
import { Notification, safeStorage } from "electron";
|
|
import { getResolvedUpdateChannel } from "emain/updater";
|
|
import { unamePlatform } from "./emain-platform";
|
|
import { getWebContentsByBlockId, webGetSelector } from "./emain-web";
|
|
import { createBrowserWindow, getWaveWindowById, getWaveWindowByWorkspaceId } from "./emain-window";
|
|
|
|
export class ElectronWshClientType extends WshClient {
|
|
constructor() {
|
|
super("electron");
|
|
}
|
|
|
|
async handle_webselector(rh: RpcResponseHelper, data: CommandWebSelectorData): Promise<string[]> {
|
|
if (!data.tabid || !data.blockid || !data.workspaceid) {
|
|
throw new Error("tabid and blockid are required");
|
|
}
|
|
const ww = getWaveWindowByWorkspaceId(data.workspaceid);
|
|
if (ww == null) {
|
|
throw new Error(`no window found with workspace ${data.workspaceid}`);
|
|
}
|
|
const wc = await getWebContentsByBlockId(ww, data.tabid, data.blockid);
|
|
if (wc == null) {
|
|
throw new Error(`no webcontents found with blockid ${data.blockid}`);
|
|
}
|
|
const rtn = await webGetSelector(wc, data.selector, data.opts);
|
|
return rtn;
|
|
}
|
|
|
|
async handle_notify(rh: RpcResponseHelper, notificationOptions: WaveNotificationOptions) {
|
|
new Notification({
|
|
title: notificationOptions.title,
|
|
body: notificationOptions.body,
|
|
silent: notificationOptions.silent,
|
|
}).show();
|
|
}
|
|
|
|
async handle_getupdatechannel(rh: RpcResponseHelper): Promise<string> {
|
|
return getResolvedUpdateChannel();
|
|
}
|
|
|
|
async handle_focuswindow(rh: RpcResponseHelper, windowId: string) {
|
|
console.log(`focuswindow ${windowId}`);
|
|
const fullConfig = await RpcApi.GetFullConfigCommand(ElectronWshClient);
|
|
let ww = getWaveWindowById(windowId);
|
|
if (ww == null) {
|
|
const window = await WindowService.GetWindow(windowId);
|
|
if (window == null) {
|
|
throw new Error(`window ${windowId} not found`);
|
|
}
|
|
ww = await createBrowserWindow(window, fullConfig, {
|
|
unamePlatform,
|
|
isPrimaryStartupWindow: false,
|
|
});
|
|
}
|
|
ww.focus();
|
|
}
|
|
|
|
async handle_electronencrypt(
|
|
rh: RpcResponseHelper,
|
|
data: CommandElectronEncryptData
|
|
): Promise<CommandElectronEncryptRtnData> {
|
|
if (!safeStorage.isEncryptionAvailable()) {
|
|
throw new Error("encryption is not available");
|
|
}
|
|
const encrypted = safeStorage.encryptString(data.plaintext);
|
|
const ciphertext = encrypted.toString("base64");
|
|
|
|
let storagebackend = "";
|
|
if (process.platform === "linux") {
|
|
storagebackend = safeStorage.getSelectedStorageBackend();
|
|
}
|
|
|
|
return {
|
|
ciphertext,
|
|
storagebackend,
|
|
};
|
|
}
|
|
|
|
async handle_electrondecrypt(
|
|
rh: RpcResponseHelper,
|
|
data: CommandElectronDecryptData
|
|
): Promise<CommandElectronDecryptRtnData> {
|
|
if (!safeStorage.isEncryptionAvailable()) {
|
|
throw new Error("encryption is not available");
|
|
}
|
|
const encrypted = Buffer.from(data.ciphertext, "base64");
|
|
const plaintext = safeStorage.decryptString(encrypted);
|
|
|
|
let storagebackend = "";
|
|
if (process.platform === "linux") {
|
|
storagebackend = safeStorage.getSelectedStorageBackend();
|
|
}
|
|
|
|
return {
|
|
plaintext,
|
|
storagebackend,
|
|
};
|
|
}
|
|
|
|
// async handle_workspaceupdate(rh: RpcResponseHelper) {
|
|
// console.log("workspaceupdate");
|
|
// fireAndForget(async () => {
|
|
// console.log("workspace menu clicked");
|
|
// const updatedWorkspaceMenu = await getWorkspaceMenu();
|
|
// const workspaceMenu = Menu.getApplicationMenu().getMenuItemById("workspace-menu");
|
|
// workspaceMenu.submenu = Menu.buildFromTemplate(updatedWorkspaceMenu);
|
|
// });
|
|
// }
|
|
}
|
|
|
|
export let ElectronWshClient: ElectronWshClientType;
|
|
|
|
export function initElectronWshClient() {
|
|
ElectronWshClient = new ElectronWshClientType();
|
|
}
|