-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.js
97 lines (80 loc) · 2.2 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
require('dotenv').config();
const express = require('express');
const { google } = require('googleapis');
const app = express();
const spreadsheetId = process.env.DATABASE_ID;
// --- helper functions ---
// get auth token
function getAuth() {
const auth = new google.auth.GoogleAuth({
keyFile: 'credentials.json',
scopes: 'https://www.googleapis.com/auth/spreadsheets',
});
return auth;
}
// proccure googleSheet method
async function getGoogleSheet(auth) {
const client = await auth.getClient();
const googleSheet = google.sheets({ version: 'v4', auth: client });
return googleSheet;
}
// --- helper functions ---
//fetches data from the spreadsheet
app.get('/', async (req, res) => {
const auth = getAuth();
const googleSheet = await getGoogleSheet(auth);
// const getMetaData = await googleSheet.spreadsheets.get({
// auth,
// spreadsheetId,
// });
const getSheetData = await googleSheet.spreadsheets.values.get({
auth,
spreadsheetId,
range: 'Sheet1!A2:B',
});
res.send(getSheetData.data.values);
});
//posts data to cell
app.post('/post', async (req, res) => {
const auth = getAuth();
const googleSheet = await getGoogleSheet(auth);
await googleSheet.spreadsheets.values.append({
auth,
spreadsheetId,
range: 'Sheet1!A2:B',
valueInputOption: 'USER_ENTERED',
resource: {
values: [['NextJS', 'The framework of the future']],
},
});
res.send('Submitted Successfully');
});
// deletes cell data
app.post('/delete', async (req, res) => {
const auth = getAuth();
const googleSheet = await getGoogleSheet(auth);
await googleSheet.spreadsheets.values.clear({
auth,
spreadsheetId,
range: 'Sheet1!A5:B5',
});
res.send('Deleted Successfully');
});
// update cell data
app.put('/update', async (req, res) => {
const auth = getAuth();
const googleSheet = await getGoogleSheet(auth);
await googleSheet.spreadsheets.values.update({
auth,
spreadsheetId,
range: 'Sheet1!A2:B2',
valueInputOption: 'USER_ENTERED',
resource: {
values: [['Elon', 'Make a spaceship']],
},
});
res.send('Updated Successfully');
});
app.listen(3000 || process.env.PORT, () => {
console.log('Up and running!!');
});