-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
473 lines (410 loc) · 13.5 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
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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
const express = require("express");
const app = express();
const { createClient } = require("@supabase/supabase-js");
require("dotenv").config();
app.use(express.json());
const path = require("path");
const { start } = require("repl");
const { log } = require("console");
const supabase = createClient(
process.env.SUPABASE_URL,
process.env.SUPABASE_ANON_KEY
);
app.set("view engine", "ejs");
app.use(express.static(path.join(__dirname)));
const DAYS_IN_WEEK = 7;
const BLOCK_DURATION = 4;
function Proper(str) {
return str.replace(/\b\w/g, function(l) {
return l.toUpperCase();
});
}
// Function to get the start and end dates of a week
function getWeekBoundaries(weekOffset) {
const currentDate = new Date();
currentDate.setDate(currentDate.getDate() + weekOffset * DAYS_IN_WEEK);
const currentDayOfWeek = currentDate.getDay();
console.log(`currentDayOfWeek: ${currentDayOfWeek}`)
const startOfWeek = new Date(
currentDate.setDate(
currentDate.getDate() -
currentDayOfWeek +
(currentDayOfWeek === 0 ? -6 : 1)
)
);
const endOfWeek = new Date(
currentDate.setDate(currentDate.getDate() - currentDayOfWeek + DAYS_IN_WEEK)
);
return { startOfWeek, endOfWeek };
}
// Function to create the blocks for a given entry
function createBlocks(entry) {
const startDateTime = new Date(entry.start_datetime);
const endDateTime = new Date(entry.end_datetime);
const duration = (endDateTime - startDateTime) / (60 * 60 * 1000); // in hours
let blocks = [];
for (let i = 0; i < duration; i += BLOCK_DURATION) {
const blockDuration = Math.min(BLOCK_DURATION, duration - i);
blocks.push({
dayOfWeek: startDateTime.getDay(),
startHour: startDateTime.getHours() + i,
endHour: startDateTime.getHours() + i + blockDuration,
duration: blockDuration,
event_name: entry.event_name,
location: entry.location,
});
}
return blocks;
}
app.route("/schedule/:user_id/:weekOffset?").get(async (req, res) => {
let { user_id, weekOffset = 0 } = req.params;
user_id = Proper(user_id);
const currentDate = new Date();
currentDate.setDate(currentDate.getDate() + weekOffset * 7); // Apply week offset
const currentDayOfWeek = currentDate.getDay();
// Calculate start (Monday) of the week
const startOfWeek = new Date(currentDate);
startOfWeek.setDate(
startOfWeek.getDate() - currentDayOfWeek + (currentDayOfWeek === 0 ? -6 : 1)
);
// Calculate end (Sunday) of the week
const endOfWeek = new Date(startOfWeek);
endOfWeek.setDate(endOfWeek.getDate() + 6);
console.log(`startofweek: ${startOfWeek}`);
console.log(`endofweek: ${endOfWeek}`);
let { data, error } = await supabase
.from("schedules")
.select("*")
.eq("user_id", Proper(user_id));
if (error) {
return res
.status(500)
.json({ error: "Failed to fetch data from Supabase" });
}
if (!data) {
return res.json({});
}
const weekData = data.filter((entry) => {
const startDateTime = new Date(entry.start_datetime);
const isEverydayOrEveryweek = ["Everyday", "Everyweek"].includes(
entry.repeating
);
console.log(
isEverydayOrEveryweek ||
(startDateTime >= startOfWeek && startDateTime <= endOfWeek)
);
return (
isEverydayOrEveryweek ||
(startDateTime >= startOfWeek && startDateTime <= endOfWeek)
);
});
const transformedData = {
user_id,
weekOffset,
schedule: weekData.flatMap((entry) => {
const blocks = createBlocks(entry);
const startDateTime = new Date(entry.start_datetime);
if (entry.repeating === "Everyday") {
return Array(DAYS_IN_WEEK)
.fill()
.map((_, dayOfWeek) =>
blocks.map((block) => ({ ...block, dayOfWeek }))
)
.flat();
} else if (
entry.repeating === "Everyweek" &&
startDateTime.getDay() >= startOfWeek.getDay() &&
startDateTime.getDay() <= endOfWeek.getDay()
) {
return blocks;
} else {
return blocks;
}
}),
};
res.render("schedule", transformedData);
});
app.get("/data/:user_id", async (req, res) => {
const user_id = req.params.user_id;
const { start_datetime, end_datetime } = req.query;
console.log(`start_datetime: ${start_datetime}`);
console.log(`end_datetime: ${end_datetime}`);
// Build the query
let query = supabase.from("schedules").select("*").eq("user_id", Proper(user_id));
// Fetch the data from Supabase
let { data, error } = await query;
if (error) {
res.status(500).json({ error: "Failed to fetch data from Supabase" });
return;
}
if (!data) {
res.json({ message: "No events data found for this user" });
return;
}
console.log("data is", JSON.stringify(data, null, 2));
// console.log(`filterData: ${filterData(data, start_datetime, end_datetime)}`);
const filteredData = filterData(data, start_datetime, end_datetime);
const consolidatedData = consolidateData(
filteredData,
start_datetime,
end_datetime
);
const result = formatResult(consolidatedData);
// console.log(`result: ${result}`);
if (
result === "" ||
result === undefined ||
result === null ||
(Array.isArray(result) && result.length === 0)
) {
res.send(`No schedule data found for the given time frame:${user_id}}`);
return;
}
res.json(result);
});
function filterData(data, start_datetime, end_datetime) {
// Parse input strings into Date objects
let start = new Date(start_datetime);
let end = new Date(end_datetime);
// Filter data
let filteredData = data.filter((event) => {
// Parse event datetime strings into Date objects
let eventStart = new Date(event.start_datetime);
let eventEnd = new Date(event.end_datetime);
// Check if event falls within the given period
// An event is considered within the period if it starts or ends within the period
return (
(eventStart >= start && eventStart <= end) ||
(eventEnd >= start && eventEnd <= end)
);
});
console.log(`starttime: ${start}`);
console.log(`endtime: ${end}`);
console.log(`filteredData: ${JSON.stringify(filteredData)}`);
// console.log(JSON.stringify(data, null, 2));
return filteredData;
}
function consolidateData(data, start_datetime, end_datetime) {
const windowStart = start_datetime ? new Date(start_datetime) : null;
const windowEnd = end_datetime ? new Date(end_datetime) : null;
const consolidatedData = {};
data.forEach((entry) => {
const startDateTime = new Date(entry.start_datetime);
const endDateTime = new Date(entry.end_datetime);
if (entry.repeating === "Everyweek") {
while (startDateTime < windowStart) {
startDateTime.setDate(startDateTime.getDate() + 7);
endDateTime.setDate(endDateTime.getDate() + 7);
}
while (startDateTime > windowEnd) {
startDateTime.setDate(startDateTime.getDate() - 7);
endDateTime.setDate(endDateTime.getDate() - 7);
}
}
if (entry.repeating === "Everyday") {
const dateCursor = new Date(windowStart);
while (dateCursor <= windowEnd) {
const date = dateCursor.toISOString().split("T")[0]; // Get date in YYYY-MM-DD format
if (!consolidatedData[date]) {
consolidatedData[date] = [];
}
const allDay =
startDateTime.getHours() === 0 && endDateTime.getHours() === 0;
consolidatedData[date].push({
startTime: allDay ? "All day" : startDateTime.getHours(),
endTime: allDay ? "" : endDateTime.getHours(),
eventName: entry.event_name,
location: entry.location,
});
// Advance to next day
dateCursor.setDate(dateCursor.getDate() + 1);
}
// Skip the usual event addition logic for 'Everyday' events
return;
}
const date = startDateTime.toISOString().split("T")[0];
const allDay =
startDateTime.getHours() === 0 && endDateTime.getHours() === 0;
if (!consolidatedData[date]) {
consolidatedData[date] = [];
}
consolidatedData[date].push({
startTime: allDay ? "All day" : startDateTime.getHours(),
endTime: allDay ? "" : endDateTime.getHours(),
eventName: entry.event_name,
location: entry.location,
});
});
console.log(`consolidatedData: ${JSON.stringify(consolidatedData)}`);
return consolidatedData;
}
function formatResult(consolidatedData) {
return Object.entries(consolidatedData).map(([date, events]) => {
const eventSummaries = events.map((event) => {
const timeFormat =
event.startTime === "All day"
? "All day"
: `${event.startTime}-${event.endTime}`;
return `${timeFormat}: ${event.eventName} ${
event.location ? "at" + event.location : ""
}`;
});
return `${date}: ${eventSummaries.join(", ")}`;
});
}
// Register a new user
app.post("/api/users", async (req, res) => {
const { user_id, name, email, password } = req.body;
const { data, error } = await supabase
.from("users")
.insert([{ user_id, name, email, password }]);
if (error) return res.status(500).json({ error: error.message });
return res.status(200).json(data);
});
// Create a new event for a specific user
app.post("/api/users/:user_id/schedules", async (req, res) => {
const { user_id } = req.params;
const { event_name, location, start_datetime, end_datetime, repeating } =
req.body;
const { data, error } = await supabase.from("schedules").insert([
{
user_id,
event_name,
location,
start_datetime,
end_datetime,
repeating,
},
]);
if (error) return res.status(500).json({ error: error.message });
return res.status(200).json(data);
});
// Create a new event for a specific user
app.post("/api/users/:user_id/schedules", async (req, res) => {
try {
const { user_id } = req.params;
const { event_name, location, start_datetime, end_datetime, repeating } =
req.body;
const { data, error } = await supabase.from("schedules").insert([
{
user_id,
event_name,
location,
start_datetime,
end_datetime,
repeating,
},
]);
if (error) throw error;
res.status(200).json({
success: true,
message: `Event '${event_name}' was created successfully for user ${user_id}.`,
event: data,
});
} catch (error) {
res.status(500).json({ error: error.message });
}
});
app.post("/savetosupabase", async (req, res) => {
try {
const { user_id, events } = req.body;
// Check if user_id exists
if (!user_id) {
res.status(400).json({ error: "Missing user_id in the request body." });
return;
}
// Prepare data for insert operation
const insertData = events.map((event) => ({
user_id: user_id,
event_name: event.event_name,
location: event.location,
start_datetime: event.start_datetime,
end_datetime: event.end_datetime,
}));
const { data, error } = await supabase.from("schedules").insert(insertData);
if (error) throw error;
console.log(`Events were created successfully for user ${user_id}.`);
console.log(`data: ${data}`);
res.status(200).json({
success: true,
message: `Events were created successfully for user ${user_id}.`,
events: data,
});
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// Retrieve all events for a specific user
app.get("/api/users/:user_id/schedules", async (req, res) => {
try {
const { user_id } = req.params;
const { data, error } = await supabase
.from("schedules")
.select("*")
.eq("user_id", user_id);
if (error) throw error;
res.status(200).json({
success: true,
message: `Retrieved all events for user ${user_id}.`,
events: data,
});
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// Update a specific event for a specific user
app.put("/api/users/:user_id/schedules", async (req, res) => {
try {
const { user_id } = req.params;
const {
old_event_name,
old_start_datetime,
old_end_datetime,
event_name,
location,
start_datetime,
end_datetime,
repeating,
} = req.body;
const { data, error } = await supabase
.from("schedules")
.update({ event_name, location, start_datetime, end_datetime, repeating })
.eq("user_id", user_id)
.eq("event_name", old_event_name)
.eq("start_datetime", old_start_datetime)
.eq("end_datetime", old_end_datetime);
if (error) throw error;
res.status(200).json({
success: true,
message: `Event '${old_event_name}' for user ${user_id} was updated successfully.`,
event: data,
});
} catch (error) {
res.status(500).json({ error: error.message });
}
});
// Delete a specific event for a specific user
app.delete("/api/users/:user_id/schedules", async (req, res) => {
try {
const { user_id } = req.params;
const { event_name, start_datetime, end_datetime } = req.body;
const { data, error } = await supabase
.from("schedules")
.delete()
.eq("user_id", user_id)
.eq("event_name", event_name)
.eq("start_datetime", start_datetime)
.eq("end_datetime", end_datetime);
if (error) throw error;
res.status(200).json({
success: true,
message: `Event '${event_name}' for user ${user_id} was deleted successfully.`,
event: data,
});
} catch (error) {
res.status(500).json({ error: error.message });
}
});
app.listen(3000, function () {
console.log("App listening on port 3000!");
});