mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2024-12-18 12:46:23 +00:00
Basic PuTTY support, Ref. #368
This commit is contained in:
parent
39e98e31ba
commit
f6b50526f4
@ -1,8 +1,32 @@
|
||||
const { spawn } = require('child_process');
|
||||
const { app } = require('electron');
|
||||
const path = require('path');
|
||||
|
||||
async function setPATHEnv() {
|
||||
const puttyLookup = [
|
||||
path.join(__dirname, 'dist', 'putty'),
|
||||
path.join(path.dirname(app.getPath('exe')), 'dist', 'putty')
|
||||
];
|
||||
|
||||
// prevent adding duplicates
|
||||
let extra = [
|
||||
...puttyLookup,
|
||||
].filter((dir) => {
|
||||
return process.env.PATH.indexOf(dir) < 0;
|
||||
});
|
||||
extra.push(process.env.PATH);
|
||||
process.env.PATH = extra.join(";");
|
||||
}
|
||||
|
||||
exports.openConsole = async (consoleRequest) => {
|
||||
const genericConsoleCommand = 'xfce4-terminal --tab -T "%d" -e "telnet %h %p"';
|
||||
// const genericConsoleCommand = 'xfce4-terminal --tab -T "%d" -e "telnet %h %p"';
|
||||
const genericConsoleCommand = 'putty.exe -telnet %h %p -loghost "%d"';
|
||||
|
||||
const command = prepareCommand(genericConsoleCommand, consoleRequest);
|
||||
|
||||
console.log(`Setting up PATH`);
|
||||
await setPATHEnv();
|
||||
|
||||
console.log(`Starting console with command: '${command}'`);
|
||||
|
||||
let consoleProcess = spawn(command, [], {
|
||||
@ -10,7 +34,15 @@ exports.openConsole = async (consoleRequest) => {
|
||||
});
|
||||
|
||||
consoleProcess.stdout.on('data', (data) => {
|
||||
console.log(`Console is producing: ${data.toString()}`);
|
||||
console.log(`Console stdout is producing: ${data.toString()}`);
|
||||
});
|
||||
|
||||
consoleProcess.stderr.on('data', (data) => {
|
||||
console.log(`Console stderr is producing: ${data.toString()}`);
|
||||
});
|
||||
|
||||
consoleProcess.on('close', (code) => {
|
||||
console.log(`child process exited with code ${code}`);
|
||||
});
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user