123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568 |
- var shellwords = require('shellwords');
- var cp = require('child_process');
- var semver = require('semver');
- var isWSL = require('is-wsl');
- var path = require('path');
- var url = require('url');
- var os = require('os');
- var fs = require('fs');
- var net = require('net');
- const BUFFER_SIZE = 1024;
- function clone(obj) {
- return JSON.parse(JSON.stringify(obj));
- }
- module.exports.clone = clone;
- var escapeQuotes = function (str) {
- if (typeof str === 'string') {
- return str.replace(/(["$`\\])/g, '\\$1');
- } else {
- return str;
- }
- };
- var inArray = function (arr, val) {
- return arr.indexOf(val) !== -1;
- };
- var notifySendFlags = {
- u: 'urgency',
- urgency: 'urgency',
- t: 'expire-time',
- time: 'expire-time',
- timeout: 'expire-time',
- e: 'expire-time',
- expire: 'expire-time',
- 'expire-time': 'expire-time',
- i: 'icon',
- icon: 'icon',
- c: 'category',
- category: 'category',
- subtitle: 'category',
- h: 'hint',
- hint: 'hint',
- a: 'app-name',
- 'app-name': 'app-name'
- };
- module.exports.command = function (notifier, options, cb) {
- notifier = shellwords.escape(notifier);
- if (process.env.DEBUG && process.env.DEBUG.indexOf('notifier') !== -1) {
- console.info('node-notifier debug info (command):');
- console.info('[notifier path]', notifier);
- console.info('[notifier options]', options.join(' '));
- }
- return cp.exec(notifier + ' ' + options.join(' '), function (
- error,
- stdout,
- stderr
- ) {
- if (error) return cb(error);
- cb(stderr, stdout);
- });
- };
- module.exports.fileCommand = function (notifier, options, cb) {
- if (process.env.DEBUG && process.env.DEBUG.indexOf('notifier') !== -1) {
- console.info('node-notifier debug info (fileCommand):');
- console.info('[notifier path]', notifier);
- console.info('[notifier options]', options.join(' '));
- }
- return cp.execFile(notifier, options, function (error, stdout, stderr) {
- if (error) return cb(error, stdout);
- cb(stderr, stdout);
- });
- };
- module.exports.fileCommandJson = function (notifier, options, cb) {
- if (process.env.DEBUG && process.env.DEBUG.indexOf('notifier') !== -1) {
- console.info('node-notifier debug info (fileCommandJson):');
- console.info('[notifier path]', notifier);
- console.info('[notifier options]', options.join(' '));
- }
- return cp.execFile(notifier, options, function (error, stdout, stderr) {
- if (error) return cb(error, stdout);
- if (!stdout) return cb(error, {});
- try {
- var data = JSON.parse(stdout);
- cb(!stderr ? null : stderr, data);
- } catch (e) {
- cb(e, stdout);
- }
- });
- };
- module.exports.immediateFileCommand = function (notifier, options, cb) {
- if (process.env.DEBUG && process.env.DEBUG.indexOf('notifier') !== -1) {
- console.info('node-notifier debug info (notifier):');
- console.info('[notifier path]', notifier);
- }
- notifierExists(notifier, function (_, exists) {
- if (!exists) {
- return cb(new Error('Notifier (' + notifier + ') not found on system.'));
- }
- cp.execFile(notifier, options);
- cb();
- });
- };
- function notifierExists(notifier, cb) {
- return fs.stat(notifier, function (err, stat) {
- if (!err) return cb(err, stat.isFile());
- // Check if Windows alias
- if (path.extname(notifier)) {
- // Has extentioon, no need to check more
- return cb(err, false);
- }
- // Check if there is an exe file in the directory
- return fs.stat(notifier + '.exe', function (err, stat) {
- if (err) return cb(err, false);
- cb(err, stat.isFile());
- });
- });
- }
- var mapAppIcon = function (options) {
- if (options.appIcon) {
- options.icon = options.appIcon;
- delete options.appIcon;
- }
- return options;
- };
- var mapText = function (options) {
- if (options.text) {
- options.message = options.text;
- delete options.text;
- }
- return options;
- };
- var mapIconShorthand = function (options) {
- if (options.i) {
- options.icon = options.i;
- delete options.i;
- }
- return options;
- };
- module.exports.mapToNotifySend = function (options) {
- options = mapAppIcon(options);
- options = mapText(options);
- if (options.timeout === false) {
- delete options.timeout;
- }
- if (options.wait === true) {
- options['expire-time'] = 5; // 5 seconds default time (multipled below)
- }
- for (var key in options) {
- if (key === 'message' || key === 'title') continue;
- if (options.hasOwnProperty(key) && notifySendFlags[key] !== key) {
- options[notifySendFlags[key]] = options[key];
- delete options[key];
- }
- }
- if (typeof options['expire-time'] === 'undefined') {
- options['expire-time'] = 10 * 1000; // 10 sec timeout by default
- } else if (typeof options['expire-time'] === 'number') {
- options['expire-time'] = options['expire-time'] * 1000; // notify send uses milliseconds
- }
- return options;
- };
- module.exports.mapToGrowl = function (options) {
- options = mapAppIcon(options);
- options = mapIconShorthand(options);
- options = mapText(options);
- if (options.icon && !Buffer.isBuffer(options.icon)) {
- try {
- options.icon = fs.readFileSync(options.icon);
- } catch (ex) {}
- }
- return options;
- };
- module.exports.mapToMac = function (options) {
- options = mapIconShorthand(options);
- options = mapText(options);
- if (options.icon) {
- options.appIcon = options.icon;
- delete options.icon;
- }
- if (options.sound === true) {
- options.sound = 'Bottle';
- }
- if (options.sound === false) {
- delete options.sound;
- }
- if (options.sound && options.sound.indexOf('Notification.') === 0) {
- options.sound = 'Bottle';
- }
- if (options.wait === true) {
- if (!options.timeout) {
- options.timeout = 5;
- }
- delete options.wait;
- }
- if (!options.wait && !options.timeout) {
- if (options.timeout === false) {
- delete options.timeout;
- } else {
- options.timeout = 10;
- }
- }
- options.json = true;
- return options;
- };
- function isArray(arr) {
- return Object.prototype.toString.call(arr) === '[object Array]';
- }
- module.exports.isArray = isArray;
- function noop() {}
- module.exports.actionJackerDecorator = function (emitter, options, fn, mapper) {
- options = clone(options);
- fn = fn || noop;
- if (typeof fn !== 'function') {
- throw new TypeError(
- 'The second argument must be a function callback. You have passed ' +
- typeof fn
- );
- }
- return function (err, data) {
- var resultantData = data;
- var metadata = {};
- // Allow for extra data if resultantData is an object
- if (resultantData && typeof resultantData === 'object') {
- metadata = resultantData;
- resultantData = resultantData.activationType;
- }
- // Sanitize the data
- if (resultantData) {
- resultantData = resultantData.toLowerCase().trim();
- if (resultantData.match(/^activate|clicked$/)) {
- resultantData = 'activate';
- }
- if (resultantData.match(/^timedout$/)) {
- resultantData = 'timeout';
- }
- }
- fn.apply(emitter, [err, resultantData, metadata]);
- if (!mapper || !resultantData) return;
- var key = mapper(resultantData);
- if (!key) return;
- emitter.emit(key, emitter, options, metadata);
- };
- };
- module.exports.constructArgumentList = function (options, extra) {
- var args = [];
- extra = extra || {};
- // Massive ugly setup. Default args
- var initial = extra.initial || [];
- var keyExtra = extra.keyExtra || '';
- var allowedArguments = extra.allowedArguments || [];
- var noEscape = extra.noEscape !== undefined;
- var checkForAllowed = extra.allowedArguments !== undefined;
- var explicitTrue = !!extra.explicitTrue;
- var keepNewlines = !!extra.keepNewlines;
- var wrapper = extra.wrapper === undefined ? '"' : extra.wrapper;
- var escapeFn = function escapeFn(arg) {
- if (isArray(arg)) {
- return removeNewLines(arg.map(escapeFn).join(','));
- }
- if (!noEscape) {
- arg = escapeQuotes(arg);
- }
- if (typeof arg === 'string' && !keepNewlines) {
- arg = removeNewLines(arg);
- }
- return wrapper + arg + wrapper;
- };
- initial.forEach(function (val) {
- args.push(escapeFn(val));
- });
- for (var key in options) {
- if (
- options.hasOwnProperty(key) &&
- (!checkForAllowed || inArray(allowedArguments, key))
- ) {
- if (explicitTrue && options[key] === true) {
- args.push('-' + keyExtra + key);
- } else if (explicitTrue && options[key] === false) continue;
- else args.push('-' + keyExtra + key, escapeFn(options[key]));
- }
- }
- return args;
- };
- function removeNewLines(str) {
- var excapedNewline = process.platform === 'win32' ? '\\r\\n' : '\\n';
- return str.replace(/\r?\n/g, excapedNewline);
- }
- /*
- ---- Options ----
- [-t] <title string> | Displayed on the first line of the toast.
- [-m] <message string> | Displayed on the remaining lines, wrapped.
- [-b] <button1;button2 string>| Displayed on the bottom line, can list multiple buttons separated by ";"
- [-tb] | Displayed a textbox on the bottom line, only if buttons are not presented.
- [-p] <image URI> | Display toast with an image, local files only.
- [-id] <id> | sets the id for a notification to be able to close it later.
- [-s] <sound URI> | Sets the sound of the notifications, for possible values see http://msdn.microsoft.com/en-us/library/windows/apps/hh761492.aspx.
- [-silent] | Don't play a sound file when showing the notifications.
- [-appID] <App.ID> | Don't create a shortcut but use the provided app id.
- [-pid] <pid> | Query the appid for the process <pid>, use -appID as fallback. (Only relevant for applications that might be packaged for the store)
- [-pipeName] <\.\pipe\pipeName\> | Provide a name pipe which is used for callbacks.
- [-application] <C:\foo.exe> | Provide a application that might be started if the pipe does not exist.
- -close <id> | Closes a currently displayed notification.
- */
- var allowedToasterFlags = [
- 't',
- 'm',
- 'b',
- 'tb',
- 'p',
- 'id',
- 's',
- 'silent',
- 'appID',
- 'pid',
- 'pipeName',
- 'close',
- 'install'
- ];
- var toasterSoundPrefix = 'Notification.';
- var toasterDefaultSound = 'Notification.Default';
- module.exports.mapToWin8 = function (options) {
- options = mapAppIcon(options);
- options = mapText(options);
- if (options.icon) {
- if (/^file:\/+/.test(options.icon)) {
- // should parse file protocol URL to path
- options.p = new url.URL(options.icon).pathname
- .replace(/^\/(\w:\/)/, '$1')
- .replace(/\//g, '\\');
- } else {
- options.p = options.icon;
- }
- delete options.icon;
- }
- if (options.message) {
- // Remove escape char to debug "HRESULT : 0xC00CE508" exception
- options.m = options.message.replace(/\x1b/g, '');
- delete options.message;
- }
- if (options.title) {
- options.t = options.title;
- delete options.title;
- }
- if (options.appName) {
- options.appID = options.appName;
- delete options.appName;
- }
- if (typeof options.remove !== 'undefined') {
- options.close = options.remove;
- delete options.remove;
- }
- if (options.quiet || options.silent) {
- options.silent = options.quiet || options.silent;
- delete options.quiet;
- }
- if (typeof options.sound !== 'undefined') {
- options.s = options.sound;
- delete options.sound;
- }
- if (options.s === false) {
- options.silent = true;
- delete options.s;
- }
- // Silent takes precedence. Remove sound.
- if (options.s && options.silent) {
- delete options.s;
- }
- if (options.s === true) {
- options.s = toasterDefaultSound;
- }
- if (options.s && options.s.indexOf(toasterSoundPrefix) !== 0) {
- options.s = toasterDefaultSound;
- }
- if (options.actions && isArray(options.actions)) {
- options.b = options.actions.join(';');
- delete options.actions;
- }
- for (var key in options) {
- // Check if is allowed. If not, delete!
- if (
- options.hasOwnProperty(key) &&
- allowedToasterFlags.indexOf(key) === -1
- ) {
- delete options[key];
- }
- }
- return options;
- };
- module.exports.mapToNotifu = function (options) {
- options = mapAppIcon(options);
- options = mapText(options);
- if (options.icon) {
- options.i = options.icon;
- delete options.icon;
- }
- if (options.message) {
- options.m = options.message;
- delete options.message;
- }
- if (options.title) {
- options.p = options.title;
- delete options.title;
- }
- if (options.time) {
- options.d = options.time;
- delete options.time;
- }
- if (options.q !== false) {
- options.q = true;
- } else {
- delete options.q;
- }
- if (options.quiet === false) {
- delete options.q;
- delete options.quiet;
- }
- if (options.sound) {
- delete options.q;
- delete options.sound;
- }
- if (options.t) {
- options.d = options.t;
- delete options.t;
- }
- if (options.type) {
- options.t = sanitizeNotifuTypeArgument(options.type);
- delete options.type;
- }
- return options;
- };
- module.exports.isMac = function () {
- return os.type() === 'Darwin';
- };
- module.exports.isMountainLion = function () {
- return (
- os.type() === 'Darwin' &&
- semver.satisfies(garanteeSemverFormat(os.release()), '>=12.0.0')
- );
- };
- module.exports.isWin8 = function () {
- return (
- os.type() === 'Windows_NT' &&
- semver.satisfies(garanteeSemverFormat(os.release()), '>=6.2.9200')
- );
- };
- module.exports.isWSL = function () {
- return isWSL;
- };
- module.exports.isLessThanWin8 = function () {
- return (
- os.type() === 'Windows_NT' &&
- semver.satisfies(garanteeSemverFormat(os.release()), '<6.2.9200')
- );
- };
- function garanteeSemverFormat(version) {
- if (version.split('.').length === 2) {
- version += '.0';
- }
- return version;
- }
- function sanitizeNotifuTypeArgument(type) {
- if (typeof type === 'string' || type instanceof String) {
- if (type.toLowerCase() === 'info') return 'info';
- if (type.toLowerCase() === 'warn') return 'warn';
- if (type.toLowerCase() === 'error') return 'error';
- }
- return 'info';
- }
- module.exports.createNamedPipe = (server) => {
- const buf = Buffer.alloc(BUFFER_SIZE);
- return new Promise((resolve) => {
- server.instance = net.createServer((stream) => {
- stream.on('data', (c) => {
- buf.write(c.toString());
- });
- stream.on('end', () => {
- server.instance.close();
- });
- });
- server.instance.listen(server.namedPipe, () => {
- resolve(buf);
- });
- });
- };
|