Cordova plugin to Download/Upload files from/to a SFTP server.
This plugin is build on top of:
Contributors are welcome.
Platforms supported
- Android
- iOS (Partial)
cordova plugin add cordova-sftp-plugin
There is a base Object JJsftp
expose in window
that should be initialized with the host
, user
and password
for the server
var mySftp = new JJsftp("host", "user", "password");
download(serverPath, localPath [, createIfNotExists, successCallback, errorCallback])
Allow to download a single file.serverPath
- Path/To/File/In/ServerlocalPath
- Path/To/File/In/DevicecreateIfNotExists
- Create the folder path if not existsuccessCallback
- Function to call in plugin successerrorCallback
- Function to call in plugin error
downloadList(list [, successCallback, errorCallback])
Allow to download a list of fileslist
- Object array of files, has the follow attributes:remote
- Path/To/File/In/Serverlocal
- Local/Path/To/File- [
create
] - default to:false
- Create the folder path if not exist
successCallback
- Function to call in plugin successerrorCallback
- Function to call in plugin error
upload(serverPath, localPath [, successCallback, errorCallback])
Allow to download a single file.serverPath
- Path/To/File/In/ServerlocalPath
- Path/To/File/In/DevicesuccessCallback
- Function to call in plugin successerrorCallback
- Function to call in plugin error
uploadList(list [, successCallback, errorCallback])
Allow to download a list of fileslist
- Object array of files, has the follow attributesremote
- Path/To/File/In/Serverlocal
- Local/Path/To/Fil
successCallback
- Function to call in plugin successerrorCallback
- Function to call in plugin error
cancel([successCallback, errorCallback])
Allow to cancel the asyn process that make the connectionsuccessCallback
- Function to call in plugin successerrorCallback
- Function to call in plugin error
Every callback (success or error) will response for the action of add the elements downloads/upload list, if you wanna know when a file or all the files are donwloaded, you should listen to the events fires over document.
There are several events that fire during the process, all of it give one arg, the cordova event with few extra attributes
SFTPActionConnected(data)
- Fire on sftp channel connect- data - object:
id
- string: UDID related to that connection (Android Only)
- data - object:
SFTPActionStart(data)
- Fire when an action is about to start in a file- data - object:
id
- string: UDID related to that connection (Android Only)from
- string : Path of the sourceto
- string : Path of the targetsize
- long : Size of the element
- data - object:
SFTPActionProgress(data)
- fire to inform the % of down/up load in the actual file- data - object:
id
- string: UDID related to that connection (Android Only)percent
- int : % of actual file progress
- data - object:
SFTPActionEnd(data)
- fire when the actual action over a file end- data - object:
id
- string: UDID related to that connection (Android Only)
- data - object:
SFTPActionListProgress(data)
- Fire after an action (Up/Down) is executed over a file, giving the actual file (index in list) and total files in list- data - object:
id
- string: UDID related to that connection (Android Only)progress
- int : Actual element index in listtotal
- int : Total count of elements in list
- data - object:
SFTPActionListEnd(data)
- Fire at end of action list to inform the # of file reach it- data - object:
id
- string: UDID related to that connection (Android Only)all
- boolean : true if all action were made it
- data - object:
SFTPActionDisconnected(data)
- Fire on sftp channel disconnect- data - object:
id
- string: UDID related to that connection (Android Only)
- data - object:
SFTPActionCancell(data)
- Fire on cancel async action- data - object:
id
- string: UDID related to that connection (Android Only)
- data - object:
To Download
var sftp = new JJsftp("host", "user", "password"),
localPath = "String/Path/To/Place/The/Download"
filelist = [{
remote : "/Path/To/Remote/File.*"
, local : localPath+"file.*"
},{
remote : "/Path/To/Another/Remote/File.*"
, local : localPath+"anotherFile.*"
}];
sftp.downloadList(filelist, function(data){
/* Wow everything goes good, but just in case verify data.success */
}, function(error){
/* Wow something goes wrong, check the error.message */
});
To Upload is the same but calling upload
or uploadList
and by default will override a file if exists in server
Of course if you want, you could add any of the JJsftp events to document and listen the progress of the download by example
upload
does not work on iOS (Yet)cancel
does not work on iOS (Yet), thereforeSFTPActionCancell
is never trigger.