Skip to content

tiagoantunespt/NodeCloudPT

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NodeCloudPT -- NodeJS SDK for the CloudPT service

NodeCloudPT

NodeCloudPT is a NodeJS SDK for the CoudPT service that covers all the API methods and parameters. You can see all the API documentation here.

Also has an experimental function that imports directly a file from a URL.

Basic Examples

Create an instance

var cloudpt = new NodeCloudPT({
	oauth : {
		consumer_key : "your consumer key",
		consumer_secret : "your consumer secret",
		token : "your access token",
		token_secret : "your access token secret"
	}
});

Account Info

cloudpt.accountInfo(function(data) {
	console.log(data);
});

Metadata

cloudpt.metadata({path:"/test", list:true}, function(data) {
	console.log(data);
});

List

cloudptlist({path:"/metal",max_rows:1}, function(data) {
	console.log(data);
});

Create Folder

cloudpt.createFolder({path: "/mikeal"}, function(data) {
	console.log(data);
});

Delta

cloudpt.delta(function(data) {
	console.log(data);
});

Copy

cloudpt.copy({from_path:"heavy/world.js", to_path:"soft/world-copy.js"}, function(data) {
	console.log(data);
});

See more examples on tests folder

Uploading and downloading files

Upload

You have to describe the path on the server to place the file on your filesystem.

cloudpt.upload({path:"music/sigur.mp3", file:"sigur.mp3"}, function(data) {
	console.log(data);
});

Download

You have to describe the path on the server where to get the content. You can indicate a file on your filesystem to save the result our get it on the callback function.

// get content on data variable
cloudpt.download({path:"/style/gangnam.png"}, function(data) {
	console.log(data);
});
// save content to a file
cloudpt.download({path:"/style/gangnam.png", file:"gangnam-file.png"}, function(data) {
	console.log(data);
});

Import directly from URL

You can import a file directly from a URL by describing the urlwhere to find the file and the path where to store it.

// get content on data variable
cloudpt.importFromURL({path:"/specialone/main.pdf",url:"http://some.url.com/somefile.pdf"}, function(data) {
	console.log(data);
});

TODO

  • Functions to get the oAuth tokens
  • Import directly from other storage services

About

NodeJS SDK for the CloudPT

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published