ente/src/services/exportService.ts

274 lines
10 KiB
TypeScript
Raw Normal View History

2021-07-14 04:33:28 +00:00
import { retryPromise, runningInBrowser } from 'utils/common';
2021-07-24 15:59:02 +00:00
import { getExportPendingFiles, getExportFailedFiles, getFilesUploadedAfterLastExport, getFileUID, dedupe, getGoogleLikeMetadataFile } from 'utils/export';
2021-06-12 17:14:21 +00:00
import { logError } from 'utils/sentry';
2021-07-08 06:59:26 +00:00
import { getData, LS_KEYS } from 'utils/storage/localStorage';
import { Collection, getLocalCollections } from './collectionService';
2021-03-29 05:15:08 +00:00
import downloadManager from './downloadManager';
import { File, getLocalFiles } from './fileService';
2021-03-29 05:15:08 +00:00
export interface ExportProgress {
2021-07-13 13:39:31 +00:00
current: number;
total: number;
}
export interface ExportStats {
2021-07-13 13:39:31 +00:00
failed: number;
success: number;
2021-07-13 13:39:31 +00:00
}
export interface ExportRecord {
stage: ExportStage
lastAttemptTimestamp: number;
progress: ExportProgress;
queuedFiles: string[];
2021-07-13 13:39:31 +00:00
exportedFiles: string[];
failedFiles: string[];
}
export enum ExportStage {
INIT,
INPROGRESS,
PAUSED,
FINISHED
}
enum ExportNotification {
START = 'export started',
IN_PROGRESS = 'export already in progress',
FINISH = 'export finished',
2021-07-05 12:46:20 +00:00
FAILED = 'export failed',
2021-03-31 08:34:00 +00:00
ABORT = 'export aborted',
2021-07-08 06:59:26 +00:00
PAUSE = 'export paused',
UP_TO_DATE = `no new files to export`
}
2021-07-12 09:15:08 +00:00
enum RecordType {
SUCCESS = 'success',
FAILED = 'failed'
}
2021-07-14 09:16:00 +00:00
export enum ExportType {
NEW,
2021-07-14 09:16:00 +00:00
PENDING,
RETRY_FAILED
2021-07-14 09:16:00 +00:00
}
2021-07-18 15:01:52 +00:00
const ExportRecordFileName='export_status.json';
2021-07-18 15:46:51 +00:00
const MetadataFolderName='metadata';
2021-07-18 15:01:52 +00:00
2021-03-29 05:15:08 +00:00
class ExportService {
ElectronAPIs: any;
2021-05-29 06:27:52 +00:00
private exportInProgress: Promise<{ paused: boolean; }> = null;
2021-07-14 07:21:32 +00:00
private recordUpdateInProgress = Promise.resolve();
private stopExport: boolean = false;
private pauseExport: boolean = false;
2021-07-12 09:15:08 +00:00
constructor() {
2021-07-12 09:15:08 +00:00
this.ElectronAPIs = runningInBrowser() && window['ElectronAPIs'];
}
2021-07-07 07:45:55 +00:00
async selectExportDirectory() {
return await this.ElectronAPIs.selectRootDirectory();
}
2021-07-09 03:35:33 +00:00
stopRunningExport() {
this.stopExport = true;
2021-07-07 07:45:55 +00:00
}
2021-07-09 03:35:33 +00:00
pauseRunningExport() {
2021-07-08 06:59:26 +00:00
this.pauseExport = true;
}
2021-07-14 09:16:00 +00:00
async exportFiles(updateProgress: (progress: ExportProgress) => void, exportType: ExportType) {
if (this.exportInProgress) {
this.ElectronAPIs.sendNotification(ExportNotification.IN_PROGRESS);
return this.exportInProgress;
}
2021-07-08 05:45:20 +00:00
this.ElectronAPIs.showOnTray('starting export');
2021-07-14 09:16:00 +00:00
const exportDir = getData(LS_KEYS.EXPORT)?.folder;
if (!exportDir) {
2021-07-12 09:15:08 +00:00
// no-export folder set
return;
}
2021-07-14 09:16:00 +00:00
let filesToExport: File[];
const allFiles = await getLocalFiles();
2021-07-12 09:15:08 +00:00
const collections = await getLocalCollections();
2021-07-14 09:16:00 +00:00
const exportRecord = await this.getExportRecord(exportDir);
if (exportType === ExportType.NEW) {
filesToExport = await getFilesUploadedAfterLastExport(allFiles, exportRecord);
} else if (exportType === ExportType.RETRY_FAILED) {
2021-07-14 09:16:00 +00:00
filesToExport = await getExportFailedFiles(allFiles, exportRecord);
} else {
filesToExport = await getExportPendingFiles(allFiles, exportRecord);
2021-07-12 09:15:08 +00:00
}
2021-07-14 09:16:00 +00:00
this.exportInProgress = this.fileExporter(filesToExport, collections, updateProgress, exportDir);
const resp = await this.exportInProgress;
this.exportInProgress = null;
return resp;
2021-07-12 09:15:08 +00:00
}
async fileExporter(files: File[], collections: Collection[], updateProgress: (progress: ExportProgress,) => void, dir: string): Promise<{ paused: boolean }> {
2021-07-12 09:15:08 +00:00
try {
if (!files?.length) {
this.ElectronAPIs.sendNotification(ExportNotification.UP_TO_DATE);
return { paused: false };
}
2021-07-12 12:06:21 +00:00
this.stopExport = false;
this.pauseExport = false;
this.addFilesQueuedRecord(dir, files);
const failedFileCount = 0;
2021-07-12 09:15:08 +00:00
2021-07-08 05:45:20 +00:00
this.ElectronAPIs.showOnTray({
export_progress:
`0 / ${files.length} files exported`,
});
2021-07-14 09:16:00 +00:00
updateProgress({
current: 0, total: files.length,
});
2021-07-08 05:45:20 +00:00
this.ElectronAPIs.sendNotification(ExportNotification.START);
const collectionIDMap = new Map<number, string>();
2021-05-29 06:27:52 +00:00
for (const collection of collections) {
2021-06-07 05:04:50 +00:00
const collectionFolderPath = `${dir}/${collection.id}_${this.sanitizeName(collection.name)}`;
await this.ElectronAPIs.checkExistsAndCreateCollectionDir(
2021-05-29 06:27:52 +00:00
collectionFolderPath,
);
2021-07-18 15:46:51 +00:00
await this.ElectronAPIs.checkExistsAndCreateCollectionDir(
`${collectionFolderPath}/${MetadataFolderName}`,
);
collectionIDMap.set(collection.id, collectionFolderPath);
}
2021-05-29 06:27:52 +00:00
for (const [index, file] of files.entries()) {
2021-07-09 03:35:33 +00:00
if (this.stopExport || this.pauseExport) {
2021-07-08 06:59:26 +00:00
if (this.pauseExport) {
this.ElectronAPIs.showOnTray({
export_progress:
`${index} / ${files.length} files exported (paused)`,
paused: true,
});
}
2021-03-31 08:34:00 +00:00
break;
}
2021-07-18 15:46:51 +00:00
const collectionPath = collectionIDMap.get(file.collectionID);
2021-07-12 09:15:08 +00:00
try {
2021-07-18 15:46:51 +00:00
await this.downloadAndSave(file, collectionPath);
await this.addFileExportRecord(dir, file, RecordType.SUCCESS);
2021-07-12 09:15:08 +00:00
} catch (e) {
await this.addFileExportRecord(dir, file, RecordType.FAILED);
2021-07-12 09:15:08 +00:00
logError(e, 'download and save failed for file during export');
}
2021-07-05 12:46:20 +00:00
this.ElectronAPIs.showOnTray({
export_progress:
2021-07-08 05:45:20 +00:00
`${index + 1} / ${files.length} files exported`,
2021-07-05 12:46:20 +00:00
});
updateProgress({ current: index + 1, total: files.length });
}
2021-07-09 03:35:33 +00:00
if (this.stopExport) {
2021-07-08 06:59:26 +00:00
this.ElectronAPIs.sendNotification(
ExportNotification.ABORT,
);
2021-07-09 03:35:33 +00:00
this.ElectronAPIs.showOnTray();
2021-07-08 06:59:26 +00:00
} else if (this.pauseExport) {
this.ElectronAPIs.sendNotification(
ExportNotification.PAUSE,
);
2021-07-14 07:21:32 +00:00
return { paused: true };
2021-07-12 09:15:08 +00:00
} else if (failedFileCount > 0) {
2021-07-08 06:59:26 +00:00
this.ElectronAPIs.sendNotification(
ExportNotification.FAILED,
);
2021-07-05 12:46:20 +00:00
this.ElectronAPIs.showOnTray({
retry_export:
`export failed - retry export`,
});
} else {
2021-07-08 06:59:26 +00:00
this.ElectronAPIs.sendNotification(
ExportNotification.FINISH,
);
2021-07-05 12:46:20 +00:00
this.ElectronAPIs.showOnTray();
}
2021-07-14 07:21:32 +00:00
return { paused: false };
} catch (e) {
2021-06-12 17:14:21 +00:00
logError(e);
2021-03-29 05:15:08 +00:00
}
}
async addFilesQueuedRecord(folder: string, files: File[]) {
const exportRecord = await this.getExportRecord(folder);
exportRecord.queuedFiles = files.map(getFileUID);
await this.updateExportRecord(exportRecord, folder);
}
2021-03-29 11:29:19 +00:00
async addFileExportRecord(folder: string, file: File, type: RecordType) {
const fileUID = getFileUID(file);
2021-07-13 14:42:59 +00:00
const exportRecord = await this.getExportRecord(folder);
exportRecord.queuedFiles = exportRecord.queuedFiles.filter((queuedFilesUID) => queuedFilesUID !== fileUID);
2021-07-13 13:39:31 +00:00
if (type === RecordType.SUCCESS) {
if (!exportRecord.exportedFiles) {
exportRecord.exportedFiles = [];
}
exportRecord.exportedFiles.push(fileUID);
2021-07-14 13:14:38 +00:00
exportRecord.failedFiles && (exportRecord.failedFiles = exportRecord.failedFiles.filter((FailedFileUID) => FailedFileUID !== fileUID));
2021-07-13 13:39:31 +00:00
} else {
if (!exportRecord.failedFiles) {
exportRecord.failedFiles = [];
}
2021-07-14 04:33:28 +00:00
if (!exportRecord.failedFiles.find((x) => x === fileUID)) {
exportRecord.failedFiles.push(fileUID);
}
2021-07-13 13:39:31 +00:00
}
2021-07-14 12:55:05 +00:00
exportRecord.exportedFiles = dedupe(exportRecord.exportedFiles);
exportRecord.queuedFiles = dedupe(exportRecord.queuedFiles);
exportRecord.failedFiles = dedupe(exportRecord.failedFiles);
2021-07-13 14:42:59 +00:00
await this.updateExportRecord(exportRecord, folder);
2021-07-13 13:39:31 +00:00
}
2021-07-13 14:42:59 +00:00
async updateExportRecord(newData: Record<string, any>, folder?: string) {
2021-07-14 04:33:28 +00:00
await this.recordUpdateInProgress;
this.recordUpdateInProgress = (async () => {
try {
if (!folder) {
folder = getData(LS_KEYS.EXPORT)?.folder;
}
const exportRecord = await this.getExportRecord(folder);
const newRecord = { ...exportRecord, ...newData };
2021-07-18 15:01:52 +00:00
await this.ElectronAPIs.setExportRecord(`${folder}/${ExportRecordFileName}`, JSON.stringify(newRecord, null, 2));
} catch (e) {
2021-07-14 13:14:38 +00:00
logError(e, 'error updating Export Record');
2021-07-13 14:42:59 +00:00
}
})();
2021-07-13 13:39:31 +00:00
}
async getExportRecord(folder?: string): Promise<ExportRecord> {
2021-07-14 04:33:28 +00:00
try {
await this.recordUpdateInProgress;
2021-07-14 04:33:28 +00:00
if (!folder) {
folder = getData(LS_KEYS.EXPORT)?.folder;
2021-07-14 04:33:28 +00:00
}
2021-07-18 15:01:52 +00:00
const recordFile = await this.ElectronAPIs.getExportRecord(`${folder}/${ExportRecordFileName}`);
2021-07-14 04:33:28 +00:00
if (recordFile) {
return JSON.parse(recordFile);
2021-07-14 13:14:38 +00:00
} else {
return {} as ExportRecord;
2021-07-14 04:33:28 +00:00
}
} catch (e) {
2021-07-14 13:14:38 +00:00
logError(e, 'export Record JSON parsing failed ');
2021-07-13 14:42:59 +00:00
}
2021-07-13 13:39:31 +00:00
}
2021-07-18 15:46:51 +00:00
async downloadAndSave(file: File, collectionPath:string) {
const uid = `${file.id}_${this.sanitizeName(
file.metadata.title,
)}`;
const fileStream = await retryPromise(downloadManager.downloadFile(file));
2021-07-18 15:46:51 +00:00
this.ElectronAPIs.saveStreamToDisk(`${collectionPath}/${uid}`, fileStream);
2021-03-31 06:45:41 +00:00
this.ElectronAPIs.saveFileToDisk(
2021-07-18 15:46:51 +00:00
`${collectionPath}/${MetadataFolderName}/${uid}.json`,
2021-07-24 15:59:02 +00:00
getGoogleLikeMetadataFile(uid, file.metadata),
2021-03-31 06:45:41 +00:00
);
2021-03-29 11:29:19 +00:00
}
2021-05-29 06:27:52 +00:00
2021-04-04 08:23:00 +00:00
private sanitizeName(name) {
return name.replaceAll('/', '_').replaceAll(' ', '_');
}
isExportInProgress = () => {
return this.exportInProgress !== null;
}
2021-03-29 05:15:08 +00:00
}
export default new ExportService();