- Migrate to `electron-log` v5.X.X, centralizing log files to adhere to best-practices. - Add critical event logging in the log file. - Replace `ElectronLog` type with `LogFunctions` for better abstraction. - Unify log handling in `desktop-runtime-error` by removing `renderer.log` due to `electron-log` v5 changes. - Update and extend logger interfaces, removing 'I' prefix and adding common log levels to abstract `electron-log` completely. - Move logger interfaces to the application layer as it's cross-cutting concern, meanwhile keeping the implementations in the infrastructure layer. - Introduce `useLogger` hook for easier logging in Vue components. - Simplify `WindowVariables` by removing nullable properties. - Improve documentation to clearly differentiate between desktop and web versions, outlining specific features of each.
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { autoUpdater, UpdateInfo } from 'electron-updater';
|
|
import { ElectronLogger } from '@/infrastructure/Log/ElectronLogger';
|
|
import { handleManualUpdate, requiresManualUpdate } from './ManualUpdater';
|
|
import { handleAutoUpdate } from './AutoUpdater';
|
|
|
|
interface IUpdater {
|
|
checkForUpdates(): Promise<void>;
|
|
}
|
|
|
|
export function setupAutoUpdater(): IUpdater {
|
|
autoUpdater.logger = ElectronLogger;
|
|
|
|
// Disable autodownloads because "checking" and "downloading" are handled separately based on the
|
|
// current platform and user's choice.
|
|
autoUpdater.autoDownload = false;
|
|
|
|
autoUpdater.on('error', (error: Error) => {
|
|
ElectronLogger.error('@error@\n', error);
|
|
});
|
|
|
|
let isAlreadyHandled = false;
|
|
autoUpdater.on('update-available', async (info: UpdateInfo) => {
|
|
ElectronLogger.info('@update-available@\n', info);
|
|
if (isAlreadyHandled) {
|
|
ElectronLogger.info('Available updates is already handled');
|
|
return;
|
|
}
|
|
isAlreadyHandled = true;
|
|
await handleAvailableUpdate(info);
|
|
});
|
|
|
|
return {
|
|
checkForUpdates: async () => {
|
|
// autoUpdater.emit('update-available'); // For testing
|
|
await autoUpdater.checkForUpdates();
|
|
},
|
|
};
|
|
}
|
|
|
|
async function handleAvailableUpdate(info: UpdateInfo) {
|
|
if (requiresManualUpdate()) {
|
|
await handleManualUpdate(info);
|
|
return;
|
|
}
|
|
await handleAutoUpdate();
|
|
}
|