1
0
Fork 0
mirror of https://github.com/SunRed/haste-server.git synced 2024-11-01 09:40:21 +01:00
haste-server/lib/document_stores/file.js

65 lines
1.8 KiB
JavaScript
Raw Normal View History

2020-08-29 05:29:39 +02:00
const winston = require('winston');
2020-08-26 04:54:58 +02:00
const fs = require('fs');
const crypto = require('crypto');
2011-11-18 23:54:57 +01:00
2020-08-29 00:06:49 +02:00
class FileDocumentStore {
constructor(options){
this.basePath = options.path || './data';
this.expire = options.expire;
}
//save data in a file, key as md5 - since we don't know what we can passed here
async set(key, data, skipExpire){
2020-08-28 04:39:03 +02:00
const _this = this;
2020-08-29 00:06:49 +02:00
const filePath = this.getPath(key);
if (!fs.existsSync(this.basePath)){
winston.debug('creating data storage directory', { filename: this.basePath });
await fs.promises.mkdir(this.basePath, {mode: '700'})
.catch(err => {
winston.error('error while creating dir', { path: _this.basePath, error: err });
});
}
winston.silly('set key', { type: 'file', filename: filePath });
return await fs.promises.writeFile(filePath, data, {mode: '600'})
.then(() => {
2020-08-29 00:06:49 +02:00
if (_this.expire && !skipExpire){
winston.warn('file store doesn\'t support expiration', { file: filePath });
2020-08-28 04:39:03 +02:00
}
return true;
})
.catch(err => {
2020-08-29 00:06:49 +02:00
winston.error('error while writing document to file', { file: filePath, error: err });
return false;
});
2020-08-29 00:06:49 +02:00
}
//get data from a file
async get(key, skipExpire){
2020-08-29 00:06:49 +02:00
const _this = this;
const filePath = this.getPath(key);
winston.silly('get key', { type: 'file', filename: filePath });
return await fs.promises.readFile(filePath, {encoding: 'utf8'})
.then(data => {
if (_this.expire && !skipExpire){
winston.warn('file store cannot set expirations on keys', { file: filePath });
}
return data;
})
.catch(err => {
winston.debug('error while reading document', { file: filePath, error: err });
return null;
});
2020-08-29 00:06:49 +02:00
}
//generate a md5 hash of a key
getPath(str){
return require('path').join(this.basePath, crypto.createHash('md5').update(str).digest('hex'));
}
}
2011-11-18 23:54:57 +01:00
module.exports = FileDocumentStore;