mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +02:00
34 lines
1.4 KiB
TypeScript
34 lines
1.4 KiB
TypeScript
import Setting from '@joplin/lib/models/Setting';
|
|
import bridge from '../bridge';
|
|
import processStartFlags from '@joplin/lib/utils/processStartFlags';
|
|
import BaseApplication, { safeModeFlagFilename } from '@joplin/lib/BaseApplication';
|
|
import initProfile from '@joplin/lib/services/profileConfig/initProfile';
|
|
import { writeFile } from 'fs-extra';
|
|
import { join } from 'path';
|
|
|
|
|
|
const restartInSafeModeFromMain = async () => {
|
|
// Only set constants here -- the main process doesn't have easy access (without loading
|
|
// a large amount of other code) to the database.
|
|
const appName = `joplin${bridge().env() === 'dev' ? 'dev' : ''}-desktop`;
|
|
Setting.setConstant('appId', `net.cozic.${appName}`);
|
|
Setting.setConstant('appType', 'desktop');
|
|
Setting.setConstant('appName', appName);
|
|
|
|
// Load just enough for us to write a file in the profile directory
|
|
const { shimInit } = require('@joplin/lib/shim-init-node.js');
|
|
shimInit({});
|
|
|
|
const startFlags = await processStartFlags(bridge().processArgv());
|
|
const rootProfileDir = BaseApplication.determineProfileDir(startFlags.matched);
|
|
const { profileDir } = await initProfile(rootProfileDir);
|
|
|
|
// We can't access the database, so write to a file instead.
|
|
const safeModeFlagFile = join(profileDir, safeModeFlagFilename);
|
|
await writeFile(safeModeFlagFile, 'true', 'utf8');
|
|
|
|
bridge().restart();
|
|
};
|
|
|
|
export default restartInSafeModeFromMain;
|