3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 22:39:26 +01:00

Vaguely functional now. Will work on more later.

This commit is contained in:
Psychedelic Squid 2012-03-15 06:38:20 +08:00 committed by Luke Slater
parent 3f218ebb52
commit 055ec14719
2 changed files with 20 additions and 5 deletions

View File

@ -1,9 +1,19 @@
var logging = function(dbot) {
var logMessage = function(message) {
var logMessage = function(message, channel) {
if(!(dbot.hasOwnProperty('log'))) {
dbot['log'] = [];
dbot['log'] = {};
}
dbot.log.push([Date.now(), message]);
if(channel) {
channel = channel.toLowerCase();
} else {
channel = '@'; // it's a logger message, shouldn't go in any channel. hence, invalid channel name '@'
}
if(!(dbot.log.hasOwnProperty(channel))) {
dbot.log[channel] = [];
}
dbot.log[channel].push([Date.now(), message]);
};
return {
@ -30,7 +40,7 @@ var logging = function(dbot) {
'eventType': eventType,
'data': data
}
});
}, data.channel);
},
'on': ['JOIN', 'PART', 'KICK', 'PRIVMSG', 'MODE']
};

View File

@ -18,7 +18,12 @@ var webInterface = function(dbot) {
// Displays any logs collected by the logging module
app.get('/log', function(req, res) {
res.render('log', { 'name': dbot.name, 'log': (dbot.log || []) });
res.redirect('/log/identicurse');
});
app.get('/log/:channel', function(req, res) {
var channel = '#' + req.params.channel.toLowerCase();
res.render('log', { 'name': dbot.name, 'log': (dbot.log[channel] || []), 'channel': channel });
});
// Lists the quote categories