2013-08-29 12:55:23 +02:00
|
|
|
/*
|
|
|
|
* readlineSync
|
|
|
|
* https://github.com/anseki/readline-sync
|
|
|
|
*
|
2015-01-26 17:11:25 +01:00
|
|
|
* Copyright (c) 2015 anseki
|
2013-08-29 12:55:23 +02:00
|
|
|
* Licensed under the MIT license.
|
|
|
|
*/
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2014-07-13 06:55:17 +02:00
|
|
|
var
|
2013-08-29 19:26:22 +02:00
|
|
|
BUF_SIZE = 256,
|
2015-02-11 23:39:59 +01:00
|
|
|
IS_WIN = process.platform === 'win32',
|
|
|
|
SHELL_PATH = IS_WIN ? 'cmd.exe' : '/bin/sh',
|
|
|
|
|
2014-07-13 06:55:17 +02:00
|
|
|
ALGORITHM_CIPHER = 'aes-256-cbc',
|
|
|
|
ALGORITHM_HASH = 'sha256',
|
|
|
|
|
2013-08-29 19:26:22 +02:00
|
|
|
fs = require('fs'),
|
2015-02-11 20:44:05 +01:00
|
|
|
childProc = require('child_process'),
|
2013-08-29 19:26:22 +02:00
|
|
|
stdin = process.stdin,
|
|
|
|
stdout = process.stdout,
|
2014-06-27 03:06:29 +02:00
|
|
|
buffer = new Buffer(BUF_SIZE),
|
2015-02-11 20:44:05 +01:00
|
|
|
|
|
|
|
promptText = '> ',
|
|
|
|
encoding = 'utf8',
|
2014-07-13 06:55:17 +02:00
|
|
|
useShell = true, print, tempdir, salt = 0;
|
2014-06-27 03:06:29 +02:00
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
function _readlineSync(display, options) {
|
2013-12-18 03:51:32 +01:00
|
|
|
var input = '', rsize, err;
|
2013-08-29 19:26:22 +02:00
|
|
|
|
2014-07-13 14:30:04 +02:00
|
|
|
if (display !== '') { // null and undefined were excluded.
|
2014-07-11 23:25:59 +02:00
|
|
|
if (typeof print === 'function') { print(display, encoding); }
|
2014-07-12 01:16:11 +02:00
|
|
|
stdout.write(display + '', encoding);
|
2014-07-11 23:25:59 +02:00
|
|
|
}
|
2013-08-29 12:55:23 +02:00
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
if (options && options.noEchoBack) { // Try reading via shell
|
2013-12-18 03:51:32 +01:00
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
input = _readlineShell(true);
|
|
|
|
if (typeof input !== 'string') {
|
2014-07-12 01:16:11 +02:00
|
|
|
if (display !== '') { stdout.write('\n', encoding); } // Return from prompt line.
|
2014-07-12 00:37:25 +02:00
|
|
|
throw new Error('Can\'t read via shell');
|
|
|
|
}
|
2014-06-27 03:06:29 +02:00
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
} else {
|
2014-06-27 03:06:29 +02:00
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
stdin.resume();
|
|
|
|
while (true) {
|
|
|
|
rsize = 0;
|
|
|
|
|
|
|
|
try {
|
|
|
|
rsize = fs.readSync(stdin.fd, buffer, 0, BUF_SIZE);
|
|
|
|
} catch (e) {
|
|
|
|
if (e.code === 'EOF') { break; } // pipe
|
|
|
|
|
|
|
|
if (useShell) {
|
|
|
|
// Try reading via shell
|
|
|
|
input = _readlineShell();
|
|
|
|
if (typeof input === 'string') { break; }
|
|
|
|
}
|
|
|
|
|
|
|
|
// Give up...
|
|
|
|
if (e.code === 'EAGAIN') { // EAGAIN, resource temporarily unavailable
|
|
|
|
// util can't inherit Error.
|
|
|
|
err = new Error('The platform doesn\'t support interactive reading from stdin');
|
|
|
|
err.errno = e.errno;
|
|
|
|
err.code = e.code;
|
|
|
|
}
|
2014-07-12 01:16:11 +02:00
|
|
|
if (display !== '') { stdout.write('\n', encoding); } // Return from prompt line.
|
2014-07-12 00:37:25 +02:00
|
|
|
throw err || e;
|
2013-12-17 18:18:39 +01:00
|
|
|
}
|
2014-07-12 00:37:25 +02:00
|
|
|
|
|
|
|
if (rsize === 0) { break; }
|
|
|
|
input += buffer.toString(encoding, 0, rsize);
|
|
|
|
if (/[\r\n]$/.test(input)) { break; }
|
2013-12-17 18:18:39 +01:00
|
|
|
}
|
2014-07-12 00:37:25 +02:00
|
|
|
stdin.pause();
|
2013-12-18 03:51:32 +01:00
|
|
|
|
2013-08-29 12:55:23 +02:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:11:25 +01:00
|
|
|
return options && options.noTrim ? input.replace(/[\r\n]+$/, '') : input.trim();
|
2014-06-27 03:06:29 +02:00
|
|
|
}
|
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
function _readlineShell(noEchoBack) {
|
2015-02-11 23:39:59 +01:00
|
|
|
var shellStdout, command,
|
|
|
|
options = {
|
|
|
|
env: process.env,
|
|
|
|
stdio: [stdin], // ScriptPW needs piped stdin
|
|
|
|
encoding: encoding
|
|
|
|
},
|
|
|
|
optEchoBack = noEchoBack ? ' noechoback' : '';
|
|
|
|
|
|
|
|
if (IS_WIN) {
|
|
|
|
// The quote (") is escaped by node before parsed by shell. Then use ENV{Q}.
|
|
|
|
process.env.Q = '"';
|
|
|
|
command = '%Q%' + __dirname + '\\read.bat%Q%' + optEchoBack;
|
|
|
|
} else {
|
|
|
|
command = '"' + __dirname + '/read.sh"' + optEchoBack;
|
|
|
|
}
|
|
|
|
|
|
|
|
stdin.pause(); // re-start in child process
|
|
|
|
if (childProc.execFileSync) {
|
|
|
|
shellStdout = childProc.execFileSync(SHELL_PATH,
|
|
|
|
IS_WIN ? ['/S', '/C', command] : ['-c', command], options);
|
|
|
|
shellStdout = shellStdout.replace(/^'|'$/g, '');
|
|
|
|
} else {
|
|
|
|
shellStdout = _execSyncByFile(command, options);
|
|
|
|
}
|
|
|
|
|
|
|
|
return shellStdout;
|
|
|
|
}
|
|
|
|
|
|
|
|
// piping via files (node v0.10-)
|
|
|
|
function _execSyncByFile(command, options) {
|
|
|
|
|
|
|
|
function getTempfile(name) {
|
|
|
|
var path = require('path'), filepath, suffix = '', fd;
|
|
|
|
tempdir = tempdir || require('os').tmpdir();
|
|
|
|
|
|
|
|
while (true) {
|
|
|
|
filepath = path.join(tempdir, name + suffix);
|
|
|
|
try {
|
|
|
|
fd = fs.openSync(filepath, 'wx');
|
|
|
|
} catch (e) {
|
|
|
|
if (e.code === 'EEXIST') {
|
|
|
|
suffix++;
|
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
fs.closeSync(fd);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return filepath;
|
|
|
|
}
|
|
|
|
|
|
|
|
var shellStdout,
|
2014-06-29 00:00:15 +02:00
|
|
|
pathStdout = getTempfile('readline-sync.stdout'),
|
|
|
|
pathStatus = getTempfile('readline-sync.status'),
|
2014-07-12 00:37:25 +02:00
|
|
|
pathDone = getTempfile('readline-sync.done'),
|
2014-07-13 06:55:17 +02:00
|
|
|
crypto = require('crypto'), shasum, decipher, password;
|
|
|
|
|
|
|
|
shasum = crypto.createHash(ALGORITHM_HASH);
|
|
|
|
shasum.update('' + process.pid + (salt++) + Math.random());
|
|
|
|
password = shasum.digest('hex');
|
|
|
|
decipher = crypto.createDecipher(ALGORITHM_CIPHER, password);
|
2014-06-29 00:00:15 +02:00
|
|
|
|
2015-02-11 23:39:59 +01:00
|
|
|
childProc.spawn(SHELL_PATH,
|
|
|
|
IS_WIN ? ['/V:ON', '/S', '/C',
|
|
|
|
command + ' |%Q%' + process.execPath + '%Q% %Q%' + __dirname + '\\encrypt.js%Q%' +
|
|
|
|
' %Q%' + ALGORITHM_CIPHER + '%Q% %Q%' + password + '%Q%' +
|
|
|
|
' >%Q%' + pathStdout + '%Q%' +
|
|
|
|
' & (echo !ERRORLEVEL!)>%Q%' + pathStatus + '%Q% & (echo 1)>%Q%' + pathDone + '%Q%'] :
|
|
|
|
['-c',
|
|
|
|
'DATA=`(' + SHELL_PATH + ' ' + command + ')`; RTN=$?;' +
|
|
|
|
' if [ $RTN -eq 0 ]; then (printf \'%s\' "$DATA" |' +
|
|
|
|
'"' + process.execPath + '" "' + __dirname + '/encrypt.js"' +
|
|
|
|
' "' + ALGORITHM_CIPHER + '" "' + password + '"' +
|
|
|
|
' >"' + pathStdout + '") fi;' +
|
|
|
|
' expr $RTN + $? >"' + pathStatus + '"; echo 1 >"' + pathDone + '"'],
|
|
|
|
options);
|
2014-06-29 00:00:15 +02:00
|
|
|
|
2014-07-13 08:32:02 +02:00
|
|
|
while (fs.readFileSync(pathDone, {encoding: encoding}).trim() !== '1') {}
|
2014-06-29 00:00:15 +02:00
|
|
|
if (fs.readFileSync(pathStatus, {encoding: encoding}).trim() === '0') {
|
2014-07-13 06:55:17 +02:00
|
|
|
shellStdout =
|
|
|
|
decipher.update(fs.readFileSync(pathStdout, {encoding: 'binary'}), 'hex', encoding) +
|
|
|
|
decipher.final(encoding);
|
2015-02-10 14:39:14 +01:00
|
|
|
shellStdout = shellStdout.replace(/^'|'$/g, '');
|
2014-06-29 00:00:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
fs.unlinkSync(pathStdout);
|
|
|
|
fs.unlinkSync(pathStatus);
|
|
|
|
fs.unlinkSync(pathDone);
|
|
|
|
|
2015-02-11 23:39:59 +01:00
|
|
|
return shellStdout;
|
2014-06-29 00:00:15 +02:00
|
|
|
}
|
|
|
|
|
2014-06-27 03:06:29 +02:00
|
|
|
// for dev
|
|
|
|
exports.useShellSet = function(use) { useShell = use; };
|
2013-08-29 19:26:22 +02:00
|
|
|
|
2014-07-11 23:25:59 +02:00
|
|
|
exports.setPrint = function(fnc) { print = fnc; };
|
|
|
|
|
2013-08-29 19:26:22 +02:00
|
|
|
exports.setPrompt = function(newPrompt) {
|
2014-07-12 01:16:11 +02:00
|
|
|
/* jshint eqnull:true */
|
2014-07-13 14:30:04 +02:00
|
|
|
if (newPrompt != null) {
|
2014-07-12 01:16:11 +02:00
|
|
|
/* jshint eqnull:false */
|
2014-07-13 14:30:04 +02:00
|
|
|
promptText = newPrompt;
|
|
|
|
}
|
2014-07-12 01:56:21 +02:00
|
|
|
return promptText;
|
2013-08-29 19:26:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
exports.setEncoding = function(newEncoding) {
|
|
|
|
if (typeof newEncoding === 'string') {
|
|
|
|
encoding = newEncoding;
|
|
|
|
}
|
2014-07-12 01:56:21 +02:00
|
|
|
return encoding;
|
2013-08-29 19:26:22 +02:00
|
|
|
};
|
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
exports.prompt = function(options) {
|
|
|
|
return _readlineSync(promptText, options);
|
2013-08-29 19:26:22 +02:00
|
|
|
};
|
|
|
|
|
2014-07-12 00:37:25 +02:00
|
|
|
exports.question = function(query, options) {
|
2014-07-12 01:16:11 +02:00
|
|
|
return _readlineSync(
|
|
|
|
/* jshint eqnull:true */
|
|
|
|
query != null ? query : '',
|
|
|
|
/* jshint eqnull:false */
|
|
|
|
options);
|
2013-08-29 19:26:22 +02:00
|
|
|
};
|