Compare commits
7 Commits
12e57a97f5
...
fix/db-eve
| Author | SHA1 | Date | |
|---|---|---|---|
| 16593e0281 | |||
| eea37b3df5 | |||
| 1a7de55da8 | |||
| 2c34fece2c | |||
| 4bbda5dcf8 | |||
| a57e4efd4c | |||
| 9ec83d8b87 |
39
run/db_migration_v0.1.3.ts
Normal file
39
run/db_migration_v0.1.3.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import db from "../src/sql";
|
||||
|
||||
const run_migration = db.transaction(() => {
|
||||
// SQL 1: Insert a new user
|
||||
db.run(`DELETE FROM events
|
||||
WHERE rowid NOT IN (
|
||||
SELECT MIN(rowid)
|
||||
FROM events
|
||||
GROUP BY uid
|
||||
);`);
|
||||
|
||||
// SQL 2: Update product stock
|
||||
db.run(`CREATE TABLE events_new (
|
||||
"event_uid" INTEGER PRIMARY KEY,
|
||||
"uid" TEXT NOT NULL UNIQUE,
|
||||
"title" TEXT NOT NULL,
|
||||
"date_at" DATETIME NOT NULL,
|
||||
"time_start" TEXT NOT NULL,
|
||||
"time_end" TEXT NOT NULL,
|
||||
"posted_by" TEXT NOT NULL,
|
||||
"location" TEXT NOT NULL,
|
||||
"event_type" TEXT NOT NULL,
|
||||
"link" TEXT NOT NULL,
|
||||
"description" TEXT NOT NULL,
|
||||
"timezone" TEXT NOT NULL,
|
||||
"notification" TEXT NOT NULL,
|
||||
"deleteDate" INTEGER NULL
|
||||
);`);
|
||||
|
||||
// SQL 3: Log the transaction
|
||||
db.run(`INSERT INTO events_new (event_uid, uid, title, date_at, time_start, time_end, posted_by, location, event_type, link, description, timezone, notification, deleteDate)
|
||||
SELECT event_uid, uid, title, date_at, time_start, time_end, posted_by, location, event_type, link, description, timezone, notification, deleteDate FROM events;
|
||||
`);
|
||||
db.run(`DROP TABLE events;
|
||||
ALTER TABLE events_new RENAME TO events;`);
|
||||
});
|
||||
|
||||
// Run the transaction
|
||||
run_migration();
|
||||
1
sql/events/events_create_unique_index_uid.sql
Normal file
1
sql/events/events_create_unique_index_uid.sql
Normal file
@@ -0,0 +1 @@
|
||||
CREATE UNIQUE INDEX idx_events_uid ON events(uid);
|
||||
6
sql/events/events_delete_duplicate_rows.sql
Normal file
6
sql/events/events_delete_duplicate_rows.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
DELETE FROM events
|
||||
WHERE rowid NOT IN (
|
||||
SELECT MIN(rowid)
|
||||
FROM events
|
||||
GROUP BY uid
|
||||
);
|
||||
4
sql/events/events_find_duplicate_uid.sql
Normal file
4
sql/events/events_find_duplicate_uid.sql
Normal file
@@ -0,0 +1,4 @@
|
||||
SELECT uid, COUNT(*) AS count
|
||||
FROM events
|
||||
GROUP BY uid
|
||||
HAVING COUNT(*) > 1;
|
||||
29
sql/sql_migration_v0.1.3.sql
Normal file
29
sql/sql_migration_v0.1.3.sql
Normal file
@@ -0,0 +1,29 @@
|
||||
DELETE FROM events
|
||||
WHERE rowid NOT IN (
|
||||
SELECT MIN(rowid)
|
||||
FROM events
|
||||
GROUP BY uid
|
||||
);
|
||||
|
||||
CREATE TABLE events_new (
|
||||
"event_uid" INTEGER PRIMARY KEY,
|
||||
"uid" TEXT NOT NULL UNIQUE,
|
||||
"title" TEXT NOT NULL,
|
||||
"date_at" DATETIME NOT NULL,
|
||||
"time_start" TEXT NOT NULL,
|
||||
"time_end" TEXT NOT NULL,
|
||||
"posted_by" TEXT NOT NULL,
|
||||
"location" TEXT NOT NULL,
|
||||
"event_type" TEXT NOT NULL,
|
||||
"link" TEXT NOT NULL,
|
||||
"description" TEXT NOT NULL,
|
||||
"timezone" TEXT NOT NULL,
|
||||
"notification" TEXT NOT NULL,
|
||||
"deleteDate" INTEGER NULL
|
||||
);
|
||||
|
||||
INSERT INTO events_new (event_uid, uid, title, date_at, time_start, time_end, posted_by, location, event_type, link, description, timezone, notification, deleteDate)
|
||||
SELECT event_uid, uid, title, date_at, time_start, time_end, posted_by, location, event_type, link, description, timezone, notification, deleteDate FROM events;
|
||||
|
||||
DROP TABLE events;
|
||||
ALTER TABLE events_new RENAME TO events;
|
||||
@@ -90,7 +90,14 @@ async function events_check_for_notification() {
|
||||
for ( const ev of list_of_events ) {
|
||||
console.log("loop list_of_events - ev: " + [ ev.uid, ev.title, ev.date_at, "notification: " + ev.notification ].join( ", " ) );
|
||||
console.log("loop list_of_events - ev 'title': " + ev.get_title() );
|
||||
await sendNotification( ev.get_title(), ev.get_body() );
|
||||
const notificationOptions = {
|
||||
ntfy: null,
|
||||
discord: {
|
||||
avatar_url: ( process.env.dc_avatar_url as string),
|
||||
botname: ( process.env.dc_botname as string)
|
||||
}
|
||||
};
|
||||
await sendNotification( ev.get_title(), ev.get_body(), notificationOptions );
|
||||
if ( ev.notification == "removed" ) {
|
||||
ev.set_deleted( db );
|
||||
}
|
||||
|
||||
@@ -43,8 +43,8 @@ export class Event implements TEventEntity {
|
||||
|
||||
static createTable (db: Database): void {
|
||||
const query = db.query(`CREATE TABLE IF NOT EXISTS "events" (
|
||||
"event_uid" INTEGER NOT NULL,
|
||||
"uid" TEXT NOT NULL,
|
||||
"event_uid" INTEGER PRIMARY KEY,
|
||||
"uid" TEXT NOT NULL UNIQUE,
|
||||
"title" TEXT NOT NULL,
|
||||
"date_at" DATETIME NOT NULL,
|
||||
"time_start" TEXT NOT NULL,
|
||||
@@ -56,10 +56,8 @@ export class Event implements TEventEntity {
|
||||
"description" TEXT NOT NULL,
|
||||
"timezone" TEXT NOT NULL,
|
||||
"notification" TEXT NOT NULL,
|
||||
"deleteDate" INTEGER NULL,
|
||||
PRIMARY KEY ("event_uid")
|
||||
);
|
||||
CREATE UNIQUE INDEX "sqlite_autoindex_events_1" ON "events" ("uid");`);
|
||||
"deleteDate" INTEGER NULL
|
||||
);`);
|
||||
query.run();
|
||||
}
|
||||
|
||||
@@ -220,7 +218,7 @@ export class Event implements TEventEntity {
|
||||
const body = [
|
||||
`Title: ${this.title}`,
|
||||
`Date: ${this.date_at}`,
|
||||
`Time: ${this.get_time_start()}${ TimeDiff && TimeDiff == "00:00" ? ` (Optime ${TimeDiff})` : "" }`,
|
||||
`Time: ${this.get_time_start()} (OP Time${ TimeDiff != "00:00" ? ` ${TimeDiff}` : "" })`,
|
||||
`Type: ${ TEventType[ this.event_type ] }`,
|
||||
`Location: ${this.location}`,
|
||||
`By: ${this.posted_by}`,
|
||||
|
||||
16
src/config.ts
Normal file
16
src/config.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
export const config = {
|
||||
apprise: {
|
||||
services: {
|
||||
ntfy: {
|
||||
url: `ntfys://${process.env.ntfy_username}:${process.env.ntfy_password}@${process.env.ntfy_host}/${process.env.ntfy_topic}`,
|
||||
defaults: {
|
||||
|
||||
}
|
||||
}
|
||||
},
|
||||
urls: [
|
||||
`ntfys://${process.env.ntfy_username}:${process.env.ntfy_password}@${process.env.ntfy_host}/${process.env.ntfy_topic}`,
|
||||
`discord://${process.env.dc_webhook}?avatar_url=${process.env.dc_avatar_url}&botname=${process.env.dc_botname}`
|
||||
]
|
||||
}
|
||||
} as const
|
||||
@@ -1,11 +1,27 @@
|
||||
export async function sendNotification(title: string, body: string, link?: string | null) {
|
||||
import { createQS } from "./util";
|
||||
|
||||
type TSendNotificationOptions = {
|
||||
ntfy: {
|
||||
link?: string;
|
||||
} | null,
|
||||
discord: {
|
||||
href?: string
|
||||
avatar_url: string,
|
||||
botname: string
|
||||
}
|
||||
}
|
||||
|
||||
export async function sendNotification( title: string, body: string, options: TSendNotificationOptions ) {
|
||||
console.dir({
|
||||
sendNotification: {
|
||||
title,
|
||||
body,
|
||||
link
|
||||
body
|
||||
}
|
||||
});
|
||||
const QS = {
|
||||
ntfy: options.ntfy ? createQS(options.ntfy) : null,
|
||||
discord: createQS(options.discord)
|
||||
}
|
||||
if ( ! ( process.env.notification_mock == "true" ) ) {
|
||||
const response = await fetch(`${ process.env.apprise_https == "true" ? "https" : "http"}://${process.env.apprise_host ? process.env.apprise_host : "apprise"}:${process.env.apprise_port ? String(process.env.apprise_port) : "80" }/notify`, {
|
||||
method: "POST",
|
||||
@@ -14,8 +30,8 @@ export async function sendNotification(title: string, body: string, link?: strin
|
||||
},
|
||||
body: JSON.stringify({
|
||||
urls: [
|
||||
`ntfys://${process.env.ntfy_username}:${process.env.ntfy_password}@${process.env.ntfy_host}/${process.env.ntfy_topic}${ link ? `?click=${link}`: "?click=https://77th-jsoc.com/#/events" }`,
|
||||
`discord://${process.env.dc_webhook}?avatar_url=${process.env.dc_avatar_url}&botname=${process.env.dc_botname}`
|
||||
`ntfys://${process.env.ntfy_username}:${process.env.ntfy_password}@${process.env.ntfy_host}/${process.env.ntfy_topic}${ QS.ntfy ? "?" + QS.ntfy : ""}`,
|
||||
`discord://${process.env.dc_webhook}?${QS.discord}`
|
||||
].join(","),
|
||||
title: title,
|
||||
body: body,
|
||||
|
||||
@@ -8,6 +8,8 @@ console.log(db_filepath);
|
||||
|
||||
export const db = new Database(db_filepath);
|
||||
|
||||
export default db;
|
||||
|
||||
export function init () {
|
||||
Event.createTable(db);
|
||||
}
|
||||
|
||||
@@ -89,3 +89,10 @@ export function isEuropeanDST( date: Date ) {
|
||||
// Return true if within DST period
|
||||
return date >= start && date < end;
|
||||
}
|
||||
|
||||
export function createQS (params: Record<string, string | number | boolean>): string {
|
||||
const queryString = Object.entries(params)
|
||||
.map(([key, value]) => `${encodeURIComponent(key)}=${encodeURIComponent(value)}`)
|
||||
.join("&");
|
||||
return queryString;
|
||||
}
|
||||
Reference in New Issue
Block a user