Catch exceptions

pull/8/head
John Crepezzi 2011-11-18 18:08:04 -05:00
parent 83b8f3f52d
commit a83ae523b4
1 changed files with 14 additions and 5 deletions

View File

@ -11,12 +11,21 @@ var FileDocumentStore = function(options) {
// Save data in a file, key as md5 - since we don't know what we could be passed here
FileDocumentStore.prototype.set = function(key, data, callback) {
var _this = this;
fs.mkdir(this.basePath, '700', function() {
fs.writeFile(_this.basePath + '/' + hashlib.md5(key), data, 'utf8', function() {
callback(true); // TODO handle errors
try {
var _this = this;
fs.mkdir(this.basePath, '700', function() {
fs.writeFile(_this.basePath + '/' + hashlib.md5(key), data, 'utf8', function(err) {
if (err) {
callback(false);
}
else {
callback(true);
}
});
});
});
} catch(err) {
callback(false);
}
};
// Get data from a file from key