Compare commits
6 Commits
a37d95709f
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| c6ec442c2b | |||
| 3e5032caf3 | |||
| 2f805c0772 | |||
| 8aef42396e | |||
| 170695f9ff | |||
| c703911f85 |
@@ -1,6 +1,6 @@
|
|||||||
services:
|
services:
|
||||||
app:
|
app:
|
||||||
image: chiko/77th_eventcalendarntfy:v0.1.4
|
image: chiko/77th_eventcalendarntfy:v0.1.5
|
||||||
build: .
|
build: .
|
||||||
volumes:
|
volumes:
|
||||||
- ./data/db:/opt/app/data/db
|
- ./data/db:/opt/app/data/db
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"version": "0.1.4",
|
"version": "0.1.5",
|
||||||
"name": "77th_eventcalendarnotification",
|
"name": "77th_eventcalendarnotification",
|
||||||
"module": "./src/app.ts",
|
"module": "./src/app.ts",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
|
|||||||
7
run/db_fix_events_deleted_set_done.ts
Normal file
7
run/db_fix_events_deleted_set_done.ts
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
import db from "../src/sql";
|
||||||
|
|
||||||
|
db.run(
|
||||||
|
`UPDATE events
|
||||||
|
SET notification = 'done'
|
||||||
|
WHERE deleteDate IS NOT NULL;`
|
||||||
|
);
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
import db from "../src/sql";
|
import db from "../src/sql";
|
||||||
|
|
||||||
const run_migration = db.transaction(() => {
|
const run_migration = db.transaction(() => {
|
||||||
// SQL 1: Insert a new user
|
// SQL 1: remove duplicates by uid
|
||||||
db.run(`DELETE FROM events
|
db.run(`DELETE FROM events
|
||||||
WHERE rowid NOT IN (
|
WHERE rowid NOT IN (
|
||||||
SELECT MIN(rowid)
|
SELECT MIN(rowid)
|
||||||
@@ -9,7 +9,7 @@ const run_migration = db.transaction(() => {
|
|||||||
GROUP BY uid
|
GROUP BY uid
|
||||||
);`);
|
);`);
|
||||||
|
|
||||||
// SQL 2: Update product stock
|
// SQL 2: create new table with unique key
|
||||||
db.run(`CREATE TABLE events_new (
|
db.run(`CREATE TABLE events_new (
|
||||||
"event_uid" INTEGER PRIMARY KEY,
|
"event_uid" INTEGER PRIMARY KEY,
|
||||||
"uid" TEXT NOT NULL UNIQUE,
|
"uid" TEXT NOT NULL UNIQUE,
|
||||||
|
|||||||
13
src/app.ts
13
src/app.ts
@@ -22,7 +22,9 @@ async function events_update_db() {
|
|||||||
console.dir( {events_fetched_list_of_uids} );
|
console.dir( {events_fetched_list_of_uids} );
|
||||||
|
|
||||||
const events_db_currentMonth = Event.get_events({month: {year: TODAY.year, month: TODAY.month}}, db);
|
const events_db_currentMonth = Event.get_events({month: {year: TODAY.year, month: TODAY.month}}, db);
|
||||||
const events_removed: Event[] = events_db_currentMonth.filter( (ev) => {
|
const events_db_nextMonth = Event.get_events({month: {year: TODAY.year, month: (TODAY.month + 1)}}, db);
|
||||||
|
const events_db = [... events_db_currentMonth, ... events_db_nextMonth];
|
||||||
|
const events_removed: Event[] = events_db.filter( (ev) => {
|
||||||
return ! events_fetched_list_of_uids.includes(ev.uid);
|
return ! events_fetched_list_of_uids.includes(ev.uid);
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -43,7 +45,7 @@ async function events_update_db() {
|
|||||||
console.log("loop ev " + ev.uid + " : " + [ ev.title, ev.date_at ].join( ", " ) );
|
console.log("loop ev " + ev.uid + " : " + [ ev.title, ev.date_at ].join( ", " ) );
|
||||||
const found = AllRelevantEvents.find(event => event.uid === ev.uid);
|
const found = AllRelevantEvents.find(event => event.uid === ev.uid);
|
||||||
if ( found ) {
|
if ( found ) {
|
||||||
console.log("loop ev " + ev.uid + " found: " + [ found.title, found.date_at ].join( ", " ) );
|
console.log("loop ev " + ev.uid + " f: " + [ found.title, found.date_at ].join( ", " ) );
|
||||||
if (
|
if (
|
||||||
found.title != ev.title ||
|
found.title != ev.title ||
|
||||||
found.description != ev.description ||
|
found.description != ev.description ||
|
||||||
@@ -56,12 +58,12 @@ async function events_update_db() {
|
|||||||
found.timezone != ev.timezone ||
|
found.timezone != ev.timezone ||
|
||||||
found.link != ev.link
|
found.link != ev.link
|
||||||
) {
|
) {
|
||||||
console.log("loop ev " + ev.uid + " different (changed): " + [ ev.title, ev.date_at ].join( ", " ) );
|
console.log("loop ev " + ev.uid + " c: " + [ ev.title, ev.date_at ].join( ", " ) );
|
||||||
const newEventToInsert: TEventEntityNew = {... ev, notification: "changed"};
|
const newEventToInsert: TEventEntityNew = {... ev, notification: "changed"};
|
||||||
eventsToInsert.push( newEventToInsert );
|
eventsToInsert.push( newEventToInsert );
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
console.log("loop ev " + ev.uid + " added (new): " + [ ev.title, ev.date_at ].join( ", " ) );
|
console.log("loop ev " + ev.uid + " n: " + [ ev.title, ev.date_at ].join( ", " ) );
|
||||||
const newEventToInsert: TEventEntityNew = {... ev, notification: "new"};
|
const newEventToInsert: TEventEntityNew = {... ev, notification: "new"};
|
||||||
eventsToInsert.push( newEventToInsert );
|
eventsToInsert.push( newEventToInsert );
|
||||||
}
|
}
|
||||||
@@ -100,10 +102,11 @@ async function events_check_for_notification() {
|
|||||||
await sendNotification( ev.get_title(), ev.get_body(), notificationOptions );
|
await sendNotification( ev.get_title(), ev.get_body(), notificationOptions );
|
||||||
if ( ev.notification == "removed" ) {
|
if ( ev.notification == "removed" ) {
|
||||||
ev.set_deleted( db );
|
ev.set_deleted( db );
|
||||||
}
|
} else {
|
||||||
ev.set_notification("done", db);
|
ev.set_notification("done", db);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
async function main ( ) {
|
async function main ( ) {
|
||||||
console.log("Excecuting main()");
|
console.log("Excecuting main()");
|
||||||
|
|||||||
@@ -19,7 +19,7 @@ export type TGetEventsOptions = {
|
|||||||
}
|
}
|
||||||
export type TEventEntity = TEvent & {
|
export type TEventEntity = TEvent & {
|
||||||
event_uid: number
|
event_uid: number
|
||||||
notification: "new" | "changed" | "removed" | "done"
|
notification: "new" | "changed" | "removed" | "done" | "deleted"
|
||||||
}
|
}
|
||||||
|
|
||||||
export type TEventEntityNew = Omit<TEventEntity, "event_uid">
|
export type TEventEntityNew = Omit<TEventEntity, "event_uid">
|
||||||
@@ -114,6 +114,7 @@ export class Event implements TEventEntity {
|
|||||||
return null;
|
return null;
|
||||||
})()
|
})()
|
||||||
const query = db.query(`SELECT * FROM events${ where ? ( " " + where ) : ""};`).as(Event);
|
const query = db.query(`SELECT * FROM events${ where ? ( " " + where ) : ""};`).as(Event);
|
||||||
|
console.dir({ db: { action: {get_events: query} } })
|
||||||
return query.all();
|
return query.all();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -184,7 +185,8 @@ export class Event implements TEventEntity {
|
|||||||
set_deleted ( db: Database ) {
|
set_deleted ( db: Database ) {
|
||||||
const query = db.prepare(
|
const query = db.prepare(
|
||||||
`UPDATE events
|
`UPDATE events
|
||||||
SET deleteDate = $deleteDate
|
SET notification = 'deleted',
|
||||||
|
deleteDate = $deleteDate
|
||||||
WHERE event_uid = $event_uid;`
|
WHERE event_uid = $event_uid;`
|
||||||
);
|
);
|
||||||
query.get({
|
query.get({
|
||||||
|
|||||||
Reference in New Issue
Block a user