forked from GitHub/dbot
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
|
var pages = function(dbot) {
|
||
|
var _ = require('underscore')._;
|
||
|
var connections = dbot.instance.connections;
|
||
|
|
||
|
return {
|
||
|
'/profile/:connection/:user': function(req, res) {
|
||
|
var connection = req.params.connection;
|
||
|
var user = dbot.cleanNick(req.params.user);
|
||
|
|
||
|
var primary = dbot.api.users.resolveUser(connection, user, true);
|
||
|
//var profile = dbot.api.profile.getProfile(primary);
|
||
|
var profile = dbot.db.profiles[connection][primary.toLowerCase()].profile;
|
||
|
var stats = dbot.api.stats.getUserChansStats(connection, primary.toLowerCase(), [
|
||
|
"lines", "words", "lincent", "wpl", "in_mentions"]
|
||
|
);
|
||
|
|
||
|
res.render('profile', {
|
||
|
'name': dbot.config.name,
|
||
|
'connection': connection,
|
||
|
'primary': primary,
|
||
|
'profile': profile,
|
||
|
'stats': stats.channels,
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
};
|
||
|
|
||
|
exports.fetch = function(dbot) {
|
||
|
return pages(dbot);
|
||
|
};
|