Add fs to sample
This commit is contained in:
parent
afb3b99c58
commit
9b0fe46fbd
|
@ -1,6 +1,7 @@
|
||||||
var storage = require('./lib/index');
|
var storage = require('../lib/index');
|
||||||
|
var path = require('path');
|
||||||
|
|
||||||
var client = storage.createClient({
|
var rs = storage.createClient({
|
||||||
provider: 'rackspace',
|
provider: 'rackspace',
|
||||||
username: 'strongloop',
|
username: 'strongloop',
|
||||||
apiKey: 'your-rackspace-api-key'
|
apiKey: 'your-rackspace-api-key'
|
||||||
|
@ -8,7 +9,7 @@ var client = storage.createClient({
|
||||||
|
|
||||||
// Container
|
// Container
|
||||||
|
|
||||||
client.getContainers(function (err, containers) {
|
rs.getContainers(function (err, containers) {
|
||||||
if (err) {
|
if (err) {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
return;
|
return;
|
||||||
|
@ -58,3 +59,25 @@ s3.getContainers(function (err, containers) {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
var fs = storage.createClient({
|
||||||
|
provider: 'filesystem',
|
||||||
|
root: path.join(__dirname, 'storage')
|
||||||
|
});
|
||||||
|
|
||||||
|
// Container
|
||||||
|
|
||||||
|
fs.getContainers(function (err, containers) {
|
||||||
|
if (err) {
|
||||||
|
console.error(err);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
containers.forEach(function (c) {
|
||||||
|
console.log('filesystem: ', c.name);
|
||||||
|
c.getFiles(function (err, files) {
|
||||||
|
files.forEach(function (f) {
|
||||||
|
console.log('....', f.name);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
|
@ -0,0 +1 @@
|
||||||
|
Hello....
|
|
@ -0,0 +1 @@
|
||||||
|
Hello....
|
|
@ -0,0 +1 @@
|
||||||
|
Hello....
|
|
@ -1,7 +1,9 @@
|
||||||
var base = require('pkgcloud').storage;
|
var base = require('pkgcloud').storage;
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
||||||
var Container = exports.Container = function Container(client, details) {
|
exports.Container = Container;
|
||||||
|
|
||||||
|
function Container(client, details) {
|
||||||
base.Container.call(this, client, details);
|
base.Container.call(this, client, details);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,9 @@
|
||||||
var base = require('pkgcloud').storage;
|
var base = require('pkgcloud').storage;
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
||||||
var File = exports.File = function File(client, details) {
|
exports.File = File;
|
||||||
|
|
||||||
|
function File(client, details) {
|
||||||
base.File.call(this, client, details);
|
base.File.call(this, client, details);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -55,7 +55,7 @@ FileSystemProvider.prototype.getContainers = function (cb) {
|
||||||
for (var p in stat) {
|
for (var p in stat) {
|
||||||
props[p] = stat[p];
|
props[p] = stat[p];
|
||||||
}
|
}
|
||||||
var container = new Container(this, props);
|
var container = new Container(self, props);
|
||||||
containers.push(container);
|
containers.push(container);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -140,7 +140,11 @@ FileSystemProvider.prototype.download = function (options, cb) {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
FileSystemProvider.prototype.getFiles = function (container, cb) {
|
FileSystemProvider.prototype.getFiles = function (container, download, cb) {
|
||||||
|
if (typeof download === 'function' && !(download instanceof RegExp)) {
|
||||||
|
cb = download;
|
||||||
|
download = false;
|
||||||
|
}
|
||||||
var self = this;
|
var self = this;
|
||||||
if (!validateName(container, cb)) return;
|
if (!validateName(container, cb)) return;
|
||||||
var dir = path.join(this.root, container);
|
var dir = path.join(this.root, container);
|
||||||
|
|
Loading…
Reference in New Issue