prisma / @prisma/client 6.19.2 -> 7.8.0; added @prisma/adapter-mariadb 7.8.0 and mariadb 3.5.2 (the runtime driver). Prisma 7 breaking changes handled (verified via Prisma's own tooling — the official upgrade-guide summary had hallucinated package names, so I confirmed everything against `prisma validate`/`generate` and the installed type defs): - The Rust query engine is removed; the runtime connection is now made through a driver adapter. src/config/database.ts wires PrismaMariaDb, parsing DATABASE_URL into an explicit mariadb pool config so the literal `@` in our password (which a naive connection-string parser mishandles) is correct. - datasource `url` is no longer allowed in schema.prisma -> moved to a new prisma.config.ts (schema + datasource.url + migrations.seed). Prisma 7 no longer auto-loads .env, so the config does `import "dotenv/config"`. - The deprecated package.json#prisma seed config was removed (now in the config). - seed.ts and the two maintenance scripts now use the shared adapter-wired client. The legacy `prisma-client-js` generator STILL works under v7 (generates to @prisma/client as before), so NO import-path changes were needed across the 16 @prisma/client import sites — switching to the new prisma-client/output generator is not required for us. No prisma.$use() middleware exists. Node 24 / TS 5.9 exceed the v7 minimums (20.19 / 5.4). No migrations were run (your DBs are untouched); removing datasource.url is a config change, not DDL, so this phase needs no new migration. Gates: tsc 0 | build 0 | vitest 247/247 against app_test (proves the mariadb adapter works at runtime, incl. raw SELECT...FOR UPDATE locking and Decimal/VAT) | eslint 0 errors. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
109 lines
3.1 KiB
TypeScript
109 lines
3.1 KiB
TypeScript
/**
|
|
* Migrate received invoice files from DB BLOB to NAS storage.
|
|
*
|
|
* Usage: NAS_FINANCIALS_PATH=/mnt/nas/financials npx tsx scripts/migrate-received-invoices-to-nas.ts
|
|
*/
|
|
|
|
import "../src/config/env";
|
|
import fs from "fs";
|
|
import { nasFinancialsManager } from "../src/services/nas-financials-manager";
|
|
// Shared adapter-wired client (Prisma 7 needs a driver adapter).
|
|
import prisma from "../src/config/database";
|
|
|
|
async function main() {
|
|
if (!nasFinancialsManager.isConfigured()) {
|
|
console.error(
|
|
"NAS_FINANCIALS_PATH is not configured or path does not exist.",
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
const records = await prisma.received_invoices.findMany({
|
|
where: { file_data: { not: null }, file_path: null },
|
|
select: {
|
|
id: true,
|
|
file_data: true,
|
|
file_name: true,
|
|
month: true,
|
|
year: true,
|
|
},
|
|
});
|
|
|
|
console.log(`Found ${records.length} invoices to migrate.`);
|
|
|
|
let migrated = 0;
|
|
let failed = 0;
|
|
|
|
for (const rec of records) {
|
|
if (!rec.file_data) continue;
|
|
|
|
const fileName = rec.file_name || `invoice-${rec.id}.pdf`;
|
|
const result = nasFinancialsManager.saveReceivedInvoice(
|
|
fileName,
|
|
rec.year,
|
|
rec.month,
|
|
Buffer.from(rec.file_data),
|
|
);
|
|
|
|
if ("error" in result) {
|
|
console.error(` FAIL id=${rec.id}: ${result.error}`);
|
|
failed++;
|
|
continue;
|
|
}
|
|
|
|
// Read-back verification before we null out the ONLY DB copy of the bytes.
|
|
// The manager uses writeFileSync (synchronous) and returns a relative path;
|
|
// resolve it back to disk and confirm the file exists and its size matches
|
|
// the source buffer. A 0-byte/truncated/corrupt write would otherwise lose
|
|
// the invoice permanently once file_data is set to null. If verification
|
|
// fails we KEEP file_data and report the row as failed.
|
|
const expectedSize = rec.file_data.length;
|
|
const readBack = nasFinancialsManager.readReceivedInvoice(result.filePath);
|
|
let writtenSize = -1;
|
|
if (readBack) {
|
|
writtenSize = readBack.data.length;
|
|
} else {
|
|
// Fall back to a direct stat in case readReceivedInvoice's path guard
|
|
// rejects an otherwise-valid path; either way we need a confirmed size.
|
|
try {
|
|
writtenSize = fs.statSync(
|
|
(nasFinancialsManager as unknown as { basePath: string }).basePath +
|
|
"/" +
|
|
result.filePath,
|
|
).size;
|
|
} catch {
|
|
writtenSize = -1;
|
|
}
|
|
}
|
|
|
|
if (writtenSize !== expectedSize) {
|
|
console.error(
|
|
` FAIL id=${rec.id}: read-back mismatch (expected ${expectedSize} bytes, got ${writtenSize}); keeping DB copy`,
|
|
);
|
|
failed++;
|
|
continue;
|
|
}
|
|
|
|
await prisma.received_invoices.update({
|
|
where: { id: rec.id },
|
|
data: { file_path: result.filePath, file_data: null },
|
|
});
|
|
|
|
migrated++;
|
|
if (migrated % 50 === 0) {
|
|
console.log(` Progress: ${migrated}/${records.length}...`);
|
|
}
|
|
}
|
|
|
|
console.log(
|
|
`Done. Migrated: ${migrated}, Failed: ${failed}, Total: ${records.length}`,
|
|
);
|
|
}
|
|
|
|
main()
|
|
.catch((e) => {
|
|
console.error(e);
|
|
process.exit(1);
|
|
})
|
|
.finally(() => prisma.$disconnect());
|