ente/src/preload.ts

116 lines
3.1 KiB
TypeScript
Raw Normal View History

import { Readable } from 'stream';
import * as fs from 'promise-fs';
import * as electron from 'electron';
const { ipcRenderer } = electron;
const responseToReadable = (fileStream: any) => {
const reader = fileStream.getReader();
const rs = new Readable();
rs._read = async () => {
const result = await reader.read();
if (!result.done) {
rs.push(Buffer.from(result.value));
} else {
rs.push(null);
return;
}
};
return rs;
};
const checkExistsAndCreateCollectionDir = async (dirPath: string) => {
if (!fs.existsSync(dirPath)) {
await fs.mkdir(dirPath);
}
};
2021-11-16 07:16:24 +00:00
const checkExistsAndRename = async (oldDirPath: string, newDirPath: string) => {
if (fs.existsSync(oldDirPath)) {
await fs.rename(oldDirPath, newDirPath);
}
};
const saveStreamToDisk = (path: string, fileStream: ReadableStream<any>) => {
const writeable = fs.createWriteStream(path);
const readable = responseToReadable(fileStream);
readable.pipe(writeable);
};
const saveFileToDisk = async (path: string, file: any) => {
await fs.writeFile(path, file);
};
const selectRootDirectory = async () => {
try {
return await ipcRenderer.sendSync('select-dir');
} catch (e) {
console.error(e);
throw e;
}
};
const sendNotification = (content: string) => {
ipcRenderer.send('send-notification', content);
};
2021-03-31 08:33:17 +00:00
const showOnTray = (content: string) => {
ipcRenderer.send('update-tray', content);
};
2021-07-14 05:55:20 +00:00
const registerResumeExportListener = (resumeExport: () => void) => {
2021-11-16 07:16:24 +00:00
ipcRenderer.removeAllListeners('resume-export');
2021-07-14 05:55:20 +00:00
ipcRenderer.on('resume-export', () => resumeExport());
2021-07-09 05:16:33 +00:00
};
const registerStopExportListener = (abortExport: () => void) => {
2021-11-16 07:16:24 +00:00
ipcRenderer.removeAllListeners('stop-export');
2021-03-31 08:33:17 +00:00
ipcRenderer.on('stop-export', () => abortExport());
};
2021-07-09 05:16:33 +00:00
const registerPauseExportListener = (pauseExport: () => void) => {
2021-11-16 07:16:24 +00:00
ipcRenderer.removeAllListeners('pause-export');
2021-07-09 05:16:33 +00:00
ipcRenderer.on('pause-export', () => pauseExport());
};
const registerRetryFailedExportListener = (retryFailedExport: () => void) => {
2021-11-16 07:16:24 +00:00
ipcRenderer.removeAllListeners('retry-export');
2021-07-09 05:16:33 +00:00
ipcRenderer.on('retry-export', () => retryFailedExport());
};
const reloadWindow = () => {
ipcRenderer.send('reload-window');
};
const getExportRecord = async (filePath: string) => {
2021-07-13 13:50:38 +00:00
try {
const filepath = `${filePath}`;
2021-07-13 13:50:38 +00:00
const recordFile = await fs.readFile(filepath, 'utf-8');
return recordFile;
} catch (e) {
// ignore exportFile missing
console.log(e);
}
};
const setExportRecord = async (filePath: string, data: string) => {
const filepath = `${filePath}`;
2021-07-13 13:50:38 +00:00
await fs.writeFile(filepath, data);
};
2021-07-09 05:16:33 +00:00
const windowObject: any = window;
windowObject['ElectronAPIs'] = {
checkExistsAndCreateCollectionDir,
2021-11-16 07:16:24 +00:00
checkExistsAndRename,
saveStreamToDisk,
saveFileToDisk,
selectRootDirectory,
sendNotification,
showOnTray,
reloadWindow,
2021-07-14 05:55:20 +00:00
registerResumeExportListener,
2021-07-09 05:16:33 +00:00
registerStopExportListener,
registerPauseExportListener,
registerRetryFailedExportListener,
2021-07-13 13:50:38 +00:00
getExportRecord,
2021-11-16 07:16:24 +00:00
setExportRecord,
};