From a1d6b03ec98abbc073b5b73b631da6ea3eae4eb9 Mon Sep 17 00:00:00 2001 From: Julien Dessaux Date: Wed, 27 Mar 2024 15:20:14 +0100 Subject: [node] finished the great typescript rewrite --- nodejs/database/systems.js | 56 ---------------------------------------------- 1 file changed, 56 deletions(-) delete mode 100644 nodejs/database/systems.js (limited to 'nodejs/database/systems.js') diff --git a/nodejs/database/systems.js b/nodejs/database/systems.js deleted file mode 100644 index f989218..0000000 --- a/nodejs/database/systems.js +++ /dev/null @@ -1,56 +0,0 @@ -import db from './db.js'; - -const addSystemStatement = db.prepare(`INSERT INTO systems(data) VALUES (json(?));`); -const getSystemStatement = db.prepare(`SELECT data FROM systems WHERE data->>'symbol' = ?;`); -const getSystemUpdatedStatement = db.prepare(`SELECT updated FROM systems WHERE data->>'symbol' = ?;`); -const getSystemsCountStatement = db.prepare(`SELECT COUNT(data) as data FROM systems;`); -const setSystemStatement = db.prepare(`UPDATE systems SET data = json(:data), updated = :date WHERE data->>'symbol' = :symbol;`); -const setSystemWaypointsStatement = db.prepare(`UPDATE systems SET data = (SELECT json_set(data, '$.waypoints', json(:waypoints)) FROM systems WHERE data->>'symbol' = :symbol), updated = :date WHERE data->>'symbol' = :symbol;`); - -export function addSystem(data) { - return addSystemStatement.run(JSON.stringify(data)).lastInsertRowid; -} - -export function getSystem(symbol) { - const data = getSystemStatement.get(symbol); - if (data === undefined) { - return null; - } - return JSON.parse(data.data); -} - -export function getSystemsCount() { - const data = getSystemsCountStatement.get(); - if (data === undefined) { - return null; - } - return data.data; -} - -export function getSystemUpdated(symbol) { - const updated = getSystemUpdatedStatement.get(symbol); - if (updated === undefined) { - return null; - } - return updated.updated; -} - -export function setSystem(data) { - if (getSystem(data.symbol) === null) { - addSystem(data); - } else { - return setSystemStatement.run({ - data: JSON.stringify(data), - date: new Date().toISOString(), - symbol: data.symbol, - }).changes; - } -} - -export function setSystemWaypoints(symbol, waypoints) { - return setSystemWaypointsStatement.run({ - date: new Date().toISOString(), - symbol: symbol, - waypoints: JSON.stringify(waypoints), - }).changes; -} -- cgit v1.2.3