mirror of
https://github.com/CherryHQ/cherry-studio.git
synced 2025-12-27 04:31:27 +08:00
commit 97d251569690462763810270ad850ad6b0057ac9
Author: kangfenmao <kangfenmao@qq.com>
Date: Mon Mar 17 10:24:43 2025 +0800
feat: refactor IPC handlers for binary management and update localization strings
- Simplified IPC handlers for checking binary existence and retrieving binary paths by removing unnecessary await statements.
- Updated localization strings in English, Japanese, Russian, Simplified Chinese, and Traditional Chinese to change "Install Dependencies" to "Install".
- Removed the MCPSettings component, replacing it with a new InstallNpxUv component for better management of binary installations.
commit d0f6039c7659a0f4cc97555434999c731ea07f9f
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sun Mar 16 23:52:18 2025 +0800
feat: enhance showAddModal to pre-fill form with server details
commit dde8253dc8bdffb482b9af19a07bc89886a19d3a
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sun Mar 16 23:27:17 2025 +0800
feat: add binary management APIs and enhance MCP service for dependency installation
commit d8fda4b7b0e238097f1811850517bd56fe0de0df
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sun Mar 16 21:57:34 2025 +0800
fix: improve error logging in MCPService and streamline tool call response handling in OpenAIProvider
commit e7af2085a66989d9be546701e4f5308e1008cb18
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sun Mar 16 15:14:32 2025 +0800
fix: lint
commit 2ef7d16298a1270df26974158140015b8cbd91bc
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sat Mar 15 21:11:26 2025 +0800
feat: implement uv binary installation script and integrate with MCP service
commit d318b4e5fc8b506e6d4b08490a9e7ceffe9add80
Author: Vaayne <liu.vaayne@gmail.com>
Date: Sat Mar 15 20:28:58 2025 +0800
feat: add uv binary installation script and enhance MCP service command handling
147 lines
7.5 KiB
TypeScript
147 lines
7.5 KiB
TypeScript
import { electronAPI } from '@electron-toolkit/preload'
|
|
import { FileType, KnowledgeBaseParams, KnowledgeItem, MCPServer, Shortcut, WebDavConfig } from '@types'
|
|
import { contextBridge, ipcRenderer, OpenDialogOptions, shell } from 'electron'
|
|
|
|
// Custom APIs for renderer
|
|
const api = {
|
|
getAppInfo: () => ipcRenderer.invoke('app:info'),
|
|
reload: () => ipcRenderer.invoke('app:reload'),
|
|
setProxy: (proxy: string) => ipcRenderer.invoke('app:proxy', proxy),
|
|
checkForUpdate: () => ipcRenderer.invoke('app:check-for-update'),
|
|
showUpdateDialog: () => ipcRenderer.invoke('app:show-update-dialog'),
|
|
setLanguage: (lang: string) => ipcRenderer.invoke('app:set-language', lang),
|
|
setTray: (isActive: boolean) => ipcRenderer.invoke('app:set-tray', isActive),
|
|
restartTray: () => ipcRenderer.invoke('app:restart-tray'),
|
|
setTheme: (theme: 'light' | 'dark') => ipcRenderer.invoke('app:set-theme', theme),
|
|
openWebsite: (url: string) => ipcRenderer.invoke('open:website', url),
|
|
minApp: (url: string) => ipcRenderer.invoke('minapp', url),
|
|
clearCache: () => ipcRenderer.invoke('app:clear-cache'),
|
|
zip: {
|
|
compress: (text: string) => ipcRenderer.invoke('zip:compress', text),
|
|
decompress: (text: Buffer) => ipcRenderer.invoke('zip:decompress', text)
|
|
},
|
|
backup: {
|
|
backup: (fileName: string, data: string, destinationPath?: string) =>
|
|
ipcRenderer.invoke('backup:backup', fileName, data, destinationPath),
|
|
restore: (backupPath: string) => ipcRenderer.invoke('backup:restore', backupPath),
|
|
backupToWebdav: (data: string, webdavConfig: WebDavConfig) =>
|
|
ipcRenderer.invoke('backup:backupToWebdav', data, webdavConfig),
|
|
restoreFromWebdav: (webdavConfig: WebDavConfig) => ipcRenderer.invoke('backup:restoreFromWebdav', webdavConfig)
|
|
},
|
|
file: {
|
|
select: (options?: OpenDialogOptions) => ipcRenderer.invoke('file:select', options),
|
|
upload: (filePath: string) => ipcRenderer.invoke('file:upload', filePath),
|
|
delete: (fileId: string) => ipcRenderer.invoke('file:delete', fileId),
|
|
read: (fileId: string) => ipcRenderer.invoke('file:read', fileId),
|
|
clear: () => ipcRenderer.invoke('file:clear'),
|
|
get: (filePath: string) => ipcRenderer.invoke('file:get', filePath),
|
|
create: (fileName: string) => ipcRenderer.invoke('file:create', fileName),
|
|
write: (filePath: string, data: Uint8Array | string) => ipcRenderer.invoke('file:write', filePath, data),
|
|
open: (options?: { decompress: boolean }) => ipcRenderer.invoke('file:open', options),
|
|
openPath: (path: string) => ipcRenderer.invoke('file:openPath', path),
|
|
save: (path: string, content: string, options?: { compress: boolean }) =>
|
|
ipcRenderer.invoke('file:save', path, content, options),
|
|
selectFolder: () => ipcRenderer.invoke('file:selectFolder'),
|
|
saveImage: (name: string, data: string) => ipcRenderer.invoke('file:saveImage', name, data),
|
|
base64Image: (fileId: string) => ipcRenderer.invoke('file:base64Image', fileId),
|
|
download: (url: string) => ipcRenderer.invoke('file:download', url),
|
|
copy: (fileId: string, destPath: string) => ipcRenderer.invoke('file:copy', fileId, destPath),
|
|
binaryFile: (fileId: string) => ipcRenderer.invoke('file:binaryFile', fileId)
|
|
},
|
|
fs: {
|
|
read: (path: string) => ipcRenderer.invoke('fs:read', path)
|
|
},
|
|
export: {
|
|
toWord: (markdown: string, fileName: string) => ipcRenderer.invoke('export:word', markdown, fileName)
|
|
},
|
|
openPath: (path: string) => ipcRenderer.invoke('open:path', path),
|
|
shortcuts: {
|
|
update: (shortcuts: Shortcut[]) => ipcRenderer.invoke('shortcuts:update', shortcuts)
|
|
},
|
|
knowledgeBase: {
|
|
create: ({ id, model, apiKey, baseURL }: KnowledgeBaseParams) =>
|
|
ipcRenderer.invoke('knowledge-base:create', { id, model, apiKey, baseURL }),
|
|
reset: ({ base }: { base: KnowledgeBaseParams }) => ipcRenderer.invoke('knowledge-base:reset', { base }),
|
|
delete: (id: string) => ipcRenderer.invoke('knowledge-base:delete', id),
|
|
add: ({
|
|
base,
|
|
item,
|
|
forceReload = false
|
|
}: {
|
|
base: KnowledgeBaseParams
|
|
item: KnowledgeItem
|
|
forceReload?: boolean
|
|
}) => ipcRenderer.invoke('knowledge-base:add', { base, item, forceReload }),
|
|
remove: ({ uniqueId, uniqueIds, base }: { uniqueId: string; uniqueIds: string[]; base: KnowledgeBaseParams }) =>
|
|
ipcRenderer.invoke('knowledge-base:remove', { uniqueId, uniqueIds, base }),
|
|
search: ({ search, base }: { search: string; base: KnowledgeBaseParams }) =>
|
|
ipcRenderer.invoke('knowledge-base:search', { search, base })
|
|
},
|
|
window: {
|
|
setMinimumSize: (width: number, height: number) => ipcRenderer.invoke('window:set-minimum-size', width, height),
|
|
resetMinimumSize: () => ipcRenderer.invoke('window:reset-minimum-size')
|
|
},
|
|
gemini: {
|
|
uploadFile: (file: FileType, apiKey: string) => ipcRenderer.invoke('gemini:upload-file', file, apiKey),
|
|
base64File: (file: FileType) => ipcRenderer.invoke('gemini:base64-file', file),
|
|
retrieveFile: (file: FileType, apiKey: string) => ipcRenderer.invoke('gemini:retrieve-file', file, apiKey),
|
|
listFiles: (apiKey: string) => ipcRenderer.invoke('gemini:list-files', apiKey),
|
|
deleteFile: (apiKey: string, fileId: string) => ipcRenderer.invoke('gemini:delete-file', apiKey, fileId)
|
|
},
|
|
selectionMenu: {
|
|
action: (action: string) => ipcRenderer.invoke('selection-menu:action', action)
|
|
},
|
|
config: {
|
|
set: (key: string, value: any) => ipcRenderer.invoke('config:set', key, value),
|
|
get: (key: string) => ipcRenderer.invoke('config:get', key)
|
|
},
|
|
miniWindow: {
|
|
show: () => ipcRenderer.invoke('miniwindow:show'),
|
|
hide: () => ipcRenderer.invoke('miniwindow:hide'),
|
|
close: () => ipcRenderer.invoke('miniwindow:close'),
|
|
toggle: () => ipcRenderer.invoke('miniwindow:toggle')
|
|
},
|
|
aes: {
|
|
encrypt: (text: string, secretKey: string, iv: string) => ipcRenderer.invoke('aes:encrypt', text, secretKey, iv),
|
|
decrypt: (encryptedData: string, iv: string, secretKey: string) =>
|
|
ipcRenderer.invoke('aes:decrypt', encryptedData, iv, secretKey)
|
|
},
|
|
mcp: {
|
|
listServers: () => ipcRenderer.invoke('mcp:list-servers'),
|
|
addServer: (server: MCPServer) => ipcRenderer.invoke('mcp:add-server', server),
|
|
updateServer: (server: MCPServer) => ipcRenderer.invoke('mcp:update-server', server),
|
|
deleteServer: (serverName: string) => ipcRenderer.invoke('mcp:delete-server', serverName),
|
|
setServerActive: (name: string, isActive: boolean) =>
|
|
ipcRenderer.invoke('mcp:set-server-active', { name, isActive }),
|
|
listTools: (serverName?: string) => ipcRenderer.invoke('mcp:list-tools', serverName),
|
|
callTool: (params: { client: string; name: string; args: any }) => ipcRenderer.invoke('mcp:call-tool', params),
|
|
cleanup: () => ipcRenderer.invoke('mcp:cleanup')
|
|
},
|
|
shell: {
|
|
openExternal: shell.openExternal
|
|
},
|
|
|
|
// Binary related APIs
|
|
isBinaryExist: (name: string) => ipcRenderer.invoke('app:is-binary-exist', name),
|
|
getBinaryPath: (name: string) => ipcRenderer.invoke('app:get-binary-path', name),
|
|
installUVBinary: () => ipcRenderer.invoke('app:install-uv-binary'),
|
|
installBunBinary: () => ipcRenderer.invoke('app:install-bun-binary')
|
|
}
|
|
|
|
// Use `contextBridge` APIs to expose Electron APIs to
|
|
// renderer only if context isolation is enabled, otherwise
|
|
// just add to the DOM global.
|
|
if (process.contextIsolated) {
|
|
try {
|
|
contextBridge.exposeInMainWorld('electron', electronAPI)
|
|
contextBridge.exposeInMainWorld('api', api)
|
|
} catch (error) {
|
|
console.error(error)
|
|
}
|
|
} else {
|
|
// @ts-ignore (define in dts)
|
|
window.electron = electronAPI
|
|
// @ts-ignore (define in dts)
|
|
window.api = api
|
|
}
|