mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-24 08:12:24 +02:00
58 lines
2.0 KiB
JavaScript
58 lines
2.0 KiB
JavaScript
const { BaseCommand } = require('./base-command.js');
|
|
const { _ } = require('lib/locale.js');
|
|
const Setting = require('lib/models/Setting.js');
|
|
const { Logger } = require('lib/logger.js');
|
|
const { shim } = require('lib/shim');
|
|
|
|
class Command extends BaseCommand {
|
|
|
|
usage() {
|
|
return 'server <command>';
|
|
}
|
|
|
|
description() {
|
|
return `${_('Start, stop or check the API server. To specify on which port it should run, set the api.port config variable. Commands are (%s).', ['start', 'stop', 'status'].join('|'))} This is an experimental feature - use at your own risks! It is recommended that the server runs off its own separate profile so that no two CLI instances access that profile at the same time. Use --profile to specify the profile path.`;
|
|
}
|
|
|
|
async action(args) {
|
|
const command = args.command;
|
|
|
|
const ClipperServer = require('lib/ClipperServer');
|
|
const stdoutFn = (s) => this.stdout(s);
|
|
const clipperLogger = new Logger();
|
|
clipperLogger.addTarget('file', { path: `${Setting.value('profileDir')}/log-clipper.txt` });
|
|
clipperLogger.addTarget('console', { console: {
|
|
info: stdoutFn,
|
|
warn: stdoutFn,
|
|
error: stdoutFn,
|
|
}});
|
|
ClipperServer.instance().setDispatch(() => {});
|
|
ClipperServer.instance().setLogger(clipperLogger);
|
|
|
|
const pidPath = `${Setting.value('profileDir')}/clipper-pid.txt`;
|
|
const runningOnPort = await ClipperServer.instance().isRunning();
|
|
|
|
if (command === 'start') {
|
|
if (runningOnPort) {
|
|
this.stdout(_('Server is already running on port %d', runningOnPort));
|
|
} else {
|
|
await shim.fsDriver().writeFile(pidPath, process.pid.toString(), 'utf-8');
|
|
await ClipperServer.instance().start(); // Never exit
|
|
}
|
|
} else if (command === 'status') {
|
|
this.stdout(runningOnPort ? _('Server is running on port %d', runningOnPort) : _('Server is not running.'));
|
|
} else if (command === 'stop') {
|
|
if (!runningOnPort) {
|
|
this.stdout(_('Server is not running.'));
|
|
return;
|
|
}
|
|
const pid = await shim.fsDriver().readFile(pidPath);
|
|
if (!pid) return;
|
|
process.kill(pid, 'SIGTERM');
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Command;
|