readline-sync/lib/readline-sync.js

185 lines
5.2 KiB
JavaScript
Raw Normal View History

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,
2014-07-13 06:55:17 +02:00
ALGORITHM_CIPHER = 'aes-256-cbc',
ALGORITHM_HASH = 'sha256',
promptText = '> ',
encoding = 'utf8',
2013-08-29 19:26:22 +02:00
fs = require('fs'),
stdin = process.stdin,
stdout = process.stdout,
buffer = new Buffer(BUF_SIZE),
2014-07-13 06:55:17 +02:00
useShell = true, print, tempdir, salt = 0;
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
if (display !== '') { // null and undefined were excluded.
2014-07-11 23:25:59 +02:00
if (typeof print === 'function') { print(display, encoding); }
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') {
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-07-12 00:37:25 +02:00
} else {
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;
}
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-07-12 00:37:25 +02:00
function _readlineShell(noEchoBack) {
// piping via files instead of execSync (node v0.12+)
// https://github.com/joyent/node/blob/master/doc/api/child_process.markdown#child_processexecsynccommand-options
// see README > Note
var shellPath, args, shellStdout,
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
optEchoBack = noEchoBack ? ' noechoback' : '',
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);
if (process.platform === 'win32') {
// The quote (") is escaped by node before parsed by shell. Then use ENV{Q}.
shellPath = 'cmd.exe';
2014-07-12 00:37:25 +02:00
args = ['/V:ON', '/S', '/C',
2014-07-13 06:55:17 +02:00
'%Q%' + __dirname + '\\read.bat%Q%' + optEchoBack +
2014-07-13 08:32:02 +02:00
' |%Q%' + process.execPath + '%Q% %Q%' + __dirname + '\\encrypt.js%Q%' +
' %Q%' + ALGORITHM_CIPHER + '%Q% %Q%' + password + '%Q%' +
2014-07-13 06:55:17 +02:00
' >%Q%' + pathStdout + '%Q%' +
' & (echo !ERRORLEVEL!)>%Q%' + pathStatus + '%Q% & (echo 1)>%Q%' + pathDone + '%Q%'];
} else {
shellPath = '/bin/sh';
2014-07-13 06:55:17 +02:00
args = ['-c',
2014-09-12 16:23:04 +02:00
'DATA=`(' + shellPath + ' "' + __dirname + '/read.sh"' + optEchoBack + ')`; RTN=$?;' +
' if [ $RTN -eq 0 ]; then (echo $DATA |' +
'"' + process.execPath + '" "' + __dirname + '/encrypt.js"' +
2014-07-13 08:32:02 +02:00
' "' + ALGORITHM_CIPHER + '" "' + password + '"' +
2014-09-12 16:23:04 +02:00
' >"' + pathStdout + '") fi;' +
' expr $RTN + $? >"' + pathStatus + '"; echo 1 >"' + pathDone + '"'];
}
stdin.pause(); // re-start in child process
require('child_process').execFile(shellPath, args, {env: {Q: '"'}});
2014-07-13 08:32:02 +02:00
while (fs.readFileSync(pathDone, {encoding: encoding}).trim() !== '1') {}
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);
}
fs.unlinkSync(pathStdout);
fs.unlinkSync(pathStatus);
fs.unlinkSync(pathDone);
return shellStdout;
}
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;
}
// 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) {
/* jshint eqnull:true */
if (newPrompt != null) {
/* jshint eqnull:false */
promptText = newPrompt;
}
return promptText;
2013-08-29 19:26:22 +02:00
};
exports.setEncoding = function(newEncoding) {
if (typeof newEncoding === 'string') {
encoding = newEncoding;
}
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) {
return _readlineSync(
/* jshint eqnull:true */
query != null ? query : '',
/* jshint eqnull:false */
options);
2013-08-29 19:26:22 +02:00
};