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

72 lines
3.2 KiB
JavaScript
Raw Normal View History

2013-10-23 22:15:23 +02:00
/**
* Module Name: Last.FM
* Description: Various lastfm functionality.
*/
var _ = require('underscore')._,
request = require('request');
var lastfm = function(dbot) {
this.ApiRoot = 'http://ws.audioscrobbler.com/2.0/';
this.commands = {
'~listening': function(event) {
dbot.api.profile.getProfileByUUID(event.rUser.id, function(profile) {
2013-10-23 22:25:42 +02:00
if(profile && profile.profile,lastfm != null) {
2013-10-23 22:15:23 +02:00
profile = profile.profile;
request.get(this.ApiRoot, {
'qs': {
'user': profile.lastfm,
2013-10-23 22:25:42 +02:00
'limit': 2,
2013-10-23 22:15:23 +02:00
'nowplaying': true,
'method': 'user.getrecenttracks',
'api_key': this.config.api_key,
'format': 'json'
},
'json': true
}, function(err, res, body) {
if(_.has(body, 'error') && body.error == 6) {
event.reply('Unknown Last.FM user.');
} else if(_.has(body, 'recenttracks') && !_.isUndefined(body.recenttracks.track[0])) {
var track = body.recenttracks.track[0];
term = track.name + ' ' + track.artist['#text'],
output = '';
if(_.has(track, '@attr') && _.has(track['@attr'], 'nowplaying') && track['@attr'].nowplaying == 'true') {
output = dbot.t('now_listening', {
2013-10-24 11:37:54 +02:00
'user': event.user,
'track': track.name,
'artist': track.artist['#text']
});
} else {
output = dbot.t('last_listened', {
2013-10-24 11:37:54 +02:00
'user': event.user,
'track': track.name,
'artist': track.artist['#text']
});
}
dbot.api.youtube.search(term, function(body) {
if(_.isObject(body) && _.has(body, 'feed') && _.has(body.feed, 'entry')) {
var v = body.feed.entry[0];
link = v.link[0].href.match(dbot.modules.youtube.LinkRegex);
if(link) {
output += ' - http://youtu.be/' + link[2];
}
}
event.reply(output);
});
2013-10-23 22:15:23 +02:00
} else {
2013-10-24 11:37:54 +02:00
event.reply(dbot.t('no_listen', { 'user': event.user }));
2013-10-23 22:15:23 +02:00
}
});
} else {
event.reply('Set a lastfm username with "~set lastfm username"');
}
}.bind(this));
}
};
};
exports.fetch = function(dbot) {
return new lastfm(dbot);
};