You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/kubernetes/components/kubectl-shell/kubectl-shell.controller.js

128 lines
3.3 KiB

import { Terminal } from 'xterm';
import * as fit from 'xterm/lib/addons/fit/fit';
export default class KubectlShellController {
/* @ngInject */
constructor(TerminalWindow, $window, $async, EndpointProvider, LocalStorage, Notifications) {
this.$async = $async;
this.$window = $window;
this.TerminalWindow = TerminalWindow;
this.EndpointProvider = EndpointProvider;
this.LocalStorage = LocalStorage;
this.Notifications = Notifications;
$window.onbeforeunload = () => {
if (this.state.shell.connected) {
return '';
}
};
}
disconnect() {
if (this.state.shell.connected) {
this.state.shell.connected = false;
this.state.icon = 'fas fa-window-minimize';
this.state.shell.socket.close();
this.state.shell.term.dispose();
this.TerminalWindow.terminalclose();
this.$window.onresize = null;
}
}
screenClear() {
this.state.shell.term.clear();
}
miniRestore() {
if (this.state.css === 'mini') {
this.state.css = 'normal';
this.state.icon = 'fas fa-window-minimize';
this.TerminalWindow.terminalopen();
} else {
this.state.css = 'mini';
this.state.icon = 'fas fa-window-restore';
this.TerminalWindow.terminalclose();
}
}
configureSocketAndTerminal(socket, term) {
socket.onopen = () => {
const terminal_container = document.getElementById('terminal-container');
term.open(terminal_container);
term.setOption('cursorBlink', true);
term.focus();
term.fit();
term.writeln('#Run kubectl commands inside here');
term.writeln('#e.g. kubectl get all');
term.writeln('');
};
term.on('data', (data) => {
socket.send(data);
});
socket.onmessage = (msg) => {
term.write(msg.data);
};
socket.onerror = (err) => {
this.disconnect();
if (err.target.readyState !== WebSocket.CLOSED) {
this.Notifications.error('Failure', err, 'Websocket connection error');
}
};
this.$window.onresize = () => {
this.TerminalWindow.terminalresize();
};
socket.onclose = this.disconnect.bind(this);
this.state.shell.connected = true;
}
connectConsole() {
this.TerminalWindow.terminalopen();
this.state.css = 'normal';
const params = {
token: this.LocalStorage.getJWT(),
endpointId: this.EndpointProvider.endpointID(),
};
const wsProtocol = this.$window.location.protocol === 'https:' ? 'wss://' : 'ws://';
const path = '/api/websocket/kubernetes-shell';
const queryParams = Object.entries(params)
.map(([k, v]) => `${k}=${v}`)
.join('&');
const url = `${wsProtocol}${window.location.host}${path}?${queryParams}`;
Terminal.applyAddon(fit);
this.state.shell.socket = new WebSocket(url);
this.state.shell.term = new Terminal();
this.configureSocketAndTerminal(this.state.shell.socket, this.state.shell.term);
}
$onInit() {
return this.$async(async () => {
this.state = {
css: 'normal',
icon: 'fa-window-minimize',
shell: {
connected: false,
socket: null,
term: null,
},
};
});
}
$onDestroy() {
if (this.state.shell.connected) {
this.disconnect();
this.$window.onresize = null;
}
}
}