forked from Celesta-IITP/Celesta20Backend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
googlesheet.js
36 lines (31 loc) · 828 Bytes
/
googlesheet.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
const { google } = require("googleapis");
const sheets = google.sheets("v4");
const SCOPES = ["https://www.googleapis.com/auth/spreadsheets"];
async function getAuthToken() {
const auth = new google.auth.GoogleAuth({
scopes: SCOPES,
keyFile: "configs/celesta.json", // path to the goog-sheets.json key file
});
const authToken = await auth.getClient();
return authToken;
}
async function getSpreadSheet({ spreadsheetId, auth }) {
const res = await sheets.spreadsheets.get({
spreadsheetId,
auth,
});
return res;
}
async function getSpreadSheetValues({ spreadsheetId, auth, sheetName }) {
const res = await sheets.spreadsheets.values.get({
spreadsheetId,
auth,
range: sheetName,
});
return res;
}
module.exports = {
getAuthToken,
getSpreadSheet,
getSpreadSheetValues,
};