Nano and timeout error fix #3

This commit is contained in:
LukeGus
2024-12-04 21:34:37 -06:00
parent 246bb8fb26
commit 870cd9245e
2 changed files with 61 additions and 75 deletions

View File

@@ -2,20 +2,18 @@ const WebSocket = require('ws');
const ssh2 = require('ssh2'); const ssh2 = require('ssh2');
const http = require('http'); const http = require('http');
// Create an HTTP server to serve WebSocket connections // Create an HTTP server
const server = http.createServer((req, res) => { const server = http.createServer((req, res) => {
res.writeHead(200, { 'Content-Type': 'text/plain' }); res.writeHead(200, { 'Content-Type': 'text/plain' });
res.end('WebSocket server is running\n'); res.end('WebSocket server is running\n');
}); });
// Create a WebSocket server attached to the HTTP server // Create a WebSocket server
const wss = new WebSocket.Server({ server }); const wss = new WebSocket.Server({ server });
// WebSocket connection handling
wss.on('connection', (ws) => { wss.on('connection', (ws) => {
console.log('WebSocket connection established'); console.log('WebSocket connection established');
let conn = null;
let conn = null; // Declare SSH client outside to manage lifecycle
// Ping-Pong for WebSocket Keep-Alives // Ping-Pong for WebSocket Keep-Alives
const interval = setInterval(() => { const interval = setInterval(() => {
@@ -32,41 +30,34 @@ wss.on('connection', (ws) => {
ws.on('message', (message) => { ws.on('message', (message) => {
try { try {
const data = JSON.parse(message); // Try parsing the incoming message as JSON const data = JSON.parse(message);
// Check if message contains SSH connection details
if (data.host && data.username && data.password) { if (data.host && data.username && data.password) {
if (conn) { if (conn) {
conn.end(); // Close any previous connection before starting a new one conn.end();
} }
conn = new ssh2.Client(); // Create a new SSH connection instance conn = new ssh2.Client();
// When the SSH connection is ready conn
conn.on('ready', () => { .on('ready', () => {
console.log('SSH Connection established'); console.log('SSH Connection established');
// Start an interactive shell session
conn.shell((err, stream) => { conn.shell((err, stream) => {
if (err) { if (err) {
console.log(`SSH Error: ${err}`); ws.send(`Error: ${err.message}`);
ws.send(`Error: ${err}`);
return; return;
} }
// Handle data from SSH session
stream.on('data', (data) => { stream.on('data', (data) => {
console.log(`SSH Output: ${data}`); ws.send(data.toString());
ws.send(data.toString()); // Send the SSH output back to WebSocket client
}); });
// Handle stream close event
stream.on('close', () => { stream.on('close', () => {
console.log('SSH stream closed'); console.log('SSH Stream closed');
conn.end(); conn.end();
}); });
// When the WebSocket client sends a message (from terminal input), forward it to the SSH stream // Forward user input and resize events to the SSH stream
ws.on('message', (message) => { ws.on('message', (message) => {
if (typeof message === 'string') { if (typeof message === 'string') {
try { try {
@@ -85,43 +76,38 @@ wss.on('connection', (ws) => {
} }
}); });
}); });
}).on('error', (err) => { })
console.log('SSH Connection Error: ', err); .on('error', (err) => {
ws.send(`SSH Error: ${err}`); console.log('SSH Error:', err.message);
}).connect({ ws.send(`SSH Error: ${err.message}`);
host: data.host, // Host provided from the client })
port: 22, // Default SSH port .on('close', () => {
username: data.username, // Username provided from the client console.log('SSH Connection closed');
password: data.password, // Password provided from the client })
keepaliveInterval: 15000, // Send keep-alive packets every 15 seconds .connect({
keepaliveCountMax: 3, // Retry keep-alive 3 times before disconnecting host: data.host,
port: 22,
username: data.username,
password: data.password,
keepaliveInterval: 20000, // Send SSH keepalive every 20 seconds
keepaliveCountMax: 5, // Allow 5 missed keepalives before disconnecting
}); });
} }
} catch (error) { } catch (error) {
// If message is not valid JSON (i.e., terminal input), treat it as raw text and send it to SSH console.log('Non-JSON message received:', message);
console.log('Received non-JSON message, sending to SSH session:', message);
if (conn) {
const stream = conn._stream; // Access the SSH stream directly
if (stream && stream.writable) {
stream.write(message); // Write raw input message to SSH stream
}
} else {
console.error('SSH connection is not established yet.');
}
} }
}); });
// Handle WebSocket close event
ws.on('close', () => { ws.on('close', () => {
console.log('WebSocket closed'); console.log('WebSocket closed');
clearInterval(interval); clearInterval(interval);
if (conn) { if (conn) {
conn.end(); // Close SSH connection when WebSocket client disconnects conn.end();
} }
}); });
}); });
// Start the WebSocket server on port 8081 // Start the server
server.listen(8081, () => { server.listen(8081, () => {
console.log('WebSocket server is listening on ws://localhost:8081'); console.log('WebSocket server is running on ws://localhost:8081');
}); });