Files
kami-parse-server/src/Adapters/Auth/spotify.js

45 lines
1.4 KiB
JavaScript
Raw Normal View History

2016-03-28 02:07:10 -04:00
// Helper functions for accessing the Spotify API.
const httpsRequest = require('./httpsRequest');
2016-03-28 02:07:10 -04:00
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;
}
2020-12-13 11:19:04 -06:00
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Spotify auth is invalid for this user.');
});
2016-03-28 02:07:10 -04:00
}
// Returns a promise that fulfills if this app id is valid.
async function validateAppId(appIds, authData) {
const access_token = authData.access_token;
if (!Array.isArray(appIds)) {
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'appIds must be an array.');
}
2016-03-28 02:07:10 -04:00
if (!appIds.length) {
2020-12-13 11:19:04 -06:00
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Spotify auth is not configured.');
2016-03-28 02:07:10 -04:00
}
const data = await request('me', access_token);
if (!data || !appIds.includes(data.id)) {
2020-12-13 11:19:04 -06:00
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Spotify auth is invalid for this user.');
}
2016-03-28 02:07:10 -04:00
}
// A promisey wrapper for Spotify API requests.
function request(path, access_token) {
return httpsRequest.get({
host: 'api.spotify.com',
path: '/v1/' + path,
headers: {
Authorization: 'Bearer ' + access_token,
},
2016-03-28 02:07:10 -04:00
});
}
module.exports = {
validateAppId: validateAppId,
validateAuthData: validateAuthData,
2016-03-28 02:07:10 -04:00
};