forked from GitHub/dbot
Vaguely functional now. Will work on more later.
This commit is contained in:
parent
3f218ebb52
commit
055ec14719
@ -1,9 +1,19 @@
|
|||||||
var logging = function(dbot) {
|
var logging = function(dbot) {
|
||||||
var logMessage = function(message) {
|
var logMessage = function(message, channel) {
|
||||||
if(!(dbot.hasOwnProperty('log'))) {
|
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 {
|
return {
|
||||||
@ -30,7 +40,7 @@ var logging = function(dbot) {
|
|||||||
'eventType': eventType,
|
'eventType': eventType,
|
||||||
'data': data
|
'data': data
|
||||||
}
|
}
|
||||||
});
|
}, data.channel);
|
||||||
},
|
},
|
||||||
'on': ['JOIN', 'PART', 'KICK', 'PRIVMSG', 'MODE']
|
'on': ['JOIN', 'PART', 'KICK', 'PRIVMSG', 'MODE']
|
||||||
};
|
};
|
||||||
|
@ -18,7 +18,12 @@ var webInterface = function(dbot) {
|
|||||||
|
|
||||||
// Displays any logs collected by the logging module
|
// Displays any logs collected by the logging module
|
||||||
app.get('/log', function(req, res) {
|
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
|
// Lists the quote categories
|
||||||
|
Loading…
Reference in New Issue
Block a user