com.sshtools.vsession.commands.ssh.SshClientCommand Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of maverick-virtual-session Show documentation
Show all versions of maverick-virtual-session Show documentation
Support for a virtual sessions, custom command execution etc.
package com.sshtools.vsession.commands.ssh;
/*-
* #%L
* Virtual Sessions
* %%
* Copyright (C) 2002 - 2024 JADAPTIVE Limited
* %%
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser 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 General Lesser Public License for more details.
*
* You should have received a copy of the GNU General Lesser Public
* License along with this program. If not, see
* .
* #L%
*/
import java.io.IOException;
import org.apache.commons.cli.CommandLine;
import org.apache.commons.cli.Option;
import com.sshtools.client.SessionChannelNG;
import com.sshtools.client.SshClient;
import com.sshtools.client.SshClientContext;
import com.sshtools.client.tasks.AbstractSessionTask;
import com.sshtools.client.tasks.CommandTask.CommandTaskBuilder;
import com.sshtools.client.tasks.ShellTask.ShellTaskBuilder;
import com.sshtools.client.tasks.Task;
import com.sshtools.common.permissions.PermissionDeniedException;
import com.sshtools.common.util.IOUtils;
import com.sshtools.server.vsession.VirtualConsole;
import com.sshtools.server.vsession.VirtualShellNG;
import com.sshtools.server.vsession.VirtualShellNG.WindowSizeChangeListener;
import com.sshtools.server.vsession.commands.sftp.SftpClientOptions;
import com.sshtools.synergy.ssh.Connection;
public class SshClientCommand extends AbstractSshClientCommand {
public SshClientCommand() {
super("ssh", SUBSYSTEM_SHELL, "", "Returns the ssh client shell");
for (Option option : SftpClientOptions.getOptions()) {
this.options.addOption(option);
}
}
@Override
public void runCommand(SshClient sshClient, SshClientArguments arguments, VirtualConsole console) {
console.getSessionChannel().enableRawMode();
try {
Connection connection = sshClient.getConnection();
AbstractSessionTask> task;
var listener = new WindowSizeChange();
if (CommandUtil.isNotEmpty(arguments.getCommand())) {
String command = arguments.getCommand();
task = CommandTaskBuilder.create()
.withCommand(command)
.withTermType(console.getTerminal().getType())
.withColumns(console.getTerminal().getWidth())
.withRows(console.getTerminal().getHeight())
.onBeforeExecute((t, session)->{
listener.session = session;
((VirtualShellNG)console.getSessionChannel()).addWindowSizeChangeListener(listener);
})
.onTask((t, session)->{
connection.addTask(Task.ofRunnable(connection, (c) -> IOUtils.copy(console.getSessionChannel().getInputStream(), session.getOutputStream())));
IOUtils.copy(session.getInputStream(), console.getSessionChannel().getOutputStream());
})
.onClose((t, session) -> ((VirtualShellNG)console.getSessionChannel()).removeWindowSizeChangeListener(listener))
.build();
} else {
task = ShellTaskBuilder.create().
withConnection(connection).
withTermType(console.getTerminal().getType()).
withColumns(console.getTerminal().getWidth()).
withRows(console.getTerminal().getHeight()).
onBeforeTask((t, session) -> {
listener.session = session;
((VirtualShellNG)console.getSessionChannel()).addWindowSizeChangeListener(listener);
})
.onTask((t, session)-> {
connection.addTask(Task.ofRunnable(connection, (c) -> IOUtils.copy(console.getSessionChannel().getInputStream(), session.getOutputStream())));
IOUtils.copy(session.getInputStream(), console.getSessionChannel().getOutputStream());
}).
onClose((t, session) -> ((VirtualShellNG)console.getSessionChannel()).removeWindowSizeChangeListener(listener)).
build();
}
connection.addTask(task);
task.waitForever();
} finally {
console.getSessionChannel().disableRawMode();
console.println();
}
}
@Override
protected SshClientArguments generateCommandArguments(CommandLine cli, String[] args) throws IOException, PermissionDeniedException {
return SshClientOptionsEvaluator.evaluate(cli, args, console);
}
class WindowSizeChange implements WindowSizeChangeListener {
SessionChannelNG session;
@Override
public void newSize(int rows, int cols) {
if(session != null)
session.changeTerminalDimensions(cols, rows, 0, 0);
}
}
}