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