forked from distok/asarfuckery
67 lines
No EOL
2 KiB
JavaScript
67 lines
No EOL
2 KiB
JavaScript
'use strict';
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.install = install;
|
|
exports.update = update;
|
|
exports.isInstalled = isInstalled;
|
|
exports.uninstall = uninstall;
|
|
|
|
var _path = require('path');
|
|
|
|
var _path2 = _interopRequireDefault(_path);
|
|
|
|
var _windowsUtils = require('../windowsUtils');
|
|
|
|
var windowsUtils = _interopRequireWildcard(_windowsUtils);
|
|
|
|
var _appSettings = require('../appSettings');
|
|
|
|
function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) newObj[key] = obj[key]; } } newObj.default = obj; return newObj; } }
|
|
|
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
|
|
const settings = (0, _appSettings.getSettings)();
|
|
|
|
// TODO: We should use Constant's APP_NAME, but only once
|
|
// we set up backwards compat with this.
|
|
const appName = _path2.default.basename(process.execPath, '.exe');
|
|
|
|
function install(callback) {
|
|
const startMinimized = settings.get('START_MINIMIZED', false);
|
|
let { execPath } = process;
|
|
if (startMinimized) {
|
|
execPath = `${execPath} --start-minimized`;
|
|
}
|
|
const queue = [['HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run', '/v', appName, '/d', execPath]];
|
|
|
|
windowsUtils.addToRegistry(queue, callback);
|
|
}
|
|
|
|
function update(callback) {
|
|
isInstalled(installed => {
|
|
if (installed) {
|
|
install(callback);
|
|
} else {
|
|
callback();
|
|
}
|
|
});
|
|
}
|
|
|
|
function isInstalled(callback) {
|
|
const queryValue = ['HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run', '/v', appName];
|
|
queryValue.unshift('query');
|
|
windowsUtils.spawnReg(queryValue, (error, stdout) => {
|
|
const doesOldKeyExist = stdout.indexOf(appName) >= 0;
|
|
callback(doesOldKeyExist);
|
|
});
|
|
}
|
|
|
|
function uninstall(callback) {
|
|
const queryValue = ['HKCU\\Software\\Microsoft\\Windows\\CurrentVersion\\Run', '/v', appName, '/f'];
|
|
queryValue.unshift('delete');
|
|
windowsUtils.spawnReg(queryValue, (error, stdout) => {
|
|
callback();
|
|
});
|
|
} |