-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathauthenticator.js
69 lines (63 loc) · 2.2 KB
/
authenticator.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
let isAuthenticated = false;
function logout() {
const token = gapi.client.getToken().access_token;
if (token !== null) {
google.accounts.oauth2.revoke(token.access_token);
// remove access token from session storage
sessionStorage.removeItem("GCP_access_token");
// remove access token from gapi client
gapi.client.setToken('');
// disable browse button
$("#browse_btn").hide();
// if logged out successfully, hide logout button && show authentication button
$(".toolbar [id='logout_btn']").hide();
$("[id='upload1']").hide();
$(".toolbar [id='auth_btn']").show();
}
}
function onAuthenticated() {
// set access token in gapi client for future requests
const accessToken = getTokenFromSessionStorage();
gapi.client.setToken({ access_token: accessToken});
if (accessToken) {
isAuthenticated = true;
// alert("Authenticated with Google Drive successfully!");
// enable browse button
enableBrowseButton();
// if authenticated successfully, hide authentication button && show logout button
$(".toolbar [id='auth_btn']").hide();
$(".toolbar [id='logout_btn']").show();
$("[id='upload1']").show();
}
}
function authenticate() {
// callbackafter access token is retrieved
tokenClient.callback = async (resp) => {
if (resp.error !== undefined) {
throw resp;
}
setTokenInSessionStorage(gapi.client.getToken().access_token);
onAuthenticated();
};
// need to add a check for when the token expires
if (gapi.client.getToken() === null) {
// Prompt the user to select a Google Account and ask for consent to share their data
// when establishing a new session.
tokenClient.requestAccessToken({ prompt: "consent" });
} else {
// Skip display of account chooser and consent dialog for an existing session.
tokenClient.requestAccessToken({prompt: ''});
}
}
function setTokenInSessionStorage(token) {
sessionStorage.setItem("GCP_access_token", token);
}
function getTokenFromSessionStorage() {
return sessionStorage.getItem("GCP_access_token");
}
// retrieve access token from session storage when page is loaded
window.onload = function () {
if (getTokenFromSessionStorage()) {
onAuthenticated();
}
};