...
Code Block | ||
---|---|---|
| ||
package co.cask.hydrator.plugin.action;
/**
* A {@link } SSH into a remote machine and execute a script on that machine.
*/
@Plugin(type = "action")
@Name("SSH-Action")
@Description("Custom Action to run a script on remote machine before starting workflow")
public class SSHAction implements Action {
private final SSHActionConfig config;
private static final Logger LOG = LoggerFactory.getLogger(SSHAction.class);
public SSHAction(SSHActionConfig config) {
super(config);
this.config = config;
}
@Override
public void run(ActionContext context) throws Exception{
try {
Connection connection = new Connection(config.host);
connection.connect();
if (config.usingPassAuth) {
if (!connection.authenticateWithPassword(config.user, config.password)) {
throw new IOException(String.format("Unable to establish SSH connection for %s@%s on port %d",
config.user, config.host, config.port));
}
} else {
connection.authenticateWithPublicKey(config.user, config.privateKeyFile, config.private);
}
Session session = connection.openSession();
session.execCommand(config.scriptCMD);
// Read stdout and stderr
InputStream stdout = new StreamGobbler(session.getStdout());
BufferedReader outBuffer = new BufferedReader(new InputStreamReader(stdout));
InputStream stderr = new StreamGobbler(session.getStderr());
BufferedReader errBuffer = new BufferedReader(new InputStreamReader(stderr));
StringBuilder outBuilder = new StringBuilder();
String line = outBuffer.readLine();
while (line != null) {
outBuilder.append(line + "\n");
line = outBuffer.readLine();
}
StringBuilder errBuilder = new StringBuilder();
line = errBuffer.readLine();
while (line != null) {
errBuilder.append(line + "\n");
line = errBuffer.readLine();
}
LOG.info("Output:");
LOG.info(outBuilder.toString());
LOG.info("Errors:");
LOG.info(errBuilder.toString());
session.close();
} catch (IOException e) {
LOG.error("Unable to establish connection.", e);
}
}
@Override
public void configurePipeline(PipelineConfigurer pipelineConfigurer) {
super.configurePipeline(pipelineConfigurer);
this.config.validate();
}
/**
* Config class that contains all the properties needed to SSH into the remote machine and run the script.
*/
public static class SSHActionConfig extends PluginConfig {
@Nullable
@Description("URL of host machine")
public String host;
@Nullable
@Description("User login credentials")
public String user;
@Description("password or private key auth")
public Boolean usingPassAuth;
@Nullable
@Description("Password login credentials")
public String password;
@Nullable
@Description("Private Key File")
public FileSet privateKeyFile;
@Nullable
@Description("Private Key Passphrase")
public String privateKeyPassPhrase;
@Nullable
@Description("Port to connect to")
public int port;
@Nullable
@Description("Path to Script File")
public String scriptPath;
@Nullable
@Description("Script command")
public String scriptCMD;
@Nullable
@Description("Arguments to pass into script")
public Set<String> arguments; //Unsure how the arguments would be passed. Can change this as necessary
public SSHActionConfig(String referenceName, String host, int port, @Nullable String user, @Nullable String password,
@Nullable FileSet privateKey, @Nullable String privateKeyPassPhrase, String scriptPath,
String scriptCMD, @Nullable Set<String> arguments) {
super(referenceName);
this.host = host;
this.port = port;
this.user = user;
this.privateKeyFile = privateKey;
this.privateKeyPassPhrase = privateKeyPassPhrase;
this.password = password;
this.scriptPath = scriptPath;
this.scriptCMD = scriptCMD;
this.arguments = arguments;
}
public void validate() {
//check that only password or privateKey is set
if (!(password != null ^ privateKeyFile != null)) {
throw new IllegalArgumentException("Must specify either a password or private key file");
}
//either password or privateKey has been passed
usingPassAuth = (password != null);
//check that port is not negative
if (port < 0) {
throw new IllegalArgumentException("Port cannot be negative");
}
}
}
}
|
...