haste-server/lib/file_document_store.js

46 lines
1.0 KiB
JavaScript
Raw Normal View History

2011-11-18 23:54:57 +01:00
var fs = require('fs');
var winston = require('winston');
var hashlib = require('hashlib');
// For storing in files
2011-11-22 04:03:50 +01:00
// options[type] = file
// options[path] - Where to store
2011-11-18 23:54:57 +01:00
2011-11-19 00:04:24 +01:00
var FileDocumentStore = function(options) {
this.basePath = options.path || './data';
2011-11-18 23:54:57 +01:00
};
// 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) {
2011-11-19 00:08:04 +01:00
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);
}
});
2011-11-18 23:54:57 +01:00
});
2011-11-19 00:08:04 +01:00
} catch(err) {
callback(false);
}
2011-11-18 23:54:57 +01:00
};
// Get data from a file from key
FileDocumentStore.prototype.get = function(key, callback) {
fs.readFile(this.basePath + '/' + hashlib.md5(key), 'utf8', function(err, data) {
if (err) {
callback(false);
}
else {
callback(data);
}
});
};
module.exports = FileDocumentStore;