mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 11:31:22 +00:00
56 lines
1.2 KiB
JavaScript
56 lines
1.2 KiB
JavaScript
/*global require,module,process*/
|
|
|
|
var AWS = require('aws-sdk');
|
|
var winston = require('winston');
|
|
|
|
var AmazonS3DocumentStore = function(options) {
|
|
this.expire = options.expire;
|
|
this.bucket = options.bucket;
|
|
this.client = new AWS.S3({region: options.region});
|
|
};
|
|
|
|
AmazonS3DocumentStore.prototype.get = function(key, callback, skipExpire) {
|
|
var _this = this;
|
|
|
|
var req = {
|
|
Bucket: _this.bucket,
|
|
Key: key
|
|
};
|
|
|
|
_this.client.getObject(req, function(err, data) {
|
|
if(err) {
|
|
callback(false);
|
|
}
|
|
else {
|
|
callback(data.Body.toString('utf-8'));
|
|
if (_this.expire && !skipExpire) {
|
|
winston.warn('amazon s3 store cannot set expirations on keys');
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
AmazonS3DocumentStore.prototype.set = function(key, data, callback, skipExpire) {
|
|
var _this = this;
|
|
|
|
var req = {
|
|
Bucket: _this.bucket,
|
|
Key: key,
|
|
Body: data,
|
|
ContentType: 'text/plain'
|
|
};
|
|
|
|
_this.client.putObject(req, function(err, data) {
|
|
if (err) {
|
|
callback(false);
|
|
}
|
|
else {
|
|
callback(true);
|
|
if (_this.expire && !skipExpire) {
|
|
winston.warn('amazon s3 store cannot set expirations on keys');
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
module.exports = AmazonS3DocumentStore;
|