mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
90 lines
2 KiB
JavaScript
90 lines
2 KiB
JavaScript
/* eslint-disable no-console */
|
|
import 'dotenv/config';
|
|
import { execSync } from 'node:child_process';
|
|
import chalk from 'chalk';
|
|
import semver from 'semver';
|
|
import { PrismaClient } from '../generated/prisma/client.js';
|
|
import { PrismaPg } from '@prisma/adapter-pg';
|
|
|
|
const MIN_VERSION = '9.4.0';
|
|
|
|
if (process.env.SKIP_DB_CHECK) {
|
|
console.log('Skipping database check.');
|
|
process.exit(0);
|
|
}
|
|
|
|
const url = new URL(process.env.DATABASE_URL);
|
|
|
|
const adapter = new PrismaPg(
|
|
{ connectionString: url.toString() },
|
|
{ schema: url.searchParams.get('schema') },
|
|
);
|
|
|
|
const prisma = new PrismaClient({ adapter });
|
|
|
|
function success(msg) {
|
|
console.log(chalk.greenBright(`✓ ${msg}`));
|
|
}
|
|
|
|
function error(msg) {
|
|
console.log(chalk.redBright(`✗ ${msg}`));
|
|
}
|
|
|
|
async function checkEnv() {
|
|
if (!process.env.DATABASE_URL) {
|
|
throw new Error('DATABASE_URL is not defined.');
|
|
} else {
|
|
success('DATABASE_URL is defined.');
|
|
}
|
|
|
|
if (process.env.REDIS_URL) {
|
|
success('REDIS_URL is defined.');
|
|
}
|
|
}
|
|
|
|
async function checkConnection() {
|
|
try {
|
|
await prisma.$connect();
|
|
|
|
success('Database connection successful.');
|
|
} catch (e) {
|
|
throw new Error('Unable to connect to the database: ' + e.message);
|
|
}
|
|
}
|
|
|
|
async function checkDatabaseVersion() {
|
|
const query = await prisma.$queryRaw`select version() as version`;
|
|
const version = semver.valid(semver.coerce(query[0].version));
|
|
|
|
if (semver.lt(version, MIN_VERSION)) {
|
|
throw new Error(
|
|
`Database version is not compatible. Please upgrade to ${MIN_VERSION} or greater.`,
|
|
);
|
|
}
|
|
|
|
success('Database version check successful.');
|
|
}
|
|
|
|
async function applyMigration() {
|
|
if (!process.env.SKIP_DB_MIGRATION) {
|
|
console.log(execSync('prisma migrate deploy').toString());
|
|
|
|
success('Database is up to date.');
|
|
}
|
|
}
|
|
|
|
(async () => {
|
|
let err = false;
|
|
for (const fn of [checkEnv, checkConnection, checkDatabaseVersion, applyMigration]) {
|
|
try {
|
|
await fn();
|
|
} catch (e) {
|
|
error(e.message);
|
|
err = true;
|
|
} finally {
|
|
if (err) {
|
|
process.exit(1);
|
|
}
|
|
}
|
|
}
|
|
})();
|