mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
show title for found song
This commit is contained in:
parent
a00a5dafed
commit
ae12e319a6
@ -44,13 +44,14 @@ var spotify = function(dbot) {
|
||||
json: true
|
||||
}, function(error, response, body) {
|
||||
if (!error && response.statusCode == 200) {
|
||||
var spotify = "\u00039spotify\u000f";
|
||||
if (_.has(body, 'tracks') && body.tracks[0] && _.has(body.tracks[0], 'href')) {
|
||||
var t = body.tracks[0].href;
|
||||
t = t.replace(/:/g, '/');
|
||||
t = t.replace(/spotify/, 'http://open.spotify.com');
|
||||
event.reply(t);
|
||||
event.reply(dbot.t("found", {s: spotify, artist: _.map(body.tracks[0].artists, function(a) { return a.name }).join(', '), album: body.tracks[0].album.name, track: body.tracks[0].name, url: t}));
|
||||
} else {
|
||||
event.reply(dbot.t("not-found", {s: "\u00039spotify\u000f"}));
|
||||
event.reply(dbot.t("not-found", {s: spotify}));
|
||||
}
|
||||
}
|
||||
});
|
||||
|
@ -8,6 +8,9 @@
|
||||
"track": {
|
||||
"english": "{s} [track] {artist} - {track} (from {album})"
|
||||
},
|
||||
"found": {
|
||||
"english": "{s} [{url}] {artist} - {track} (from {album})"
|
||||
},
|
||||
"not-found": {
|
||||
"english": "{s} No results."
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user