2016-06-15 16:09:20 -04:00
|
|
|
|
// Helper functions for accessing the twitter API.
|
2016-02-04 14:03:39 -05:00
|
|
|
|
var OAuth = require('./OAuth1Client');
|
|
|
|
|
|
var Parse = require('parse/node').Parse;
|
2016-07-23 21:02:45 +02:00
|
|
|
|
var logger = require('../logger').default;
|
2016-02-04 14:03:39 -05:00
|
|
|
|
|
|
|
|
|
|
// Returns a promise that fulfills iff this user id is valid.
|
|
|
|
|
|
function validateAuthData(authData, options) {
|
2016-07-23 21:02:45 +02:00
|
|
|
|
options = handleMultipleConfigurations(authData, options);
|
2016-02-04 14:03:39 -05:00
|
|
|
|
var client = new OAuth(options);
|
|
|
|
|
|
client.host = "api.twitter.com";
|
|
|
|
|
|
client.auth_token = authData.auth_token;
|
|
|
|
|
|
client.auth_token_secret = authData.auth_token_secret;
|
|
|
|
|
|
|
|
|
|
|
|
return client.get("/1.1/account/verify_credentials.json").then((data) => {
|
|
|
|
|
|
if (data && data.id == authData.id) {
|
|
|
|
|
|
return;
|
|
|
|
|
|
}
|
|
|
|
|
|
throw new Parse.Error(
|
|
|
|
|
|
Parse.Error.OBJECT_NOT_FOUND,
|
|
|
|
|
|
'Twitter auth is invalid for this user.');
|
|
|
|
|
|
});
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Returns a promise that fulfills iff this app id is valid.
|
|
|
|
|
|
function validateAppId() {
|
|
|
|
|
|
return Promise.resolve();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-07-23 21:02:45 +02:00
|
|
|
|
function handleMultipleConfigurations(authData, options) {
|
|
|
|
|
|
if (Array.isArray(options)) {
|
|
|
|
|
|
let consumer_key = authData.consumer_key;
|
|
|
|
|
|
if (!consumer_key) {
|
|
|
|
|
|
logger.error('Twitter Auth', 'Multiple twitter configurations are available, by no consumer_key was sent by the client.');
|
|
|
|
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Twitter auth is invalid for this user.');
|
|
|
|
|
|
}
|
|
|
|
|
|
options = options.filter((option) => {
|
|
|
|
|
|
return option.consumer_key == consumer_key;
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
if (options.length == 0) {
|
|
|
|
|
|
logger.error('Twitter Auth','Cannot find a configuration for the provided consumer_key');
|
|
|
|
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Twitter auth is invalid for this user.');
|
|
|
|
|
|
}
|
|
|
|
|
|
options = options[0];
|
|
|
|
|
|
}
|
|
|
|
|
|
return options;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
2016-02-04 14:03:39 -05:00
|
|
|
|
module.exports = {
|
2016-07-23 21:02:45 +02:00
|
|
|
|
validateAppId,
|
|
|
|
|
|
validateAuthData,
|
|
|
|
|
|
handleMultipleConfigurations
|
2016-02-04 14:03:39 -05:00
|
|
|
|
};
|