-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathseed.mjs
98 lines (78 loc) · 2.54 KB
/
seed.mjs
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
import { createClient } from "@supabase/supabase-js";
import { faker } from "@faker-js/faker";
import { getDaysInMonth } from "date-fns";
import "dotenv/config";
// Init supabase client
const supabase = createClient(
process.env.SUPABASE_URL,
process.env.SUPABASE_SERVICE_KEY,
{
auth: { persistSession: false },
},
);
// Get testuser userId
const { data: users } = await supabase.auth.admin.listUsers();
const testUser = users.users.find(
(user) => user.email === "[email protected]",
);
if (!testUser) {
console.error("Test user not found.");
process.exit(1);
}
async function deleteData() {
/*
Delete all existing data in the transactions table
*/
const { error: deleteError } = await supabase
.from("transactions")
.delete()
.eq("user_id", testUser.id);
if (deleteError) {
console.error("Error deleting existing data:", deleteError);
return;
}
console.log("All data in the DB table deleted.");
return;
}
async function seedTransactions() {
/*
Seed transactions in the database to cover 1 calender year
*/
let transactions = [];
const currentYear = new Date().getFullYear();
function generateRandomTimestamp(year, month, day) {
// Generate random hour (0-23)
const hour = Math.floor(Math.random() * 24);
// Generate random minute (0-59)
const minute = Math.floor(Math.random() * 60);
// Generate random second (0-59)
const second = Math.floor(Math.random() * 60);
// Generate random millisecond (0-999)
const millisecond = Math.floor(Math.random() * 1000);
// Create and return the Date object
console.log(new Date(year, month, day, hour, minute, second, millisecond));
return new Date(year, month, day, hour, minute, second, millisecond);
}
for (let month = 0; month < 12; month++) {
let noOfDaysInMonth = getDaysInMonth(new Date(currentYear, month));
for (let day = 1; day <= noOfDaysInMonth; day++) {
for (let i = 0; i < 30; i++) {
let transaction = {
amount: faker.finance.amount({ min: 1000, max: 20500, dec: 0 }),
payment_type: Math.random() > 0.5 ? "Card" : "Transfer",
created_at: generateRandomTimestamp(currentYear, month, day),
user_id: testUser.id,
};
transactions.push(transaction);
}
}
}
console.log("Done generating all transactions!");
console.log("Sending transactions to supabase!");
return;
}
if (process.argv[2] === "--import") {
seedTransactions().catch(console.error);
} else if (process.argv[2] === "--delete") {
deleteData();
}