-
Notifications
You must be signed in to change notification settings - Fork 2
/
migration.js
239 lines (233 loc) · 7.86 KB
/
migration.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
const fs = require("fs");
const readline = require("readline");
const { google } = require("googleapis");
const { db } = require("./functions/util/admin");
// If modifying these scopes, delete token.json.
const SCOPES = ["https://www.googleapis.com/auth/spreadsheets.readonly"];
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
const TOKEN_PATH = "token.json";
// Load client secrets from a local file.
fs.readFile("credentials.json", (err, content) => {
if (err) {
console.error("Error loading client secret file:", err);
return;
}
// Authorize a client with credentials, then call the Google Sheets API.
authorize(JSON.parse(content), migrateDeals);
});
/**
* Create an OAuth2 client with the given credentials, and then execute the
* given callback function.
* @param {Object} credentials The authorization client credentials.
* @param {function} callback The callback to call with the authorized client.
*/
function authorize(credentials, callback) {
const { client_secret, client_id, redirect_uris } = credentials.installed;
const oAuth2Client = new google.auth.OAuth2(
client_id,
client_secret,
redirect_uris[0]
);
// Check if we have previously stored a token.
fs.readFile(TOKEN_PATH, (err, token) => {
if (err) {
return getNewToken(oAuth2Client, callback);
}
oAuth2Client.setCredentials(JSON.parse(token));
callback(oAuth2Client);
});
}
/**
* Get and store new token after prompting for user authorization, and then
* execute the given callback with the authorized OAuth2 client.
* @param {google.auth.OAuth2} oAuth2Client The OAuth2 client to get token for.
* @param {getEventsCallback} callback The callback for the authorized client.
*/
function getNewToken(oAuth2Client, callback) {
const authUrl = oAuth2Client.generateAuthUrl({
access_type: "offline",
scope: SCOPES,
});
console.log("Authorize this app by visiting this url:", authUrl);
const rl = readline.createInterface({
input: process.stdin,
output: process.stdout,
});
rl.question("Enter the code from that page here: ", (code) => {
rl.close();
oAuth2Client.getToken(code, (err, token) => {
if (err) {
console.error(
"Error while trying to retrieve access token",
err
);
return;
}
oAuth2Client.setCredentials(token);
// Store the token to disk for later program executions
fs.writeFile(TOKEN_PATH, JSON.stringify(token), (err) => {
if (err) {
console.error(err);
return;
}
console.log("Token stored to", TOKEN_PATH);
});
callback(oAuth2Client);
});
});
}
/**
* Migrates data from Google Sheets to Cloud Firestore.
* @param {google.auth.OAuth2} auth The authenticated Google OAuth client.
*/
function migrateDeals(auth) {
const sheets = google.sheets({ version: "v4", auth });
sheets.spreadsheets.values.get(
{
spreadsheetId: "",
range: "",
},
(err, res) => {
if (err) {
console.error("The API returned an error: " + err);
return;
}
const rows = res.data.values;
if (!rows.length) {
console.log("No data found.");
} else {
const headerRow = rows[0];
let columns = {
"Farm Name": undefined,
"Farm Location": undefined,
"Farm Contact Name": undefined,
"Farm Contact Phone": undefined,
"Farm Contact Email": undefined,
"Food Bank Name": undefined,
"Food Bank Location": undefined,
"Food Bank Contact Name": undefined,
"Food Bank Contact Phone": undefined,
"Food Bank Contact Email": undefined,
"Delivery Date": undefined,
"Produce Type": undefined,
"Produce Quantity": undefined,
"$ to Farm": undefined,
"$ Shipping": undefined,
"$ in Total": undefined,
};
for (let i = 0; i < headerRow.length; i++) {
if (headerRow[i] in columns) {
columns[headerRow[i]] = i;
}
}
rows.forEach((row, index) => {
if (index != 0) {
let produce = {
name: row[columns["Produce Type"]],
shippingPresetTemperature: "",
shippingMaintenanceTemperatureLow: "",
shippingMaintenanceTemperatureHigh: "",
amountMoved: "",
price: "",
pricePaid: "",
};
let farm = {
farmName: row[columns["Farm Name"]],
location: row[columns["Farm Location"]],
hours: "",
transportation: "",
contacts: [
{
contactName: row[columns["Farm Contact Name"]],
contactPhone: row[columns["Farm Contact Phone"]],
contactEmail: row[columns["Farm Contact Email"]],
},
],
loadingDock: "",
forklift: "",
farmTags: [],
};
let foodbank = {
foodbankName: row[columns["Food Bank Name"]],
location: row[columns["Food Bank Location"]],
hours: "",
contacts: [
{
contactName: row[columns["Food Bank Contact Name"]],
contactPhone: row[columns["Food Bank Contact Phone"]],
contactEmail: row[columns["Food Bank Contact Email"]],
},
],
forklift: "",
pallet: "",
loadingDock: "",
maxLoadSize: "",
refrigerationSpaceAvailable: "",
foodbankTags: [],
};
let surplus = {
available: "",
cost: "",
totalQuantityAvailable: row[columns["Produce Quantity"]],
packagingType: "",
};
let deal = {
farmContactKey: 0,
foodbankContactKey: 0,
farmlinkContactName: "",
farmlinkContactPhone: "",
farmlinkContactEmail: "",
pickupDate: "",
pickupTime: "",
deliveryDate: row[columns["Delivery Date"]],
deliveryTime: "",
bill: "",
fundsPaidToFarm: row[columns["$ to Farm"]],
fundsPaidForShipping: row[columns["$ Shipping"]],
totalSpent: row[columns["$ in Total"]],
invoice: "",
associatedPress: [],
notes: "",
};
db.collection("produce")
.add(produce)
.then((doc) => {
surplus["produceId"] = doc.id;
db.collection("farms")
.add(farm)
.then((doc) => {
surplus["originFarmId"] = doc.id;
deal["farmId"] = doc.id;
db.collection("foodbanks")
.add(foodbank)
.then((doc) => {
deal["foodbankId"] = doc.id;
db.collection("surplus")
.add(surplus)
.then((doc) => {
deal["surplusId"] = doc.id;
db.collection("deals").add(deal);
})
.catch((err) => {
console.log(err);
});
})
.catch((err) => {
console.log(err);
});
})
.catch((err) => {
console.log(err);
});
})
.catch((err) => {
console.log(err);
});
}
});
}
}
);
}