-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
116 lines (113 loc) · 3.45 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
//Source: https://github.com/nicholasglazer/useGapi
import { useEffect, useState } from 'react';
import useScript from './useScript';
export default function useGapi({
apiKey,
clientId,
discoveryDocs = '',
scope = 'https://www.googleapis.com/auth/userinfo.profile openid https://www.googleapis.com/auth/userinfo.email',
cookiePolicy = 'single_host_origin',
script_url = 'https://apis.google.com/js/api.js',
}) {
if (!clientId) throw new Error("Please provide required fields: 'clientId'");
if (!apiKey) throw new Error("Please provide required fields: 'apiKey'");
const [client, setClient] = useState({undefined});
const [isSignedIn, setIsSignedIn] = useState(false);
// Initial profile object
const [profile, setProfile] = useState({
auth: {
tokenObj: undefined,
tokenId: undefined,
accessToken: undefined,
scope: undefined,
expiresAt: undefined,
},
p: {
googleId: undefined,
email: undefined,
fullName: undefined,
givenName: undefined,
familyName: undefined,
imageUrl: undefined,
}
});
// status: "idle", "ready", "loading", "error"
const status = useScript(script_url);
if (status === "error") {
console.warn("Google script can't be loaded");
return;
}
// Create user profile with auth metadata.
const createUserProfileObject = (currentUser) => {
const user = currentUser || window.gapi.auth2.getAuthInstance().currentUser.get();
const basicProfile = user.getBasicProfile();
const auth = user.getAuthResponse();
return {
auth,
p: {
googleId: basicProfile.getId(),
email: basicProfile.getEmail(),
fullName: basicProfile.getName(),
givenName: basicProfile.getGivenName(),
familyName: basicProfile.getFamilyName(),
imageUrl: basicProfile.getImageUrl(),
}
}
}
// Update sign-in status according to listener.
const updateSigninStatus = (isUserSignedIn) => {
if(isUserSignedIn) {
setIsSignedIn(isSignedIn);
const gProfile = createUserProfileObject();
setProfile(gProfile);
}
}
// Runs every time script status changes
useEffect(() => {
// Check if google script is ready.
if (status === 'ready') {
let listenerContext;
window.gapi.load('client:auth2', () => {
window.gapi.client.init({
apiKey,
clientId,
discoveryDocs,
scope,
}).then(() => {
setClient(window.gapi.client);
const auth = window.gapi.auth2.getAuthInstance();
listenerContext = auth.isSignedIn.listen(updateSigninStatus);
// Handle the initial sign-in state.
updateSigninStatus(auth.isSignedIn.get());
})
})
return () => {
// TODO change to listenerContext?.remove
if (listenerContext.remove) listenerContext.remove();
}
}
else {
return;
}
}, [status])
// Sign in function, accepting google options
const signIn = async (options) => {
try {
const profileObject = await window.gapi.auth2.getAuthInstance().signIn(options);
return createUserProfileObject(profileObject);
} catch(err) {
return err;
}
}
// Sign out function
const signOut = async () => {
try {
await window.gapi.auth2.getAuthInstance().signOut();
window.gapi.auth2.disconnect();
return false;
} catch(err) {
return err;
}
}
return { signIn, signOut, isSignedIn, profile, client };
}