forked from akai/readest
595608bd62
* feat(sync): implement KOReader progress synchronization This commit introduces a comprehensive feature to synchronize reading progress with a KOReader sync server. It includes a compatibility layer to handle discrepancies between Readest's CFI-based progress and KOReader's XPointer/page-based progress, primarily using the `percentage` field as a common ground. Key additions include: - A new settings panel under "KOReader Sync" for server configuration, authentication, and sync strategy management (e.g., prompt on conflict, always use latest). - A conflict resolution dialog that appears when remote progress differs significantly from local progress, allowing the user to choose which version to keep. - A client-side `useKOSync` hook to manage the entire synchronization lifecycle, including API calls, state management, and conflict resolution logic. - A new API endpoint `/api/kosync` that acts as a secure proxy to the user-configured KOReader sync server, handling authentication and forwarding requests. - Logic to differentiate between paginated (PDF/CBZ) and reflowable (EPUB) formats, using page numbers for paginated files where possible and falling back to percentage for reliability. - Spanish translations for all UI elements related to the KOReader sync feature. - Addition of `uuid` package to generate a unique `device_id` for sync purposes. Refactor: - The `debounce` utility has been improved to include `flush` and `cancel` methods, allowing for more precise control over debounced function execution, which is now used in the sync hook. * fix(kosync): add support for converting between XPointer and CFI in progress synchronization * fix(kosync): update navigation method to use select instead of goTo for paginated formats * fix(kosync): refactor synchronization settings and improve conflict resolution handling * fix(kosync): add event dispatcher for flushing KOReader synchronization * fix(sync): handle xpointer in a different section, fix styling * i18n: update translations --------- Co-authored-by: Huang Xin <chrox.huang@gmail.com>
651 lines
22 KiB
TypeScript
651 lines
22 KiB
TypeScript
import { v4 as uuidv4 } from 'uuid';
|
|
import { SystemSettings } from '@/types/settings';
|
|
import { AppPlatform, AppService, OsPlatform } from '@/types/system';
|
|
import { FileSystem, BaseDir, DeleteAction } from '@/types/system';
|
|
import { Book, BookConfig, BookContent, BookFormat, ViewSettings } from '@/types/book';
|
|
import {
|
|
getDir,
|
|
getLocalBookFilename,
|
|
getRemoteBookFilename,
|
|
getBaseFilename,
|
|
getCoverFilename,
|
|
getConfigFilename,
|
|
getLibraryFilename,
|
|
INIT_BOOK_CONFIG,
|
|
formatTitle,
|
|
formatAuthors,
|
|
getFilename,
|
|
getPrimaryLanguage,
|
|
getLibraryBackupFilename,
|
|
} from '@/utils/book';
|
|
import { partialMD5 } from '@/utils/md5';
|
|
import { BookDoc, DocumentLoader, EXTS } from '@/libs/document';
|
|
import {
|
|
DEFAULT_BOOK_LAYOUT,
|
|
DEFAULT_BOOK_STYLE,
|
|
DEFAULT_BOOK_FONT,
|
|
DEFAULT_VIEW_CONFIG,
|
|
DEFAULT_READSETTINGS,
|
|
SYSTEM_SETTINGS_VERSION,
|
|
DEFAULT_BOOK_SEARCH_CONFIG,
|
|
DEFAULT_TTS_CONFIG,
|
|
CLOUD_BOOKS_SUBDIR,
|
|
DEFAULT_MOBILE_VIEW_SETTINGS,
|
|
DEFAULT_SYSTEM_SETTINGS,
|
|
DEFAULT_CJK_VIEW_SETTINGS,
|
|
DEFAULT_MOBILE_READSETTINGS,
|
|
DEFAULT_SCREEN_CONFIG,
|
|
DEFAULT_TRANSLATOR_CONFIG,
|
|
} from './constants';
|
|
import { fetch as tauriFetch } from '@tauri-apps/plugin-http';
|
|
import { getOSPlatform, getTargetLang, isCJKEnv, isContentURI, isValidURL } from '@/utils/misc';
|
|
import { deserializeConfig, serializeConfig } from '@/utils/serializer';
|
|
import { downloadFile, uploadFile, deleteFile, createProgressHandler } from '@/libs/storage';
|
|
import { ClosableFile } from '@/utils/file';
|
|
import { ProgressHandler } from '@/utils/transfer';
|
|
import { TxtToEpubConverter } from '@/utils/txt';
|
|
import { BOOK_FILE_NOT_FOUND_ERROR } from './errors';
|
|
|
|
export type ResolvedPath = {
|
|
baseDir: number;
|
|
basePrefix: () => Promise<string>;
|
|
fp: string;
|
|
base: BaseDir;
|
|
};
|
|
|
|
export abstract class BaseAppService implements AppService {
|
|
osPlatform: OsPlatform = getOSPlatform();
|
|
appPlatform: AppPlatform = 'tauri';
|
|
localBooksDir = '';
|
|
isMobile = false;
|
|
isMacOSApp = false;
|
|
isLinuxApp = false;
|
|
isAppDataSandbox = false;
|
|
isAndroidApp = false;
|
|
isIOSApp = false;
|
|
isMobileApp = false;
|
|
hasTrafficLight = false;
|
|
hasWindow = false;
|
|
hasWindowBar = false;
|
|
hasContextMenu = false;
|
|
hasRoundedWindow = false;
|
|
hasSafeAreaInset = false;
|
|
hasHaptics = false;
|
|
hasUpdater = false;
|
|
hasOrientationLock = false;
|
|
distChannel = 'readest';
|
|
|
|
abstract fs: FileSystem;
|
|
|
|
abstract resolvePath(fp: string, base: BaseDir): ResolvedPath;
|
|
abstract getCoverImageUrl(book: Book): string;
|
|
abstract getCoverImageBlobUrl(book: Book): Promise<string>;
|
|
abstract selectDirectory(): Promise<string>;
|
|
abstract selectFiles(name: string, extensions: string[]): Promise<string[]>;
|
|
|
|
getDefaultViewSettings(): ViewSettings {
|
|
return {
|
|
...DEFAULT_BOOK_LAYOUT,
|
|
...DEFAULT_BOOK_STYLE,
|
|
...DEFAULT_BOOK_FONT,
|
|
...(this.isMobile ? DEFAULT_MOBILE_VIEW_SETTINGS : {}),
|
|
...(isCJKEnv() ? DEFAULT_CJK_VIEW_SETTINGS : {}),
|
|
...DEFAULT_VIEW_CONFIG,
|
|
...DEFAULT_TTS_CONFIG,
|
|
...DEFAULT_SCREEN_CONFIG,
|
|
...{ ...DEFAULT_TRANSLATOR_CONFIG, translateTargetLang: getTargetLang() },
|
|
};
|
|
}
|
|
|
|
async loadSettings(): Promise<SystemSettings> {
|
|
let settings: SystemSettings;
|
|
const { fp, base } = this.resolvePath('settings.json', 'Settings');
|
|
|
|
try {
|
|
await this.fs.exists(fp, base);
|
|
const txt = await this.fs.readFile(fp, base, 'text');
|
|
settings = JSON.parse(txt as string);
|
|
const version = settings.version ?? 0;
|
|
if (this.isAppDataSandbox || version < SYSTEM_SETTINGS_VERSION) {
|
|
settings.localBooksDir = await this.fs.getPrefix('Books');
|
|
settings.version = SYSTEM_SETTINGS_VERSION;
|
|
}
|
|
settings = { ...DEFAULT_SYSTEM_SETTINGS, ...settings };
|
|
settings.globalReadSettings = { ...DEFAULT_READSETTINGS, ...settings.globalReadSettings };
|
|
settings.globalViewSettings = {
|
|
...this.getDefaultViewSettings(),
|
|
...settings.globalViewSettings,
|
|
};
|
|
|
|
if (!settings.koreaderSyncDeviceId) {
|
|
settings.koreaderSyncDeviceId = uuidv4();
|
|
await this.fs.writeFile(fp, base, JSON.stringify(settings));
|
|
}
|
|
} catch {
|
|
settings = {
|
|
...DEFAULT_SYSTEM_SETTINGS,
|
|
version: SYSTEM_SETTINGS_VERSION,
|
|
localBooksDir: await this.fs.getPrefix('Books'),
|
|
koreaderSyncDeviceId: uuidv4(),
|
|
globalReadSettings: {
|
|
...DEFAULT_READSETTINGS,
|
|
...(this.isMobile ? DEFAULT_MOBILE_READSETTINGS : {}),
|
|
},
|
|
globalViewSettings: this.getDefaultViewSettings(),
|
|
} as SystemSettings;
|
|
|
|
await this.fs.createDir('', 'Books', true);
|
|
await this.fs.createDir('', base, true);
|
|
await this.fs.writeFile(fp, base, JSON.stringify(settings));
|
|
}
|
|
|
|
this.localBooksDir = settings.localBooksDir;
|
|
return settings;
|
|
}
|
|
|
|
async saveSettings(settings: SystemSettings): Promise<void> {
|
|
const { fp, base } = this.resolvePath('settings.json', 'Settings');
|
|
await this.fs.createDir('', base, true);
|
|
await this.fs.writeFile(fp, base, JSON.stringify(settings));
|
|
}
|
|
|
|
async importBook(
|
|
// file might be:
|
|
// 1.1 absolute path for local file on Desktop
|
|
// 1.2 /private/var inbox file path on iOS
|
|
// 2. remote url
|
|
// 3. content provider uri
|
|
// 4. File object from browsers
|
|
file: string | File,
|
|
books: Book[],
|
|
saveBook: boolean = true,
|
|
saveCover: boolean = true,
|
|
overwrite: boolean = false,
|
|
transient: boolean = false,
|
|
): Promise<Book | null> {
|
|
try {
|
|
let loadedBook: BookDoc;
|
|
let format: BookFormat;
|
|
let filename: string;
|
|
let fileobj: File;
|
|
|
|
if (transient && typeof file !== 'string') {
|
|
throw new Error('Transient import is only supported for file paths');
|
|
}
|
|
|
|
try {
|
|
if (typeof file === 'string') {
|
|
fileobj = await this.fs.openFile(file, 'None');
|
|
filename = fileobj.name || getFilename(file);
|
|
} else {
|
|
fileobj = file;
|
|
filename = file.name;
|
|
}
|
|
if (filename.endsWith('.txt')) {
|
|
const txt2epub = new TxtToEpubConverter();
|
|
({ file: fileobj } = await txt2epub.convert({ file: fileobj }));
|
|
}
|
|
({ book: loadedBook, format } = await new DocumentLoader(fileobj).open());
|
|
if (!loadedBook.metadata.title) {
|
|
loadedBook.metadata.title = getBaseFilename(filename);
|
|
}
|
|
} catch (error) {
|
|
console.error(error);
|
|
throw new Error(`Failed to open the book: ${(error as Error).message || error}`);
|
|
}
|
|
|
|
const hash = await partialMD5(fileobj);
|
|
const existingBook = books.filter((b) => b.hash === hash)[0];
|
|
if (existingBook) {
|
|
if (!transient) {
|
|
existingBook.deletedAt = null;
|
|
}
|
|
existingBook.createdAt = Date.now();
|
|
existingBook.updatedAt = Date.now();
|
|
}
|
|
|
|
const book: Book = {
|
|
hash,
|
|
format,
|
|
title: formatTitle(loadedBook.metadata.title),
|
|
sourceTitle: formatTitle(loadedBook.metadata.title),
|
|
author: formatAuthors(loadedBook.metadata.author, loadedBook.metadata.language),
|
|
primaryLanguage: getPrimaryLanguage(loadedBook.metadata.language),
|
|
createdAt: existingBook ? existingBook.createdAt : Date.now(),
|
|
uploadedAt: existingBook ? existingBook.uploadedAt : null,
|
|
deletedAt: transient ? Date.now() : null,
|
|
downloadedAt: Date.now(),
|
|
updatedAt: Date.now(),
|
|
};
|
|
// update book metadata when reimporting the same book
|
|
if (existingBook) {
|
|
existingBook.title = existingBook.title ?? book.title;
|
|
existingBook.sourceTitle = existingBook.sourceTitle ?? book.sourceTitle;
|
|
existingBook.author = existingBook.author ?? book.author;
|
|
existingBook.primaryLanguage = existingBook.primaryLanguage ?? book.primaryLanguage;
|
|
existingBook.downloadedAt = Date.now();
|
|
}
|
|
|
|
if (!(await this.fs.exists(getDir(book), 'Books'))) {
|
|
await this.fs.createDir(getDir(book), 'Books');
|
|
}
|
|
if (
|
|
saveBook &&
|
|
!transient &&
|
|
(!(await this.fs.exists(getLocalBookFilename(book), 'Books')) || overwrite)
|
|
) {
|
|
if (filename.endsWith('.txt')) {
|
|
await this.fs.writeFile(getLocalBookFilename(book), 'Books', fileobj);
|
|
} else if (typeof file === 'string' && isContentURI(file)) {
|
|
await this.fs.copyFile(file, getLocalBookFilename(book), 'Books');
|
|
} else if (typeof file === 'string' && !isValidURL(file)) {
|
|
await this.fs.copyFile(file, getLocalBookFilename(book), 'Books');
|
|
} else {
|
|
await this.fs.writeFile(getLocalBookFilename(book), 'Books', fileobj);
|
|
}
|
|
}
|
|
if (saveCover && (!(await this.fs.exists(getCoverFilename(book), 'Books')) || overwrite)) {
|
|
const cover = await loadedBook.getCover();
|
|
if (cover) {
|
|
await this.fs.writeFile(getCoverFilename(book), 'Books', await cover.arrayBuffer());
|
|
}
|
|
}
|
|
// Never overwrite the config file only when it's not existed
|
|
if (!existingBook) {
|
|
await this.saveBookConfig(book, INIT_BOOK_CONFIG);
|
|
books.splice(0, 0, book);
|
|
}
|
|
|
|
// update file links with url or path or content uri
|
|
if (typeof file === 'string') {
|
|
if (isValidURL(file)) {
|
|
book.url = file;
|
|
if (existingBook) existingBook.url = file;
|
|
}
|
|
if (transient) {
|
|
book.filePath = file;
|
|
if (existingBook) existingBook.filePath = file;
|
|
}
|
|
}
|
|
book.coverImageUrl = await this.generateCoverImageUrl(book);
|
|
const f = file as ClosableFile;
|
|
if (f && f.close) {
|
|
await f.close();
|
|
}
|
|
|
|
return book;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
async deleteBook(book: Book, deleteAction: DeleteAction): Promise<void> {
|
|
console.log('Deleting book with action:', deleteAction, book.title);
|
|
if (deleteAction === 'local' || deleteAction === 'both') {
|
|
const localDeleteFps =
|
|
deleteAction === 'local'
|
|
? [getLocalBookFilename(book)]
|
|
: [getLocalBookFilename(book), getCoverFilename(book)];
|
|
for (const fp of localDeleteFps) {
|
|
if (await this.fs.exists(fp, 'Books')) {
|
|
await this.fs.removeFile(fp, 'Books');
|
|
}
|
|
}
|
|
if (deleteAction === 'local') {
|
|
book.downloadedAt = null;
|
|
} else {
|
|
book.deletedAt = Date.now();
|
|
book.downloadedAt = null;
|
|
book.coverDownloadedAt = null;
|
|
}
|
|
}
|
|
if (deleteAction === 'cloud' || deleteAction === 'both') {
|
|
const fps = [getRemoteBookFilename(book), getCoverFilename(book)];
|
|
for (const fp of fps) {
|
|
console.log('Deleting uploaded file:', fp);
|
|
const cfp = `${CLOUD_BOOKS_SUBDIR}/${fp}`;
|
|
try {
|
|
deleteFile(cfp);
|
|
} catch (error) {
|
|
console.log('Failed to delete uploaded file:', error);
|
|
}
|
|
}
|
|
book.uploadedAt = null;
|
|
}
|
|
}
|
|
|
|
async uploadFileToCloud(lfp: string, cfp: string, handleProgress: ProgressHandler, hash: string) {
|
|
console.log('Uploading file:', lfp, 'to', cfp);
|
|
const file = await this.fs.openFile(lfp, 'Books', cfp);
|
|
const localFullpath = `${this.localBooksDir}/${lfp}`;
|
|
await uploadFile(file, localFullpath, handleProgress, hash);
|
|
const f = file as ClosableFile;
|
|
if (f && f.close) {
|
|
await f.close();
|
|
}
|
|
}
|
|
|
|
async uploadBook(book: Book, onProgress?: ProgressHandler): Promise<void> {
|
|
let uploaded = false;
|
|
const completedFiles = { count: 0 };
|
|
let toUploadFpCount = 0;
|
|
const coverExist = await this.fs.exists(getCoverFilename(book), 'Books');
|
|
let bookFileExist = await this.fs.exists(getLocalBookFilename(book), 'Books');
|
|
if (coverExist) {
|
|
toUploadFpCount++;
|
|
}
|
|
if (bookFileExist) {
|
|
toUploadFpCount++;
|
|
}
|
|
if (!bookFileExist && book.url) {
|
|
// download the book from the URL
|
|
const fileobj = await this.fs.openFile(book.url, 'None');
|
|
await this.fs.writeFile(getLocalBookFilename(book), 'Books', await fileobj.arrayBuffer());
|
|
bookFileExist = true;
|
|
}
|
|
|
|
const handleProgress = createProgressHandler(toUploadFpCount, completedFiles, onProgress);
|
|
|
|
if (coverExist) {
|
|
const lfp = getCoverFilename(book);
|
|
const cfp = `${CLOUD_BOOKS_SUBDIR}/${getCoverFilename(book)}`;
|
|
await this.uploadFileToCloud(lfp, cfp, handleProgress, book.hash);
|
|
uploaded = true;
|
|
completedFiles.count++;
|
|
}
|
|
|
|
if (bookFileExist) {
|
|
const lfp = getLocalBookFilename(book);
|
|
const cfp = `${CLOUD_BOOKS_SUBDIR}/${getRemoteBookFilename(book)}`;
|
|
await this.uploadFileToCloud(lfp, cfp, handleProgress, book.hash);
|
|
uploaded = true;
|
|
completedFiles.count++;
|
|
}
|
|
|
|
if (uploaded) {
|
|
book.deletedAt = null;
|
|
book.updatedAt = Date.now();
|
|
book.uploadedAt = Date.now();
|
|
book.downloadedAt = Date.now();
|
|
book.coverDownloadedAt = Date.now();
|
|
} else {
|
|
throw new Error('Book file not uploaded');
|
|
}
|
|
}
|
|
|
|
async downloadCloudFile(lfp: string, cfp: string, handleProgress: ProgressHandler) {
|
|
console.log('Downloading file:', cfp, 'to', lfp);
|
|
const localFullpath = `${this.localBooksDir}/${lfp}`;
|
|
const result = await downloadFile(cfp, localFullpath, handleProgress);
|
|
try {
|
|
if (this.appPlatform === 'web') {
|
|
const fileobj = result as Blob;
|
|
await this.fs.writeFile(lfp, 'Books', await fileobj.arrayBuffer());
|
|
}
|
|
} catch {
|
|
console.log('Failed to download file:', cfp);
|
|
throw new Error('Failed to download file');
|
|
}
|
|
}
|
|
|
|
async downloadBook(
|
|
book: Book,
|
|
onlyCover = false,
|
|
redownload = false,
|
|
onProgress?: ProgressHandler,
|
|
): Promise<void> {
|
|
let bookDownloaded = false;
|
|
let bookCoverDownloaded = false;
|
|
const completedFiles = { count: 0 };
|
|
let toDownloadFpCount = 0;
|
|
const needDownCover = !(await this.fs.exists(getCoverFilename(book), 'Books')) || redownload;
|
|
const needDownBook =
|
|
(!onlyCover && !(await this.fs.exists(getLocalBookFilename(book), 'Books'))) || redownload;
|
|
if (needDownCover) {
|
|
toDownloadFpCount++;
|
|
}
|
|
if (needDownBook) {
|
|
toDownloadFpCount++;
|
|
}
|
|
|
|
const handleProgress = createProgressHandler(toDownloadFpCount, completedFiles, onProgress);
|
|
|
|
if (!(await this.fs.exists(getDir(book), 'Books'))) {
|
|
await this.fs.createDir(getDir(book), 'Books');
|
|
}
|
|
|
|
try {
|
|
if (needDownCover) {
|
|
const lfp = getCoverFilename(book);
|
|
const cfp = `${CLOUD_BOOKS_SUBDIR}/${lfp}`;
|
|
await this.downloadCloudFile(lfp, cfp, handleProgress);
|
|
bookCoverDownloaded = true;
|
|
}
|
|
} catch (error) {
|
|
// don't throw error here since some books may not have cover images at all
|
|
console.log(`Failed to download cover file for book: '${book.title}'`, error);
|
|
} finally {
|
|
if (needDownCover) {
|
|
completedFiles.count++;
|
|
}
|
|
}
|
|
|
|
if (needDownBook) {
|
|
const lfp = getLocalBookFilename(book);
|
|
const cfp = `${CLOUD_BOOKS_SUBDIR}/${getRemoteBookFilename(book)}`;
|
|
await this.downloadCloudFile(lfp, cfp, handleProgress);
|
|
const localFullpath = `${this.localBooksDir}/${lfp}`;
|
|
bookDownloaded = await this.fs.exists(localFullpath, 'Books');
|
|
completedFiles.count++;
|
|
}
|
|
// some books may not have cover image, so we need to check if the book is downloaded
|
|
if (bookDownloaded || (!onlyCover && !needDownBook)) {
|
|
book.downloadedAt = Date.now();
|
|
}
|
|
if ((bookCoverDownloaded || !needDownCover) && !book.coverDownloadedAt) {
|
|
book.coverDownloadedAt = Date.now();
|
|
}
|
|
}
|
|
|
|
async isBookAvailable(book: Book): Promise<boolean> {
|
|
const fp = getLocalBookFilename(book);
|
|
if (await this.fs.exists(fp, 'Books')) {
|
|
return true;
|
|
}
|
|
if (book.filePath) {
|
|
return await this.fs.exists(book.filePath, 'None');
|
|
}
|
|
if (book.url) {
|
|
return isValidURL(book.url);
|
|
}
|
|
return false;
|
|
}
|
|
|
|
async getBookFileSize(book: Book): Promise<number | null> {
|
|
const fp = getLocalBookFilename(book);
|
|
if (await this.fs.exists(fp, 'Books')) {
|
|
const file = await this.fs.openFile(fp, 'Books');
|
|
const size = file.size;
|
|
const f = file as ClosableFile;
|
|
if (f && f.close) {
|
|
await f.close();
|
|
}
|
|
return size;
|
|
}
|
|
return null;
|
|
}
|
|
|
|
async loadBookContent(book: Book, settings: SystemSettings): Promise<BookContent> {
|
|
let file: File;
|
|
const fp = getLocalBookFilename(book);
|
|
if (await this.fs.exists(fp, 'Books')) {
|
|
file = await this.fs.openFile(fp, 'Books');
|
|
} else if (book.filePath) {
|
|
file = await this.fs.openFile(book.filePath, 'None');
|
|
} else if (book.url) {
|
|
file = await this.fs.openFile(book.url, 'None');
|
|
} else {
|
|
// 0.9.64 has a bug that book.title might be modified but the filename is not updated
|
|
const bookDir = getDir(book);
|
|
const files = await this.fs.readDir(getDir(book), 'Books');
|
|
if (files.length > 0) {
|
|
const bookFile = files.find((f) => f.path.endsWith(`.${EXTS[book.format]}`));
|
|
if (bookFile) {
|
|
file = await this.fs.openFile(`${bookDir}/${bookFile.path}`, 'Books');
|
|
} else {
|
|
throw new Error(BOOK_FILE_NOT_FOUND_ERROR);
|
|
}
|
|
} else {
|
|
throw new Error(BOOK_FILE_NOT_FOUND_ERROR);
|
|
}
|
|
}
|
|
return { book, file, config: await this.loadBookConfig(book, settings) };
|
|
}
|
|
|
|
async loadBookConfig(book: Book, settings: SystemSettings): Promise<BookConfig> {
|
|
const { globalViewSettings } = settings;
|
|
try {
|
|
let str = '{}';
|
|
if (await this.fs.exists(getConfigFilename(book), 'Books')) {
|
|
str = (await this.fs.readFile(getConfigFilename(book), 'Books', 'text')) as string;
|
|
}
|
|
return deserializeConfig(str, globalViewSettings, DEFAULT_BOOK_SEARCH_CONFIG);
|
|
} catch {
|
|
return deserializeConfig('{}', globalViewSettings, DEFAULT_BOOK_SEARCH_CONFIG);
|
|
}
|
|
}
|
|
|
|
async fetchBookDetails(book: Book, settings: SystemSettings) {
|
|
const fp = getLocalBookFilename(book);
|
|
if (!(await this.fs.exists(fp, 'Books')) && book.uploadedAt) {
|
|
await this.downloadBook(book);
|
|
}
|
|
const { file } = (await this.loadBookContent(book, settings)) as BookContent;
|
|
const bookDoc = (await new DocumentLoader(file).open()).book as BookDoc;
|
|
const f = file as ClosableFile;
|
|
if (f && f.close) {
|
|
await f.close();
|
|
}
|
|
return bookDoc.metadata;
|
|
}
|
|
|
|
async saveBookConfig(book: Book, config: BookConfig, settings?: SystemSettings) {
|
|
let serializedConfig: string;
|
|
if (settings) {
|
|
const { globalViewSettings } = settings;
|
|
serializedConfig = serializeConfig(config, globalViewSettings, DEFAULT_BOOK_SEARCH_CONFIG);
|
|
} else {
|
|
serializedConfig = JSON.stringify(config);
|
|
}
|
|
await this.fs.writeFile(getConfigFilename(book), 'Books', serializedConfig);
|
|
}
|
|
|
|
async generateCoverImageUrl(book: Book): Promise<string> {
|
|
return this.appPlatform === 'web'
|
|
? await this.getCoverImageBlobUrl(book)
|
|
: this.getCoverImageUrl(book);
|
|
}
|
|
|
|
private async loadJSONFile(
|
|
filename: string,
|
|
): Promise<{ success: boolean; data?: unknown; error?: unknown }> {
|
|
try {
|
|
const txt = await this.fs.readFile(filename, 'Books', 'text');
|
|
if (!txt || typeof txt !== 'string' || txt.trim().length === 0) {
|
|
return { success: false, error: 'File is empty or invalid' };
|
|
}
|
|
try {
|
|
const data = JSON.parse(txt as string);
|
|
return { success: true, data };
|
|
} catch (parseError) {
|
|
return { success: false, error: `JSON parse error: ${parseError}` };
|
|
}
|
|
} catch (error) {
|
|
return { success: false, error };
|
|
}
|
|
}
|
|
|
|
async loadLibraryBooks(): Promise<Book[]> {
|
|
console.log('Loading library books...');
|
|
let books: Book[] = [];
|
|
const libraryFilename = getLibraryFilename();
|
|
const backupFilename = getLibraryBackupFilename();
|
|
|
|
const mainResult = await this.loadJSONFile(libraryFilename);
|
|
if (mainResult.success) {
|
|
books = mainResult.data as Book[];
|
|
} else {
|
|
const backupResult = await this.loadJSONFile(backupFilename);
|
|
if (backupResult.success) {
|
|
books = backupResult.data as Book[];
|
|
console.warn('Loaded library from backup file:', backupFilename);
|
|
} else {
|
|
await this.fs.createDir('', 'Books', true);
|
|
await this.fs.writeFile(libraryFilename, 'Books', '[]');
|
|
await this.fs.writeFile(backupFilename, 'Books', '[]');
|
|
}
|
|
}
|
|
|
|
await Promise.all(
|
|
books.map(async (book) => {
|
|
book.coverImageUrl = await this.generateCoverImageUrl(book);
|
|
book.updatedAt ??= book.lastUpdated || Date.now();
|
|
return book;
|
|
}),
|
|
);
|
|
|
|
return books;
|
|
}
|
|
|
|
async saveLibraryBooks(books: Book[]): Promise<void> {
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const libraryBooks = books.map(({ coverImageUrl, ...rest }) => rest);
|
|
const jsonData = JSON.stringify(libraryBooks, null, 2);
|
|
const libraryFilename = getLibraryFilename();
|
|
const backupFilename = getLibraryBackupFilename();
|
|
|
|
const saveResults = await Promise.allSettled([
|
|
this.fs.writeFile(backupFilename, 'Books', jsonData),
|
|
this.fs.writeFile(libraryFilename, 'Books', jsonData),
|
|
]);
|
|
const backupSuccess = saveResults[0].status === 'fulfilled';
|
|
const mainSuccess = saveResults[1].status === 'fulfilled';
|
|
if (!backupSuccess || !mainSuccess) {
|
|
throw new Error('Failed to save library books');
|
|
}
|
|
}
|
|
|
|
private imageToArrayBuffer(imageUrl?: string, imageFile?: string): Promise<ArrayBuffer> {
|
|
return new Promise((resolve, reject) => {
|
|
if (!imageUrl && !imageFile) {
|
|
reject(new Error('No image URL or file provided'));
|
|
return;
|
|
}
|
|
if (this.appPlatform === 'web' && imageUrl && imageUrl.startsWith('blob:')) {
|
|
fetch(imageUrl)
|
|
.then((response) => response.arrayBuffer())
|
|
.then((buffer) => resolve(buffer))
|
|
.catch((error) => reject(error));
|
|
} else if (this.appPlatform === 'tauri' && imageFile) {
|
|
this.fs
|
|
.openFile(imageFile, 'None')
|
|
.then((file) => file.arrayBuffer())
|
|
.then((buffer) => resolve(buffer))
|
|
.catch((error) => reject(error));
|
|
} else if (this.appPlatform === 'tauri' && imageUrl) {
|
|
tauriFetch(imageUrl, { method: 'GET' })
|
|
.then((response) => response.arrayBuffer())
|
|
.then((buffer) => resolve(buffer))
|
|
.catch((error) => reject(error));
|
|
} else {
|
|
reject(new Error('Unsupported platform or missing image data'));
|
|
}
|
|
});
|
|
}
|
|
|
|
async updateCoverImage(book: Book, imageUrl?: string, imageFile?: string): Promise<void> {
|
|
const arrayBuffer = await this.imageToArrayBuffer(imageUrl, imageFile);
|
|
await this.fs.writeFile(getCoverFilename(book), 'Books', arrayBuffer);
|
|
}
|
|
}
|