44 lines
1.2 KiB
JavaScript
44 lines
1.2 KiB
JavaScript
// Helper functions for accessing the meetup API.
|
|
var Parse = require('parse/node').Parse;
|
|
const httpsRequest = require('./httpsRequest');
|
|
import Config from '../../Config';
|
|
import Deprecator from '../../Deprecator/Deprecator';
|
|
|
|
// Returns a promise that fulfills iff this user id is valid.
|
|
async function validateAuthData(authData) {
|
|
const config = Config.get(Parse.applicationId);
|
|
const meetupConfig = config.auth.meetup;
|
|
|
|
Deprecator.logRuntimeDeprecation({ usage: 'meetup adapter' });
|
|
|
|
if (!meetupConfig?.enableInsecureAuth) {
|
|
throw new Parse.Error('Meetup only works with enableInsecureAuth: true');
|
|
}
|
|
|
|
const data = await request('member/self', authData.access_token);
|
|
if (data?.id !== authData.id) {
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'Meetup 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 httpsRequest.get({
|
|
host: 'api.meetup.com',
|
|
path: '/2/' + path,
|
|
headers: {
|
|
Authorization: 'bearer ' + access_token,
|
|
},
|
|
});
|
|
}
|
|
|
|
module.exports = {
|
|
validateAppId: validateAppId,
|
|
validateAuthData: validateAuthData,
|
|
};
|