174 lines
3.4 KiB
JavaScript
174 lines
3.4 KiB
JavaScript
// Sshwifty - A Web SSH client
|
|
//
|
|
// Copyright (C) 2019-2021 NI Rui <ranqus@gmail.com>
|
|
//
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU Affero General Public License as
|
|
// published by the Free Software Foundation, either version 3 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU Affero General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import * as iconv from "iconv-lite";
|
|
import * as color from "../commands/color.js";
|
|
import * as common from "../commands/common.js";
|
|
import * as reader from "../stream/reader.js";
|
|
import * as subscribe from "../stream/subscribe.js";
|
|
|
|
class Control {
|
|
constructor(data, color) {
|
|
this.colorM = color;
|
|
this.colors = this.colorM.get();
|
|
|
|
this.charset = data.charset;
|
|
|
|
if (this.charset === "utf-8") {
|
|
let enc = new TextEncoder();
|
|
|
|
this.charsetDecoder = (d) => {
|
|
return d;
|
|
};
|
|
|
|
this.charsetEncoder = (dStr) => {
|
|
return enc.encode(dStr);
|
|
};
|
|
} else {
|
|
let dec = new TextDecoder(this.charset),
|
|
enc = new TextEncoder();
|
|
|
|
this.charsetDecoder = (d) => {
|
|
return enc.encode(
|
|
dec.decode(d, {
|
|
stream: true,
|
|
})
|
|
);
|
|
};
|
|
|
|
this.charsetEncoder = (dStr) => {
|
|
return iconv.encode(dStr, this.charset);
|
|
};
|
|
}
|
|
|
|
this.enable = false;
|
|
this.sender = data.send;
|
|
this.closer = data.close;
|
|
this.resizer = data.resize;
|
|
this.subs = new subscribe.Subscribe();
|
|
|
|
let self = this;
|
|
|
|
data.events.place("stdout", async (rd) => {
|
|
try {
|
|
self.subs.resolve(self.charsetDecoder(await reader.readCompletely(rd)));
|
|
} catch (e) {
|
|
// Do nothing
|
|
}
|
|
});
|
|
|
|
data.events.place("stderr", async (rd) => {
|
|
try {
|
|
self.subs.resolve(self.charsetDecoder(await reader.readCompletely(rd)));
|
|
} catch (e) {
|
|
// Do nothing
|
|
}
|
|
});
|
|
|
|
data.events.place("completed", () => {
|
|
self.closed = true;
|
|
self.colorM.forget(self.colors.color);
|
|
|
|
self.subs.reject("Remote connection has been terminated");
|
|
});
|
|
}
|
|
|
|
echo() {
|
|
return false;
|
|
}
|
|
|
|
resize(dim) {
|
|
if (this.closed) {
|
|
return;
|
|
}
|
|
|
|
this.resizer(dim.rows, dim.cols);
|
|
}
|
|
|
|
enabled() {
|
|
this.enable = true;
|
|
}
|
|
|
|
disabled() {
|
|
this.enable = false;
|
|
}
|
|
|
|
retap(isOn) {}
|
|
|
|
receive() {
|
|
return this.subs.subscribe();
|
|
}
|
|
|
|
send(data) {
|
|
if (this.closed) {
|
|
return;
|
|
}
|
|
|
|
return this.sender(this.charsetEncoder(data));
|
|
}
|
|
|
|
sendBinary(data) {
|
|
if (this.closed) {
|
|
return;
|
|
}
|
|
|
|
return this.sender(common.strToBinary(data));
|
|
}
|
|
|
|
color() {
|
|
return this.colors.dark;
|
|
}
|
|
|
|
activeColor() {
|
|
return this.colors.color;
|
|
}
|
|
|
|
close() {
|
|
if (this.closer === null) {
|
|
return;
|
|
}
|
|
|
|
let cc = this.closer;
|
|
this.closer = null;
|
|
|
|
return cc();
|
|
}
|
|
}
|
|
|
|
export class SSH {
|
|
/**
|
|
* constructor
|
|
*
|
|
* @param {color.Color} c
|
|
*/
|
|
constructor(c) {
|
|
this.color = c;
|
|
}
|
|
|
|
type() {
|
|
return "SSH";
|
|
}
|
|
|
|
ui() {
|
|
return "Console";
|
|
}
|
|
|
|
build(data) {
|
|
return new Control(data, this.color);
|
|
}
|
|
}
|