Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Retry calls to load gapi components #1668

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 42 additions & 35 deletions src/services/gapi.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,49 +13,56 @@ export const SCOPES = [

const DISCOVERY_DOCS = ['https://classroom.googleapis.com/$discovery/rest?version=v1'];

const RETRY_OPTIONS = {
retries: 16,
factor: 2,
minTimeout: 200,
maxTimeout: 4000,
};

class LoadError extends ExtendableError {}

let isGapiLoadedAndConfigured = false;

const loadGapi = once(() => promiseRetry(
async(retry) => {
try {
return await new Promise((resolve, reject) => {
loadjs('https://apis.google.com/js/client.js', {
success() {
resolve(window.gapi);
},
error(failedPaths) {
reject(new LoadError(`Failed to load ${failedPaths.join(', ')}`));
},
async function loadGapi() {
return promiseRetry(
async(retry) => {
try {
const gapi = await new Promise((resolve, reject) => {
loadjs('https://apis.google.com/js/client.js', {
success() {
resolve(window.gapi);
},
error(failedPaths) {
reject(new LoadError(`Failed to load ${failedPaths.join(', ')}`));
},
});
});

return await new Promise((resolve, reject) => {
gapi.load('client:auth2', {
callback: () => {
resolve(gapi);
},
onerror: reject,
timeout: 1000,
ontimeout: () => {
reject(new Error('Timed out'));
},
});
});
});
} catch (e) {
return retry(e);
}
},
{
retries: 16,
factor: 2,
minTimeout: 200,
maxTimeout: 4000,
},
));
} catch (e) {
Reflect.deleteProperty(window, 'gapi');
return retry(e);
}
},
RETRY_OPTIONS,
);
}

export const loadAndConfigureGapi = once(async() => {
const gapi = await loadGapi();
await new Promise((resolve, reject) => {
gapi.load('client:auth2', {
callback: () => {
resolve(gapi);
},
onerror: reject,
timeout: 5000,
ontimeout: () => {
reject(new Error('Timed out'));
},
});
});

await gapi.client.init({
apiKey: config.firebaseApiKey,
clientId: config.firebaseClientId,
Expand Down