3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-23 20:39:25 +01:00

Merge pull request #665 from Scritches/master

Added support for the minified youtube links returned by the ~yt command to the ~syt command
This commit is contained in:
Luke Slater 2018-03-08 21:25:03 +00:00 committed by GitHub
commit dde0200032
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,14 +17,37 @@ var spotify = function(dbot) {
this.spotifyRegex = /(\b(https?:\/\/open.spotify.com\/(artist|track|album)\/\w*|spotify:(artist|track|album):\w*)\b)/ig;
this.spotifyLookup = 'http://ws.spotify.com/lookup/1/.json';
this.spotifySearch = 'https://api.spotify.com/v1/search';
this.youtubeRegex = /^http:\/\/(?:www\.)?youtube.com\/watch\?v=\w+(&\S*)?$/
this.youtubeRegex = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/;
this.spotifyText = '\u00039spotify\u000f';
this.spotifyAuthUrl = 'https://accounts.spotify.com/api/token';
// ClientID and ClientSecret come from the spotify developer center; you will need to supply your own.
this.spotifyClientID = 'e2491c50879a4d7f900dcefcc74b7c90';
this.spotifyClientSecret = 'b29da299612e4e659099ab3367ffa3f4';
this.spotifyAuth = new Buffer(this.spotifyClientID + ":" + this.spotifyClientSecret).toString("base64");
this.authenticate = function(callback) {
request({
url: this.spotifyAuthUrl,
method: "POST",
headers: { Authorization: "Basic " + this.spotifyAuth },
form: { grant_type: "client_credentials" }
}, function(error, response, body) {
if (!error && response.statusCode == 200) {
body = JSON.parse(body);
var token = body.access_token;
callback(token);
}
});
};
this.lookup = function(link, callback) {
this.authenticate(function(token) {
request({
'url': this.spotifyLookup,
'qs': { 'uri': link },
'json': true
'json': true,
'headers': { 'Authorization': "Bearer " + token }
}, function(error, response, body) {
if(!error && response.statusCode == 200) {
if(_.has(body, 'track')) {
@ -46,14 +69,17 @@ var spotify = function(dbot) {
}
}
});
}.bind(this));
};
this.api = {
'spotifySearch': function(query, callback) {
this.authenticate(function(token) {
request({
'url': this.spotifySearch,
'qs': { 'q': query, 'type': 'track' },
'json': true
'json': true,
'headers': { 'Authorization': "Bearer " + token }
}, function(error, response, body) {
if(!error && response.statusCode == 200) {
if(_.has(body, 'tracks') && body.tracks.items[0] && _.has(body.tracks.items[0], 'href')) {
@ -67,6 +93,7 @@ var spotify = function(dbot) {
}
}
});
}.bind(this));
}
};
@ -100,10 +127,10 @@ var spotify = function(dbot) {
this.api.spotifySearch(name, function(body, t) {
if(body) {
event.reply(dbot.t('found', {
'artist': _.map(body.tracks[0].artists,
'artist': _.map(body.tracks.items[0].artists,
function(a) { return a.name }).join(', '),
'album': body.tracks[0].album.name,
'track': body.tracks[0].name,
'album': body.tracks.items[0].album.name,
'track': body.tracks.items[0].name,
'url': t
}));
} else {