From 361659289610baceaff3c1d24f4cfc82f3971da7 Mon Sep 17 00:00:00 2001 From: Jordan Date: Sun, 9 Mar 2025 20:16:54 -0700 Subject: [PATCH] bring back sqlite3 and migrations. --- app/lib/db.ts | 33 ++++++++++++++++++++++++--------- app/lib/migrations.ts | 23 +++++++++++++++++++++++ 2 files changed, 47 insertions(+), 9 deletions(-) create mode 100644 app/lib/migrations.ts diff --git a/app/lib/db.ts b/app/lib/db.ts index c212c4b..57f8776 100644 --- a/app/lib/db.ts +++ b/app/lib/db.ts @@ -1,11 +1,26 @@ -import config from "@/knexfile"; -import Knex from "knex"; +import * as SQLite from "expo-sqlite"; +import { MIGRATE_UP, MIGRATE_DOWN } from "./migrations"; -export async function getDb( - environment: "development" | "staging" | "production" = "production", - automigrate = true -) { - const k = Knex(config[environment]); - if (automigrate) await k.migrate.up(); - return k; +export async function getDb() { + return await SQLite.openDatabaseAsync("translation_terrace"); } + + +export async function migrateDb(direction: "up" | "down" = "up") { + + const db = await getDb(); + + const m = direction === "up" ? MIGRATE_UP : MIGRATE_DOWN; + + for (let [migration, statements] of Object.entries(m)) { + for (let statement of statements) { + console.log(statement); + try { + const result = await db.runAsync(statement); + console.log(result); + } catch (err) { + console.error(err); + } + } + } +} \ No newline at end of file diff --git a/app/lib/migrations.ts b/app/lib/migrations.ts new file mode 100644 index 0000000..9da55d8 --- /dev/null +++ b/app/lib/migrations.ts @@ -0,0 +1,23 @@ + +export const MIGRATE_UP = { + 1: [ + `CREATE TABLE IF NOT EXISTS settings ( + host_language TEXT, + libretranslate_base_url TEXT, + ui_direction INTEGER, + whisper_model TEXT + )`, + ], + 2: [ + `CREATE TABLE IF NOT EXISTS whisper_models ( + model TEXT PRIMARY KEY, + bytes_done INTEGER, + bytes_total INTEGER + )`, + ], + }; + + export const MIGRATE_DOWN = { + 1: [`DROP TABLE IF EXISTS settings`], + 2: [`DROP TABLE IF EXISTS whisper_models`], + }; \ No newline at end of file