-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Rajinder Ramgarhia
committed
Mar 28, 2016
1 parent
cd05e3b
commit cbf3f3c
Showing
2 changed files
with
73 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
// Helper functions for accessing the Spotify API. | ||
var https = require('https'); | ||
var Parse = require('parse/node').Parse; | ||
|
||
// Returns a promise that fulfills iff this user id is valid. | ||
function validateAuthData(authData) { | ||
return request('me', authData.access_token) | ||
.then((data) => { | ||
if (data && data.id == authData.id) { | ||
return; | ||
} | ||
throw new Parse.Error( | ||
Parse.Error.OBJECT_NOT_FOUND, | ||
'Spotify auth is invalid for this user.'); | ||
}); | ||
} | ||
|
||
// Returns a promise that fulfills if this app id is valid. | ||
function validateAppId(appIds, authData) { | ||
var access_token = authData.access_token; | ||
if (!appIds.length) { | ||
throw new Parse.Error( | ||
Parse.Error.OBJECT_NOT_FOUND, | ||
'Spotify auth is not configured.'); | ||
} | ||
return request('me', access_token) | ||
.then((data) => { | ||
if (data && appIds.indexOf(data.id) != -1) { | ||
return; | ||
} | ||
throw new Parse.Error( | ||
Parse.Error.OBJECT_NOT_FOUND, | ||
'Spotify auth is invalid for this user.'); | ||
}); | ||
} | ||
|
||
// A promisey wrapper for Spotify API requests. | ||
function request(path, access_token) { | ||
return new Promise(function(resolve, reject) { | ||
https.get({ | ||
host: 'api.spotify.com', | ||
path: '/v1/' + path, | ||
headers: { | ||
'Authorization': 'Bearer '+access_token | ||
} | ||
}, function(res) { | ||
var data = ''; | ||
res.on('data', function(chunk) { | ||
data += chunk; | ||
}); | ||
res.on('end', function() { | ||
data = JSON.parse(data); | ||
resolve(data); | ||
}); | ||
}).on('error', function(e) { | ||
reject('Failed to validate this access token with Spotify.'); | ||
}); | ||
}); | ||
} | ||
|
||
module.exports = { | ||
validateAppId: validateAppId, | ||
validateAuthData: validateAuthData | ||
}; |