Creating a client is straight-forward:
var rackspace = pkgcloud.storage.createClient({
provider: 'openstack',
username: 'your-user-name',
password: 'your-password',
authUrl: 'https://your-identity-service'
});
Learn about more options for creating clients in the Openstack storage
provider.
A Container for Openstack has following properties:
{
name: 'my-container',
count: 1, // number of files in your container
bytes: 12345, // size of the container in bytes
metadata: { // key value pairs for the container
// ...
}
}
A File for Openstack has the following properties:
{
name: 'my-file',
container: 'my-container', // may be an instance of container if provided
size: 12345, // size of the file in bytes
contentType: 'plain/text' // Mime type for the file
lastModified: Fri Dec 14 2012 10:16:50 GMT-0800 (PST), // Last modified date of the file
etag: '1234567890abcdef', // MD5 sum of the file
metadata: {} // optional object metadata
}
client.getContainers(function(err, containers) { })
client.getContainer(container, function(err, container) { })
client.createContainer(container, function(err, container) { })
client.destroyContainer(container, function(err, result) { })
client.updateContainerMetadata(container, function(err, container) { })
client.removeContainerMetadata(container, metadataToRemove, function(err, container) { })
For all of the container methods, you can pass either an instance of container
or the container name as container
. For example:
client.getContainer('my-container', function(err, container) { ... });
This call is functionally equivalent to:
var myContainer = new Container({ name: 'my-container' });
client.getContainer(myContainer, function(err, container) { ... });
Retreives the containers for the current client instance as an array of container
Retrieves the specified container
from the current client instance.
Creates a new container
with the name from argument container
. You can optionally provide metadata
on the request:
client.createContainer({
name: 'my-container',
metadata: {
brand: 'bmw',
model: '335i'
year: 2009
}}, function(err, container) {
// ...
})
Removes the container
from the storage account. If there are any files within the container
, they will be deleted before removing the container
on the client. result
will be true
on success.
Updates the metadata on the provided container
. Currently, the updateContainer
method only adds new metadata fields. If you need to remove specific metadata properties, you should call client.removeContainerMetadata(...)
.
container.metadata.color = 'red';
client.updateContainerMetadata(container, function(err, container) {
// ...
})
Removes the keys in the metadataToRemove
object from the stored container
metadata.
client.removeContainerMetadata(container, { year: false }, function(err, c) {
// ...
});
client.upload(options, function(err, result) { })
client.download(options, function(err, file) { })
client.getFile(container, file, function(err, file) { })
client.getFiles(container, function(err, file) { })
client.removeFile(container, file, function(err, result) { })
client.updateFileMetadata(container, file, function(err, file) { })
For all of the file methods, you can pass either an instance of container
or the container name as container
. For example:
client.getFile('my-container', 'my-file', function(err, file) { ... });
This call is functionally equivalent to:
var myContainer = new Container({ name: 'my-container' });
client.getFile(myContainer, 'my-file', function(err, file) { ... });
Returns a writeable stream. Upload a new file to a container
. result
will be true
on success.
To upload a file, you need to provide an options
argument:
var options = {
// required options
container: 'my-container', // this can be either the name or an instance of container
remote: 'my-file', // name of the new file
// optional, either stream or local
stream: myStream, // any instance of a readable stream
local: '/path/to/local/file' // a path to any local file
// Other optional values
metadata: { // provide any number of property/values for metadata
campaign: '2012 magazine'
},
headers: { // optionally provide raw headers to send to cloud files
'content-type': 'application/json'
}
};
You need not provide either stream
or local
. client.upload
returns a writeable stream, so you can simply pipe directly into it from your stream. For example:
var fs = require('fs'),
pkgcloud = require('pkgcloud');
var client = pkgcloud.providers.rackspace.storage.createClient({ ... });
var myFile = fs.createReadStream('/my/local/file');
myFile.pipe(client.upload({
container: 'my-container',
remote: 'my-file'
}, function(err, result) {
// handle the upload result
}));
You could also upload a local file via the local
property on options
:
var pkgcloud = require('pkgcloud');
var client = pkgcloud.providers.rackspace.storage.createClient({ ... });
client.upload({
container: 'my-container',
remote: 'my-file',
local: '/path/to/my/file'
}, function(err, result) {
// handle the upload result
});
This is functionally equivalent to piping from an fs.createReadStream
, but has a simplified calling convention.
Returns a readable stream. Download a file
from a container
.
To download a file, you need to provide an options
argument:
var options = {
// required options
container: 'my-container', // this can be either the name or an instance of container
remote: 'my-file', // name of the new file
// optional, either stream or local
stream: myStream, // any instance of a writeable stream
local: '/path/to/local/file' // the path to a local file to write to
};
You need not provide either stream
or local
. client.download
returns a readable stream, so you can simply pipe it into your writeable stream. For example:
var fs = require('fs'),
pkgcloud = require('pkgcloud');
var client = pkgcloud.providers.rackspace.storage.createClient({ ... });
var myFile = fs.createWriteStream('/my/local/file');
client.download({
container: 'my-container',
remote: 'my-file'
}, function(err, result) {
// handle the download result
})).pipe(myFile);
You could also download to a local file via the local
property on options
:
var pkgcloud = require('pkgcloud');
var client = pkgcloud.providers.rackspace.storage.createClient({ ... });
client.download({
container: 'my-container',
remote: 'my-file',
local: '/path/to/my/file'
}, function(err, result) {
// handle the download result
});
This is functionally equivalent to piping from an fs.createWriteStream
, but has a simplified calling convention.
Retrieves the specified file
details in the specified container
from the current client instance.
Retreives an array of file
for the provided container
.
Removes the provided file
from the provided container
.
Updates the file
metadata in the the provided container
.
File metadata is completely replaced with each callt o updateFileMetadata. This is different than container metadata. To delete a property, just remove it from the metadata attribute on the File
and call updateFileMetadata
.
file.metadata = {
campaign = '2011 website'
};
client.updateFileMetadata(file.container, file, function(err, file) {
// ...
});