75 lines
2.9 KiB
TypeScript
75 lines
2.9 KiB
TypeScript
/**
|
|
* @author Esad Mustafoski
|
|
* @description This file is responsible for creating the database and the tables
|
|
*/
|
|
|
|
/// <reference lib="deno.ns" />
|
|
|
|
// +++ IMPORTS ------------------------------------------------------ //
|
|
import { DB } from "https://deno.land/x/sqlite/mod.ts";
|
|
import { dirname, fromFileUrl, join } from "https://deno.land/std/path/mod.ts";
|
|
|
|
// +++ VARIABLES ---------------------------------------------------- //
|
|
const _dirname: string = dirname(fromFileUrl(import.meta.url));
|
|
const dbPath: string = join(_dirname, "../database/esp-projekt.sqlite");
|
|
const db = new DB(dbPath);
|
|
|
|
db.execute(`
|
|
CREATE TABLE IF NOT EXISTS accounts (
|
|
user_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
user_group TEXT,
|
|
bio TEXT,
|
|
displayname TEXT,
|
|
username TEXT,
|
|
user_email TEXT,
|
|
password TEXT,
|
|
firstname TEXT,
|
|
surname TEXT,
|
|
account_created TEXT,
|
|
blocked_users TEXT,
|
|
followers TEXT,
|
|
following TEXT,
|
|
contacts TEXT
|
|
)
|
|
|
|
CREATE TABLE IF NOT EXISTS posts (
|
|
posts_uuid INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
user_id INTEGER,
|
|
created_at TEXT,
|
|
post_text TEXT,
|
|
likes INTEGER,
|
|
comments INTEGER
|
|
)
|
|
|
|
CREATE TABLE IF NOT EXISTS comments (
|
|
comment_id INTEGER PRIMARY KEY AUTOINCREMENT,
|
|
post_id INTEGER,
|
|
user_id INTEGER,
|
|
created_at TEXT,
|
|
comment_text TEXT
|
|
)
|
|
`);
|
|
|
|
// Sample data generated using online generators
|
|
export function insertSampleData(): void {
|
|
db.query(`INSERT INTO accounts (user_group, bio, displayname, username, user_email, password, firstname, surname, account_created, blocked_users, followers, following, contacts) VALUES
|
|
('admin', 'Admin bio', 'Admin User', 'admin', 'admin@example.com', 'hashedpass1', 'Admin', 'User', '2024-01-01', '[]', '[]', '[]', '[]'),
|
|
('user', 'I love coding!', 'John Dev', 'johndev', 'john@example.com', 'hashedpass2', 'John', 'Smith', '2024-01-02', '[]', '[3,4]', '[1,2]', '[]'),
|
|
('user', 'Photography enthusiast', 'Alice', 'alice_photo', 'alice@example.com', 'hashedpass3', 'Alice', 'Johnson', '2024-01-03', '[5]', '[1]', '[2]', '[]')
|
|
`);
|
|
|
|
db.query(`INSERT INTO posts (user_id, created_at, post_text, likes, comments) VALUES
|
|
(1, '2024-01-15 10:00:00', 'First post about programming!', 5, 2),
|
|
(1, '2024-01-15 11:30:00', 'Check out this new feature', 10, 3),
|
|
(2, '2024-01-16 09:15:00', 'Just learned about TypeScript', 8, 1),
|
|
(3, '2024-01-16 14:20:00', 'Posted my new photo collection', 15, 4)
|
|
`);
|
|
|
|
db.query(`INSERT INTO comments (post_id, user_id, created_at, comment_text) VALUES
|
|
(1, 2, '2024-01-15 10:05:00', 'Great post!'),
|
|
(1, 3, '2024-01-15 10:10:00', 'Very informative'),
|
|
(2, 3, '2024-01-15 11:35:00', 'Nice feature'),
|
|
(3, 1, '2024-01-16 09:20:00', 'TypeScript is awesome'),
|
|
(4, 2, '2024-01-16 14:25:00', 'Beautiful photos!')
|
|
`);
|
|
}; |