You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.3 KiB
JavaScript
44 lines
1.3 KiB
JavaScript
/*
|
|
As the log statement says, this module does nothing to persist your data
|
|
across sessions. If your process crashes for any reason, all pads will die.
|
|
|
|
This might be useful if you want to debug other parts of the codebase, if
|
|
you want to test out cryptpad without installing mongodb locally, or if
|
|
you don't want to rely on a remote db like the one at mongolab.com.
|
|
|
|
Maybe you just like the idea of a forgetful pad? To use this module, edit
|
|
config.js to include a directive `storage: './storage/amnesia'
|
|
|
|
Enjoy!
|
|
*/
|
|
|
|
module.exports.create = function(conf, cb){
|
|
console.log("Loading amnesiadb. This is a horrible idea in production,"+
|
|
" as data *will not* persist\n");
|
|
|
|
var db=[],
|
|
index=0;
|
|
cb({
|
|
message: function(channelName, content, cb){
|
|
var val = {
|
|
id:index++,
|
|
chan: channelName,
|
|
msg: content,
|
|
time: new Date().getTime(),
|
|
};
|
|
db.push(val);
|
|
cb();
|
|
},
|
|
getMessages: function(channelName, cb){
|
|
db.sort(function(a,b){
|
|
return a.id - b.id;
|
|
});
|
|
db.filter(function(val){
|
|
return val.chan == channelName;
|
|
}).forEach(function(doc){
|
|
cb(doc.msg);
|
|
});
|
|
},
|
|
});
|
|
};
|