3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00
dbot/modules/report/pages.js

64 lines
1.8 KiB
JavaScript
Raw Normal View History

2013-07-06 20:45:21 +02:00
var _ = require('underscore')._;
var pages = function(dbot) {
var pages = {
'/notify': function(req, res) {
2013-07-06 20:45:21 +02:00
res.render('servers', {
'name': dbot.config.name,
'servers': _.keys(dbot.config.servers)
});
},
'/notify/:server': function(req, res) {
2013-07-06 20:45:21 +02:00
var server = req.params.server;
res.render('channels', {
'name': dbot.config.name,
'server': server,
2013-07-06 20:49:34 +02:00
'channels': _.keys(dbot.instance.connections[server].channels)
2013-07-06 20:45:21 +02:00
});
},
'/notify/:server/missing': function(req, res) {
2013-08-17 23:04:42 +02:00
var server = req.params.server,
user = req.user,
notifies = this.pending[user.id];
res.render('missing_notifies', {
'name': dbot.config.name,
'user': user.primaryNick,
'notifies': notifies
});
if(_.has(dbot.modules, 'log')) {
dbot.api.log.log(server, user.primaryNick,
'Checked their missing notifications.');
}
2013-08-17 23:04:42 +02:00
},
'/notify/:server/:channel': function(req, res) {
2013-07-06 20:45:21 +02:00
var server = req.params.server,
channel = req.params.channel,
notifies = [];
this.db.search('notifies', {
'server': server,
'channel': channel
}, function(notify) {
notifies.push(notify);
}, function(err) {
res.render('notifies', {
'name': dbot.config.name,
'server': server,
'notifies': notifies
});
});
}
};
return pages;
2013-07-06 20:45:21 +02:00
};
exports.fetch = function(dbot) {
return pages(dbot);
};