-
Notifications
You must be signed in to change notification settings - Fork 0
/
googleSheetsService.js
105 lines (93 loc) · 1.96 KB
/
googleSheetsService.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
// googleSheetsService.js
const { google } = require("googleapis");
const sheets = google.sheets("v4");
require("dotenv").config();
const SCOPES = ["https://www.googleapis.com/auth/spreadsheets"];
async function getAuthToken() {
const auth = new google.auth.GoogleAuth({
scopes: SCOPES,
});
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;
}
async function addValuesSpreadSheet({
spreadsheetId,
auth,
sheetName,
values,
}) {
const resource = {
values: [values], // values should be an array of arrays representing rows and columns
};
const res = await sheets.spreadsheets.values.append({
spreadsheetId,
auth,
range: sheetName,
valueInputOption: "USER_ENTERED",
resource,
});
return res;
}
async function updateValuesSpreadSheet({
spreadsheetId,
auth,
sheetName,
row,
column,
value,
}) {
const range = `${sheetName}!${column}${row}`;
const resource = {
values: [[value]],
};
const res = await sheets.spreadsheets.values.update({
spreadsheetId,
auth,
range,
valueInputOption: "USER_ENTERED",
resource,
});
return res;
}
async function updateRangeValuesSpreadSheet({
spreadsheetId,
auth,
sheetName,
range,
values,
}) {
const resource = {
values: [values],
};
const res = await sheets.spreadsheets.values.update({
spreadsheetId,
auth,
range: `${sheetName}!${range}`,
valueInputOption: "USER_ENTERED",
resource,
});
return res;
}
module.exports = {
getAuthToken,
getSpreadSheet,
getSpreadSheetValues,
addValuesSpreadSheet,
updateValuesSpreadSheet,
updateRangeValuesSpreadSheet,
};