-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate_database.js
More file actions
410 lines (393 loc) · 11.4 KB
/
create_database.js
File metadata and controls
410 lines (393 loc) · 11.4 KB
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
const sqlite3 = require("sqlite3").verbose();
const path = require("path");
const fs = require("fs");
// Database path
const DB_DIR = path.join(__dirname, "user_info");
const DB_PATH = path.join(DB_DIR, "user_data.db");
// Create directory if it doesn't exist
if (!fs.existsSync(DB_DIR)) {
fs.mkdirSync(DB_DIR, { recursive: true });
}
// Create and connect to database
const db = new sqlite3.Database(DB_PATH, (err) => {
if (err) {
console.error("Database error:", err);
return;
}
console.log("Connected to SQLite database");
// Create tables
// ...existing code...
db.serialize(() => {
db.run(`CREATE TABLE IF NOT EXISTS user_info (
id INTEGER PRIMARY KEY AUTOINCREMENT,
name TEXT NOT NULL,
start_time TEXT NOT NULL,
end_time TEXT NOT NULL,
off_days TEXT DEFAULT '[]', -- Add this line with default value
is_setup_complete BOOLEAN DEFAULT 0,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP
)`);
db.run(`CREATE TABLE IF NOT EXISTS user_tasks (
id INTEGER PRIMARY KEY AUTOINCREMENT,
user_id INTEGER NOT NULL,
task_name TEXT NOT NULL,
task_time TEXT NOT NULL,
due_date DATE NOT NULL,
priority TEXT NOT NULL,
completed BOOLEAN DEFAULT 0,
completed_at TEXT DEFAULT NULL,
created_at TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
FOREIGN KEY(user_id) REFERENCES user_info(id)
)`);
// Insert sample user
const name = "Varun";
const startTime = "09:00";
const endTime = "17:00";
const offDays = ["Saturday", "Sunday"];
db.run(
`INSERT INTO user_info (name, start_time, end_time, off_days, is_setup_complete)
VALUES (?, ?, ?, ?, ?)`,
[name, startTime, endTime, JSON.stringify(offDays), 1],
function (err) {
if (err) {
console.error("Error inserting user:", err);
return;
}
const userId = this.lastID;
console.log(`Inserted user with ID: ${userId}`);
//
const allowedDays = [1, 2, 3, 4]; // 0=Sunday, 1=Monday, ..., 6=Saturday
function dateNDays(n) {
let date = new Date();
let count = 0;
while (count < Math.abs(n)) {
date.setDate(date.getDate() + (n > 0 ? 1 : -1));
if (allowedDays.includes(date.getDay())) {
count++;
}
}
return date.toISOString().split("T")[0];
}
// Helper to get completed_at ISO string for N days ago
const completedAtNDaysAgo = (n) =>
new Date(Date.now() - n * 86400000).toISOString();
// 15 sample tasks
const tasks = [
{
name: "Design new homepage layout",
time: "09:00-11:00",
due_date: dateNDays(1),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Review team performance",
time: "14:00-15:00",
due_date: dateNDays(3),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Update documentation",
time: "12:00-13:00",
due_date: dateNDays(7),
priority: "Low",
completed: true,
completed_at: completedAtNDaysAgo(1),
},
{
name: "Implement API endpoints",
time: "10:00-12:00",
due_date: dateNDays(1),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Write unit tests",
time: "13:00-14:00",
due_date: dateNDays(2),
priority: "Medium",
completed: true,
completed_at: completedAtNDaysAgo(2),
},
{
name: "Prepare client presentation",
time: "15:00-16:00",
due_date: dateNDays(4),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Fix login bug",
time: "11:00-12:00",
due_date: dateNDays(-1),
priority: "High",
completed: true,
completed_at: completedAtNDaysAgo(1),
},
{
name: "Update team calendar",
time: "16:00-17:00",
due_date: dateNDays(5),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Research competitors",
time: "10:00-11:00",
due_date: dateNDays(6),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Organize files",
time: "09:00-10:00",
due_date: dateNDays(-2),
priority: "Medium",
completed: true,
completed_at: completedAtNDaysAgo(2),
},
{
name: "Plan marketing campaign",
time: "14:00-15:30",
due_date: dateNDays(8),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Conduct user interviews",
time: "11:00-12:30",
due_date: dateNDays(9),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Refactor codebase",
time: "13:00-15:00",
due_date: dateNDays(-3),
priority: "High",
completed: true,
completed_at: completedAtNDaysAgo(3),
},
{
name: "Update onboarding docs",
time: "15:00-16:00",
due_date: dateNDays(10),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Team retrospective",
time: "16:00-17:00",
due_date: dateNDays(0),
priority: "Medium",
completed: false,
completed_at: null,
},
// ...existing 15 tasks...
{
name: "Sprint Planning",
time: "10:00-11:00",
due_date: dateNDays(11),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Database Backup",
time: "18:00-19:00",
due_date: dateNDays(12),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Security Audit",
time: "14:00-15:00",
due_date: dateNDays(13),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "UI Review",
time: "11:00-12:00",
due_date: dateNDays(14),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Performance Testing",
time: "13:00-14:00",
due_date: dateNDays(15),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Bug Bash",
time: "15:00-16:00",
due_date: dateNDays(16),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Release Prep",
time: "09:00-10:00",
due_date: dateNDays(17),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Customer Feedback Review",
time: "10:30-11:30",
due_date: dateNDays(18),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Code Review Marathon",
time: "12:00-13:00",
due_date: dateNDays(19),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Documentation Sprint",
time: "14:00-15:00",
due_date: dateNDays(20),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "UX Testing",
time: "16:00-17:00",
due_date: dateNDays(21),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "API Refactoring",
time: "11:00-12:00",
due_date: dateNDays(22),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Mobile App Sync",
time: "13:00-14:00",
due_date: dateNDays(23),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Cloud Migration",
time: "15:00-16:00",
due_date: dateNDays(24),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "SEO Optimization",
time: "09:00-10:00",
due_date: dateNDays(25),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Partner Meeting",
time: "10:00-11:00",
due_date: dateNDays(26),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Legal Review",
time: "12:00-13:00",
due_date: dateNDays(27),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Brand Workshop",
time: "14:00-15:00",
due_date: dateNDays(28),
priority: "Low",
completed: false,
completed_at: null,
},
{
name: "Analytics Deep Dive",
time: "16:00-17:00",
due_date: dateNDays(29),
priority: "High",
completed: false,
completed_at: null,
},
{
name: "Quarterly Planning",
time: "11:00-12:00",
due_date: dateNDays(30),
priority: "Medium",
completed: false,
completed_at: null,
},
{
name: "Investor Update",
time: "13:00-14:00",
due_date: dateNDays(31),
priority: "Low",
completed: false,
completed_at: null,
},
];
const stmt = db.prepare(
`INSERT INTO user_tasks (user_id, task_name, task_time, due_date, priority, completed, completed_at)
VALUES (?, ?, ?, ?, ?, ?, ?)`
);
tasks.forEach((task) => {
stmt.run(
[
userId,
task.name,
task.time,
task.due_date,
task.priority,
task.completed ? 1 : 0,
task.completed_at,
],
(err) => {
if (err) console.error("Error inserting task:", err);
}
);
});
stmt.finalize(() => {
console.log("Added sample tasks");
db.close();
});
}
);
});
});