44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
|
define([ "jquery", "core", "ssh-helper" ], function($, core, sshHelper) {
|
||
|
|
||
|
var PROVIDER_SSH = "ssh";
|
||
|
|
||
|
var sshProvider = {
|
||
|
providerId : PROVIDER_SSH,
|
||
|
providerName : "SSH server"
|
||
|
};
|
||
|
|
||
|
sshProvider.publish = function(publishAttributes, title, content, callback) {
|
||
|
sshHelper.upload(
|
||
|
publishAttributes.host,
|
||
|
publishAttributes.port,
|
||
|
publishAttributes.username,
|
||
|
publishAttributes.password,
|
||
|
publishAttributes.path,
|
||
|
title,
|
||
|
content,
|
||
|
callback);
|
||
|
};
|
||
|
|
||
|
sshProvider.newPublishAttributes = function(event) {
|
||
|
var publishAttributes = {};
|
||
|
publishAttributes.host = core
|
||
|
.getInputValue(
|
||
|
$("#input-publish-ssh-host"),
|
||
|
event,
|
||
|
/^(([a-zA-Z0-9]|[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])\.)*([A-Za-z0-9]|[A-Za-z0-9][A-Za-z0-9\-]*[A-Za-z0-9])$/);
|
||
|
publishAttributes.port = core.getInputIntValue(
|
||
|
$("#input-publish-ssh-port"), undefined, 0);
|
||
|
publishAttributes.username = core.getInputValue(
|
||
|
$("#input-publish-ssh-username"), event);
|
||
|
publishAttributes.password = core.getInputValue(
|
||
|
$("#input-publish-ssh-password"), event);
|
||
|
publishAttributes.path = core.getInputValue(
|
||
|
$("#input-publish-file-path"), event);
|
||
|
if (event.isPropagationStopped()) {
|
||
|
return undefined;
|
||
|
}
|
||
|
return publishAttributes;
|
||
|
};
|
||
|
|
||
|
return sshProvider;
|
||
|
});
|