Skip to content

Added support for streaming file down from RackSpace. #40

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 16 additions & 2 deletions lib/cloudfiles/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -309,15 +309,29 @@ Cloudfiles.prototype.getFiles = function (container, download, callback) {
});
};

Cloudfiles.prototype.getFile = function (container, filename, callback) {
//
// ### function getFile (container, filename, writableStream, callback)
// #### @container {string} Name of the container to retrieve the file from
// #### @filename {string} Name of the file to retrieve.
// #### @writableStream {Stream} If set, use this writable stream to pipe
// the content of the file instead of using file stream.
// #### @callback {function} Continuation to respond to when complete.
// Retrieve the `file` in the specified `container`.
//
Cloudfiles.prototype.getFile = function (container, filename, writableStream, callback) {
var self = this,
containerPath = path.join(this.config.cache.path, container),
cacheFile = path.join(containerPath, filename),
options;

common.statOrMkdirp(containerPath);

var lstream = fs.createWriteStream(cacheFile),
if ("function" === typeof(writableStream)) {
callback = writableStream;
writableStream = null;
}

var lstream = writableStream || fs.createWriteStream(cacheFile),
rstream,
options;

Expand Down