-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
75 lines (62 loc) · 2.48 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
const { google } = require("googleapis");
// Environment variables
const SPREADSHEET_ID = process.env.SPREADSHEET_ID;
const TABLE_NAME = process.env.TABLE_NAME;
// You have to base64 encode(https://www.base64encode.org) the entire service account JSON and store it in an environment variable
const base64EncodedServiceAccount = process.env.BASE64_ENCODED_SERVICE_ACCOUNT;
const decodedServiceAccount = Buffer.from(base64EncodedServiceAccount, "base64").toString("utf-8");
const credentials = JSON.parse(decodedServiceAccount);
// Function to authenticate Google Sheets API
const authenticateGoogleSheetsAPI = () => {
return new google.auth.GoogleAuth({
credentials,
scopes: ["https://www.googleapis.com/auth/spreadsheets"],
});
};
// Function to get the next row index in the sheet
const getNextRowIndex = async (sheetsAPI) => {
const response = await sheetsAPI.spreadsheets.values.get({
spreadsheetId: SPREADSHEET_ID,
range: TABLE_NAME,
});
// Return the next row index
return response.data.values ? response.data.values.length + 1 : 1;
};
// Function to append a new row to the sheet
const appendRowToSheet = async (sheetsAPI, nextRowIndex, rowData) => {
await sheetsAPI.spreadsheets.values.append({
spreadsheetId: SPREADSHEET_ID,
range: `${TABLE_NAME}!A${nextRowIndex}`,
valueInputOption: "RAW",
resource: {
values: [rowData],
},
});
};
// Lambda function handler
exports.handler = async (event, _) => {
try {
// Parse the JSON body from the request
const requestBody = JSON.parse(event.body);
// Extract values from the parsed body
const { name, email, description } = requestBody;
// Create Google Sheets API instance with authentication
const sheetsAPI = google.sheets({ version: "v4", auth: authenticateGoogleSheetsAPI() });
// Get the current values in the sheet to determine the next row index
const nextRowIndex = await getNextRowIndex(sheetsAPI);
// Prepare the new row data
const newRowData = [name, email, description, "FALSE"]; // 'FALSE' for the 'reviewed' column, so you know the lead has not yet been processed
// Append the new row to the sheet
await appendRowToSheet(sheetsAPI, nextRowIndex, newRowData);
return {
statusCode: 200,
body: JSON.stringify("Row added successfully to Google Sheets!"),
};
} catch (error) {
// Handle errors and return a 500 status code
return {
statusCode: 500,
body: JSON.stringify(`Error: ${error.message}`),
};
}
};