mirror of
https://github.com/OpenSignLabs/OpenSign.git
synced 2026-08-20 14:42:37 +02:00
28 lines
945 B
JavaScript
28 lines
945 B
JavaScript
import axios from 'axios';
|
|
|
|
export const SSOAuth = {
|
|
// Returns a promise that fulfills if this user mail is valid.
|
|
validateAuthData: async authData => {
|
|
try {
|
|
const response = await axios.get('https://osl-jacksonv2.vercel.app/api/oauth/userinfo', {
|
|
headers: {
|
|
Authorization: `Bearer ${authData.access_token}`,
|
|
},
|
|
});
|
|
// console.log('response.data.id ', response.data.email);
|
|
// console.log('authData.id', authData.id);
|
|
if (response.data && response.data.id && response.data.email === authData.id) {
|
|
return;
|
|
}
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'SSO auth is invalid for this user.');
|
|
} catch (error) {
|
|
throw new Parse.Error(Parse.Error.OBJECT_NOT_FOUND, 'SSO auth is invalid for this user.');
|
|
}
|
|
},
|
|
|
|
// Returns a promise that fulfills if this app id is valid.
|
|
validateAppId: () => {
|
|
return Promise.resolve();
|
|
},
|
|
};
|