Spotify authentication
This commit is contained in:
@@ -5,6 +5,7 @@ let meetup = require("./meetup");
|
|||||||
let google = require("./google");
|
let google = require("./google");
|
||||||
let github = require("./github");
|
let github = require("./github");
|
||||||
let twitter = require("./twitter");
|
let twitter = require("./twitter");
|
||||||
|
let spotify = require("./spotify");
|
||||||
|
|
||||||
let anonymous = {
|
let anonymous = {
|
||||||
validateAuthData: () => {
|
validateAuthData: () => {
|
||||||
@@ -23,6 +24,7 @@ let providers = {
|
|||||||
google,
|
google,
|
||||||
github,
|
github,
|
||||||
twitter,
|
twitter,
|
||||||
|
spotify,
|
||||||
anonymous
|
anonymous
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -33,14 +35,14 @@ module.exports = function(oauthOptions = {}, enableAnonymousUsers = true) {
|
|||||||
}
|
}
|
||||||
// To handle the test cases on configuration
|
// To handle the test cases on configuration
|
||||||
let getValidatorForProvider = function(provider) {
|
let getValidatorForProvider = function(provider) {
|
||||||
|
|
||||||
if (provider === 'anonymous' && !_enableAnonymousUsers) {
|
if (provider === 'anonymous' && !_enableAnonymousUsers) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
let defaultProvider = providers[provider];
|
let defaultProvider = providers[provider];
|
||||||
let optionalProvider = oauthOptions[provider];
|
let optionalProvider = oauthOptions[provider];
|
||||||
|
|
||||||
if (!defaultProvider && !optionalProvider) {
|
if (!defaultProvider && !optionalProvider) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
@@ -49,7 +51,7 @@ module.exports = function(oauthOptions = {}, enableAnonymousUsers = true) {
|
|||||||
if (optionalProvider) {
|
if (optionalProvider) {
|
||||||
appIds = optionalProvider.appIds;
|
appIds = optionalProvider.appIds;
|
||||||
}
|
}
|
||||||
|
|
||||||
var validateAuthData;
|
var validateAuthData;
|
||||||
var validateAppId;
|
var validateAppId;
|
||||||
|
|
||||||
@@ -72,11 +74,11 @@ module.exports = function(oauthOptions = {}, enableAnonymousUsers = true) {
|
|||||||
validateAppId = optionalProvider.validateAppId;
|
validateAppId = optionalProvider.validateAppId;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!validateAuthData || !validateAppId) {
|
if (!validateAuthData || !validateAppId) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
return function(authData) {
|
return function(authData) {
|
||||||
return validateAuthData(authData, optionalProvider).then(() => {
|
return validateAuthData(authData, optionalProvider).then(() => {
|
||||||
if (appIds) {
|
if (appIds) {
|
||||||
@@ -89,6 +91,6 @@ module.exports = function(oauthOptions = {}, enableAnonymousUsers = true) {
|
|||||||
|
|
||||||
return Object.freeze({
|
return Object.freeze({
|
||||||
getValidatorForProvider,
|
getValidatorForProvider,
|
||||||
setEnableAnonymousUsers,
|
setEnableAnonymousUsers,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|||||||
64
src/authDataManager/spotify.js
Normal file
64
src/authDataManager/spotify.js
Normal file
@@ -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
|
||||||
|
};
|
||||||
Reference in New Issue
Block a user