-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathindex.js
135 lines (123 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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
import { reactive, readonly } from "vue";
let Vue3GoogleOauth;
Vue3GoogleOauth = reactive({
isInit: false,
isAuthorized: false,
})
const googleAuth = (function () {
function installClient() {
const apiUrl = 'https://apis.google.com/js/api.js';
return new Promise((resolve) => {
let script = document.createElement('script');
script.src = apiUrl;
script.onreadystatechange = script.onload = function () {
if (!script.readyState || /loaded|complete/.test(script.readyState)) {
setTimeout(function () {
resolve()
}, 500)
}
}
document.getElementsByTagName('head')[0].appendChild(script);
})
}
function initClient(config) {
return new Promise((resolve, reject) => {
window.gapi.load('auth2', () => {
window.gapi.auth2.init(config)
.then(() => {
resolve(window.gapi);
}).catch((error) => {
reject(error);
})
})
})
}
function Auth() {
if (!(this instanceof Auth))
return new Auth();
this.instance = null; /* window.gapi.auth2.getAuthInstance() */
this.load = (config) => {
installClient()
.then(() => {
return initClient(config)
})
.then((gapi) => {
this.instance = gapi.auth2.getAuthInstance();
this.prompt = config.prompt;
Vue3GoogleOauth.instance = gapi.auth2.getAuthInstance();
Vue3GoogleOauth.isInit = true;
Vue3GoogleOauth.isAuthorized = this.instance.isSignedIn.get();
}).catch((error) => {
console.error(error);
})
};
this.signIn = () => {
return new Promise((resolve, reject) => {
if (!this.instance) {
reject(false)
return
}
this.instance.signIn()
.then(googleUser => {
Vue3GoogleOauth.isAuthorized = this.instance.isSignedIn.get();
resolve(googleUser);
})
.catch(error => {
reject(error);
})
})
};
this.getAuthCode = () => {
return new Promise((resolve, reject) => {
if (!this.instance) {
reject(false)
return
}
this.instance.grantOfflineAccess({ prompt: this.prompt })
.then(function (resp) {
resolve(resp.code)
})
.catch(function (error) {
reject(error)
})
})
};
this.signOut = () => {
return new Promise((resolve, reject) => {
if (!this.instance) {
reject(false)
return
}
this.instance.signOut()
.then(() => {
Vue3GoogleOauth.isAuthorized = false;
resolve(true)
})
.catch(error => {
reject(error)
})
})
};
}
return new Auth()
})();
export default {
install: (app, options) => {
/* eslint-disable */
//set config
let config = null
let defaultConfig = { scope: 'profile email', prompt: 'select_account' };
if (typeof options === 'object') {
config = Object.assign(defaultConfig, options);
if (!options.clientId) {
throw new Error('clientId is required');
}
} else {
throw new TypeError('invalid option type. Object type accepted only');
}
//Install Vue plugin
googleAuth.load(config);
app.config.globalProperties.$gAuth = googleAuth;
app.provide('Vue3GoogleOauth', readonly(Vue3GoogleOauth));
}
}