Refactors facebook login into oauth generic login Adds additional oauth2 providers adds ability to pass an oAuth validator in the config Adds Twitter validation support + OAuth 1 client Support auth_token instead of access_token for twitter Improves code coverage of OAuth Adds validation of oauth provider structures Better coverage of the OAuth spec 100% coverage of OAuth1.js Adds passing auth_token_secret for Twitter auth. Refactors auth validation methods to include authData parameter - Adds ability to extens oauth validator through configuration - Adds ability to extend oauth validator through external module (file or package) - Adds more tests - Adds tests to login with custom auth provider Adds more tests for REST API fixes twitter auth_token f
52 lines
1.3 KiB
JavaScript
52 lines
1.3 KiB
JavaScript
// Helper functions for accessing the github 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('user', authData.access_token)
|
|
.then((data) => {
|
|
if (data && data.id == authData.id) {
|
|
return;
|
|
}
|
|
throw new Parse.Error(
|
|
Parse.Error.OBJECT_NOT_FOUND,
|
|
'Github auth is invalid for this user.');
|
|
});
|
|
}
|
|
|
|
// Returns a promise that fulfills iff this app id is valid.
|
|
function validateAppId() {
|
|
return Promise.resolve();
|
|
}
|
|
|
|
// A promisey wrapper for api requests
|
|
function request(path, access_token) {
|
|
return new Promise(function(resolve, reject) {
|
|
https.get({
|
|
host: 'api.github.com',
|
|
path: '/' + path,
|
|
headers: {
|
|
'Authorization': 'bearer '+access_token,
|
|
'User-Agent': 'parse-server'
|
|
}
|
|
}, 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 Github.');
|
|
});
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
validateAppId: validateAppId,
|
|
validateAuthData: validateAuthData
|
|
};
|