-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgoogle.cjs
137 lines (115 loc) · 4.49 KB
/
google.cjs
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
136
137
// Copyright 2012 Google LLC
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
'use strict';
const fs = require('fs');
const path = require('path');
const http = require('http');
const url = require('url');
const opn = require('opn');
const destroyer = require('server-destroy');
const { google } = require('googleapis');
/**
* To use OAuth2 authentication, we need access to a CLIENT_ID, CLIENT_SECRET, AND REDIRECT_URI. To get these credentials for your application, visit https://console.cloud.google.com/apis/credentials.
*/
const keyPath = path.join(__dirname, 'oauth2.keys.json');
let keys = {
redirect_uris: ['']
};
if (fs.existsSync(keyPath)) {
keys = require(keyPath).web;
}
else {
throw new Error("To use OAuth2 authentication, we need access to a CLIENT_ID, CLIENT_SECRET, AND REDIRECT_URI. To get these credentials for your application, visit https://console.cloud.google.com/apis/credentials.")
}
/**
* Create a new OAuth2 client with the configured keys.
*/
const oauth2Client = new google.auth.OAuth2(
keys.client_id,
keys.client_secret,
keys.redirect_uris[0]
);
/**
* This is one of the many ways you can configure googleapis to use authentication credentials. In this method, we're setting a global reference for all APIs. Any other API you use here, like google.drive('v3'), will now use this auth client. You can also override the auth client at the service and method call levels.
*/
google.options({
auth: oauth2Client
});
/**
* Open an http server to accept the oauth callback. In this simple example, the only request to our webserver is to /callback?code=<code>
*/
async function requestRefreshToken(scopes) {
return new Promise((resolve, reject) => {
// grab the url that will be used for authorization
const authorizeUrl = oauth2Client.generateAuthUrl({
access_type: 'offline',
scope: scopes.join(' '),
});
const server = http
.createServer(async (req, res) => {
try {
if (req.url.indexOf('/oauth2callback') > -1) {
const qs = new url.URL(req.url, 'http://localhost:3000')
.searchParams;
res.end('Authentication successful! Please return to the console.');
server.destroy();
const {
tokens
} = await oauth2Client.getToken(qs.get('code'));
oauth2Client.credentials = tokens; // eslint-disable-line require-atomic-updates
resolve(tokens.refresh_token);
}
} catch (e) {
reject(e);
}
})
.listen(3000, () => {
// open the browser to the authorize url to start the workflow
opn(authorizeUrl, {
wait: false
}).then(cp => cp.unref());
});
destroyer(server);
});
}
const scopes = [
'https://www.googleapis.com/auth/tasks'
];
async function authenticate(token) {
oauth2Client.setCredentials({
refresh_token: token
});
}
// Custom Logic
async function getMyLists() {
const service = google.tasks('v1');
const res = await service.tasklists.list();
return res;
}
async function getTasksOfList(tasklistid, maxResults, pageToken) {
const service = google.tasks('v1');
const res = await service.tasks.list({tasklist: tasklistid, showCompleted: true, showDeleted: false, showHidden: true, maxResults: maxResults, pageToken: pageToken});
return res;
}
async function moveTask(task, tasklistid, targettasklistid) {
const service = google.tasks('v1');
await service.tasks.insert({
tasklist: targettasklistid,
requestBody: task
});
await service.tasks.delete({
tasklist: tasklistid,
task: task.id
})
}
module.exports = {scopes, requestRefreshToken, authenticate, getMyLists, getTasksOfList, moveTask}