1
0
Fork 0
mirror of https://github.com/Ylianst/MeshCentral.git synced 2025-03-09 15:40:18 +00:00

First working web-based SSH.

This commit is contained in:
Ylian Saint-Hilaire 2021-04-29 22:31:01 -07:00
parent abbb6be431
commit 1b32966c76
8 changed files with 338 additions and 306 deletions

View file

@ -104,6 +104,8 @@
resizeTimer = setTimeout(sendResize, 200);
});
//term.setOption('convertEol', true); // Consider \n to be \r\n, this should be taken care of by "termios"
connectButton();
}
// Send the new terminal size to the agent
@ -149,16 +151,9 @@
if (data.data[0] == '{') {
var json = JSON.parse(data.data);
switch (json.action) {
case 'connected': {
state = 3;
updateState();
term.focus();
break;
}
case 'autherror': {
setDialogMode(2, "Authentication", 1, null, "Unable to authenticate.");
break;
}
case 'connected': { state = 3; updateState(); term.focus(); break; }
case 'autherror': { setDialogMode(2, "Authentication", 1, null, "Unable to authenticate."); break; }
case 'sessionerror': { setDialogMode(2, "Session", 1, null, "Session expired."); break; }
}
} else if (data.data[0] == '~') {
term.writeUtf8(data.data.substring(1));