* fix: reduce the number of api call Signed-off-by: James <james@jan.ai> * fix: download progress Signed-off-by: James <james@jan.ai> * chore: save blob * fix: server boot up * fix: download state not updating Signed-off-by: James <james@jan.ai> * fix: copy assets * Add Dockerfile CPU for Jan Server and Jan Web * Add Dockerfile GPU for Jan Server and Jan Web * feat: S3 adapter * Update check find count from ./pre-install and correct copy:asserts command * server add bundleDependencies @janhq/core * server add bundleDependencies @janhq/core * fix: update success/failed download state (#1945) * fix: update success/failed download state Signed-off-by: James <james@jan.ai> * fix: download model progress and state handling for both Desktop and Web --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Louis <louis@jan.ai> * chore: refactor * fix: load models empty first time open * Add Docker compose * fix: assistants onUpdate --------- Signed-off-by: James <james@jan.ai> Co-authored-by: James <james@jan.ai> Co-authored-by: Hien To <tominhhien97@gmail.com> Co-authored-by: NamH <NamNh0122@gmail.com>
84 lines
2.4 KiB
TypeScript
84 lines
2.4 KiB
TypeScript
import { ipcMain, app } from 'electron'
|
|
// @ts-ignore
|
|
import reflect from '@alumna/reflect'
|
|
|
|
import { FileManagerRoute, FileStat } from '@janhq/core'
|
|
import { getResourcePath } from './../utils/path'
|
|
import fs from 'fs'
|
|
import { join } from 'path'
|
|
import { getJanDataFolderPath, normalizeFilePath } from '@janhq/core/node'
|
|
|
|
/**
|
|
* Handles file system extensions operations.
|
|
*/
|
|
export function handleFileMangerIPCs() {
|
|
// Handles the 'syncFile' IPC event. This event is triggered to synchronize a file from a source path to a destination path.
|
|
ipcMain.handle(
|
|
FileManagerRoute.syncFile,
|
|
async (_event, src: string, dest: string) => {
|
|
return reflect({
|
|
src,
|
|
dest,
|
|
recursive: true,
|
|
delete: false,
|
|
overwrite: true,
|
|
errorOnExist: false,
|
|
})
|
|
}
|
|
)
|
|
|
|
// Handles the 'getJanDataFolderPath' IPC event. This event is triggered to get the user space path.
|
|
ipcMain.handle(
|
|
FileManagerRoute.getJanDataFolderPath,
|
|
(): Promise<string> => Promise.resolve(getJanDataFolderPath())
|
|
)
|
|
|
|
// Handles the 'getResourcePath' IPC event. This event is triggered to get the resource path.
|
|
ipcMain.handle(FileManagerRoute.getResourcePath, async (_event) =>
|
|
getResourcePath()
|
|
)
|
|
|
|
// Handles the 'getUserHomePath' IPC event. This event is triggered to get the user home path.
|
|
ipcMain.handle(FileManagerRoute.getUserHomePath, async (_event) =>
|
|
app.getPath('home')
|
|
)
|
|
|
|
// handle fs is directory here
|
|
ipcMain.handle(
|
|
FileManagerRoute.fileStat,
|
|
async (_event, path: string): Promise<FileStat | undefined> => {
|
|
const normalizedPath = normalizeFilePath(path)
|
|
|
|
const fullPath = join(getJanDataFolderPath(), normalizedPath)
|
|
const isExist = fs.existsSync(fullPath)
|
|
if (!isExist) return undefined
|
|
|
|
const isDirectory = fs.lstatSync(fullPath).isDirectory()
|
|
const size = fs.statSync(fullPath).size
|
|
|
|
const fileStat: FileStat = {
|
|
isDirectory,
|
|
size,
|
|
}
|
|
|
|
return fileStat
|
|
}
|
|
)
|
|
|
|
ipcMain.handle(
|
|
FileManagerRoute.writeBlob,
|
|
async (_event, path: string, data: string): Promise<void> => {
|
|
try {
|
|
const normalizedPath = normalizeFilePath(path)
|
|
const dataBuffer = Buffer.from(data, 'base64')
|
|
fs.writeFileSync(
|
|
join(getJanDataFolderPath(), normalizedPath),
|
|
dataBuffer
|
|
)
|
|
} catch (err) {
|
|
console.error(`writeFile ${path} result: ${err}`)
|
|
}
|
|
}
|
|
)
|
|
}
|