@stonyx/orm 0.2.5-alpha.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +482 -15
- package/config/environment.js +63 -6
- package/dist/aggregates.d.ts +21 -0
- package/dist/aggregates.js +93 -0
- package/dist/attr.d.ts +2 -0
- package/dist/attr.js +22 -0
- package/dist/belongs-to.d.ts +11 -0
- package/dist/belongs-to.js +59 -0
- package/dist/cli.d.ts +22 -0
- package/dist/cli.js +148 -0
- package/dist/commands.d.ts +7 -0
- package/dist/commands.js +146 -0
- package/dist/db.d.ts +21 -0
- package/dist/db.js +180 -0
- package/dist/exports/db.d.ts +7 -0
- package/{src → dist}/exports/db.js +2 -4
- package/dist/has-many.d.ts +11 -0
- package/dist/has-many.js +58 -0
- package/dist/hooks.d.ts +75 -0
- package/dist/hooks.js +110 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +34 -0
- package/dist/main.d.ts +46 -0
- package/dist/main.js +181 -0
- package/dist/manage-record.d.ts +13 -0
- package/dist/manage-record.js +123 -0
- package/dist/meta-request.d.ts +6 -0
- package/dist/meta-request.js +52 -0
- package/dist/migrate.d.ts +2 -0
- package/dist/migrate.js +57 -0
- package/dist/model-property.d.ts +9 -0
- package/dist/model-property.js +29 -0
- package/dist/model.d.ts +15 -0
- package/dist/model.js +18 -0
- package/dist/mysql/connection.d.ts +14 -0
- package/dist/mysql/connection.js +24 -0
- package/dist/mysql/migration-generator.d.ts +45 -0
- package/dist/mysql/migration-generator.js +254 -0
- package/dist/mysql/migration-runner.d.ts +12 -0
- package/dist/mysql/migration-runner.js +88 -0
- package/dist/mysql/mysql-db.d.ts +100 -0
- package/dist/mysql/mysql-db.js +425 -0
- package/dist/mysql/query-builder.d.ts +10 -0
- package/dist/mysql/query-builder.js +44 -0
- package/dist/mysql/schema-introspector.d.ts +19 -0
- package/dist/mysql/schema-introspector.js +257 -0
- package/dist/mysql/type-map.d.ts +21 -0
- package/dist/mysql/type-map.js +36 -0
- package/dist/orm-request.d.ts +38 -0
- package/dist/orm-request.js +475 -0
- package/dist/plural-registry.d.ts +4 -0
- package/dist/plural-registry.js +9 -0
- package/dist/postgres/connection.d.ts +15 -0
- package/dist/postgres/connection.js +32 -0
- package/dist/postgres/migration-generator.d.ts +45 -0
- package/dist/postgres/migration-generator.js +280 -0
- package/dist/postgres/migration-runner.d.ts +10 -0
- package/dist/postgres/migration-runner.js +87 -0
- package/dist/postgres/postgres-db.d.ts +119 -0
- package/dist/postgres/postgres-db.js +477 -0
- package/dist/postgres/query-builder.d.ts +27 -0
- package/dist/postgres/query-builder.js +98 -0
- package/dist/postgres/schema-introspector.d.ts +29 -0
- package/dist/postgres/schema-introspector.js +296 -0
- package/dist/postgres/type-map.d.ts +23 -0
- package/dist/postgres/type-map.js +56 -0
- package/dist/record.d.ts +75 -0
- package/dist/record.js +129 -0
- package/dist/relationships.d.ts +10 -0
- package/dist/relationships.js +41 -0
- package/dist/schema-helpers.d.ts +20 -0
- package/dist/schema-helpers.js +48 -0
- package/dist/serializer.d.ts +17 -0
- package/dist/serializer.js +136 -0
- package/dist/setup-rest-server.d.ts +1 -0
- package/dist/setup-rest-server.js +52 -0
- package/dist/standalone-db.d.ts +58 -0
- package/dist/standalone-db.js +142 -0
- package/dist/store.d.ts +62 -0
- package/dist/store.js +286 -0
- package/dist/timescale/query-builder.d.ts +43 -0
- package/dist/timescale/query-builder.js +115 -0
- package/dist/timescale/timescale-db.d.ts +45 -0
- package/dist/timescale/timescale-db.js +84 -0
- package/dist/transforms.d.ts +2 -0
- package/dist/transforms.js +17 -0
- package/dist/types/orm-types.d.ts +153 -0
- package/dist/types/orm-types.js +1 -0
- package/dist/utils.d.ts +7 -0
- package/dist/utils.js +17 -0
- package/dist/view-resolver.d.ts +8 -0
- package/dist/view-resolver.js +171 -0
- package/dist/view.d.ts +11 -0
- package/dist/view.js +18 -0
- package/package.json +64 -11
- package/src/aggregates.ts +109 -0
- package/src/{attr.js → attr.ts} +2 -2
- package/src/belongs-to.ts +90 -0
- package/src/cli.ts +183 -0
- package/src/commands.ts +179 -0
- package/src/db.ts +232 -0
- package/src/exports/db.ts +7 -0
- package/src/has-many.ts +92 -0
- package/src/hooks.ts +151 -0
- package/src/{index.js → index.ts} +12 -2
- package/src/main.ts +229 -0
- package/src/manage-record.ts +161 -0
- package/src/{meta-request.js → meta-request.ts} +17 -14
- package/src/migrate.ts +72 -0
- package/src/model-property.ts +35 -0
- package/src/model.ts +21 -0
- package/src/mysql/connection.ts +43 -0
- package/src/mysql/migration-generator.ts +337 -0
- package/src/mysql/migration-runner.ts +121 -0
- package/src/mysql/mysql-db.ts +543 -0
- package/src/mysql/query-builder.ts +69 -0
- package/src/mysql/schema-introspector.ts +310 -0
- package/src/mysql/type-map.ts +42 -0
- package/src/orm-request.ts +582 -0
- package/src/plural-registry.ts +12 -0
- package/src/postgres/connection.ts +48 -0
- package/src/postgres/migration-generator.ts +370 -0
- package/src/postgres/migration-runner.ts +115 -0
- package/src/postgres/postgres-db.ts +616 -0
- package/src/postgres/query-builder.ts +148 -0
- package/src/postgres/schema-introspector.ts +360 -0
- package/src/postgres/type-map.ts +61 -0
- package/src/record.ts +186 -0
- package/src/relationships.ts +54 -0
- package/src/schema-helpers.ts +59 -0
- package/src/serializer.ts +161 -0
- package/src/setup-rest-server.ts +62 -0
- package/src/standalone-db.ts +185 -0
- package/src/store.ts +373 -0
- package/src/timescale/query-builder.ts +174 -0
- package/src/timescale/timescale-db.ts +119 -0
- package/src/transforms.ts +20 -0
- package/src/types/mysql2.d.ts +49 -0
- package/src/types/orm-types.ts +158 -0
- package/src/types/pg.d.ts +32 -0
- package/src/types/stonyx-cron.d.ts +5 -0
- package/src/types/stonyx-events.d.ts +4 -0
- package/src/types/stonyx-rest-server.d.ts +16 -0
- package/src/types/stonyx-utils.d.ts +33 -0
- package/src/types/stonyx.d.ts +21 -0
- package/src/utils.ts +22 -0
- package/src/view-resolver.ts +211 -0
- package/src/view.ts +22 -0
- package/.claude/project-structure.md +0 -578
- package/.github/workflows/ci.yml +0 -36
- package/.github/workflows/publish.yml +0 -143
- package/src/belongs-to.js +0 -63
- package/src/db.js +0 -80
- package/src/has-many.js +0 -61
- package/src/main.js +0 -119
- package/src/manage-record.js +0 -103
- package/src/model-property.js +0 -29
- package/src/model.js +0 -9
- package/src/orm-request.js +0 -249
- package/src/record.js +0 -100
- package/src/relationships.js +0 -43
- package/src/serializer.js +0 -138
- package/src/setup-rest-server.js +0 -57
- package/src/store.js +0 -211
- package/src/transforms.js +0 -20
- package/stonyx-bootstrap.cjs +0 -30
|
@@ -1,37 +1,40 @@
|
|
|
1
1
|
import { Request } from '@stonyx/rest-server';
|
|
2
|
+
import ModelProperty from './model-property.js';
|
|
2
3
|
import Orm from '@stonyx/orm';
|
|
3
4
|
import config from 'stonyx/config';
|
|
4
5
|
import { dbKey } from './db.js';
|
|
5
6
|
|
|
6
7
|
export default class MetaRequest extends Request {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
handlers: Record<string, unknown>;
|
|
9
|
+
|
|
10
|
+
constructor(...args: unknown[]) {
|
|
11
|
+
super(...args);
|
|
12
|
+
|
|
10
13
|
this.handlers = {
|
|
11
14
|
get: {
|
|
12
15
|
'/meta': () => {
|
|
13
16
|
try {
|
|
14
|
-
const { models } = Orm.instance;
|
|
15
|
-
const metadata = {};
|
|
17
|
+
const { models } = Orm.instance as Orm;
|
|
18
|
+
const metadata: Record<string, Record<string, unknown>> = {};
|
|
16
19
|
|
|
17
20
|
for (const [modelName, modelClass] of Object.entries(models)) {
|
|
18
21
|
const name = modelName.slice(0, -5).toLowerCase();
|
|
19
22
|
|
|
20
23
|
if (name === dbKey) continue;
|
|
21
24
|
|
|
22
|
-
const model = new modelClass(modelName);
|
|
23
|
-
const properties = {};
|
|
25
|
+
const model = new (modelClass as new (name: string) => Record<string, unknown>)(modelName);
|
|
26
|
+
const properties: Record<string, unknown> = {};
|
|
24
27
|
|
|
25
28
|
// Get regular properties and relationships
|
|
26
29
|
for (const [key, property] of Object.entries(model)) {
|
|
27
30
|
// Skip internal properties
|
|
28
31
|
if (key.startsWith('__')) continue;
|
|
29
32
|
|
|
30
|
-
if (property
|
|
31
|
-
properties[key] = { type: property.type };
|
|
33
|
+
if (property instanceof ModelProperty) {
|
|
34
|
+
properties[key] = { type: (property as { type: string }).type };
|
|
32
35
|
} else if (typeof property === 'function') {
|
|
33
|
-
const isBelongsTo = property
|
|
34
|
-
const isHasMany = property
|
|
36
|
+
const isBelongsTo = (property as { __relationshipType?: string }).__relationshipType === 'belongsTo';
|
|
37
|
+
const isHasMany = (property as { __relationshipType?: string }).__relationshipType === 'hasMany';
|
|
35
38
|
|
|
36
39
|
if (isBelongsTo || isHasMany) properties[key] = { [isBelongsTo ? 'belongsTo' : 'hasMany']: name };
|
|
37
40
|
}
|
|
@@ -40,16 +43,16 @@ export default class MetaRequest extends Request {
|
|
|
40
43
|
metadata[name] = properties;
|
|
41
44
|
}
|
|
42
45
|
|
|
43
|
-
return metadata;
|
|
46
|
+
return metadata;
|
|
44
47
|
} catch (error) {
|
|
45
|
-
return { error: error.message };
|
|
48
|
+
return { error: error instanceof Error ? error.message : String(error) };
|
|
46
49
|
}
|
|
47
50
|
},
|
|
48
51
|
},
|
|
49
52
|
}
|
|
50
53
|
}
|
|
51
54
|
|
|
52
|
-
auth() {
|
|
55
|
+
auth(): number | undefined {
|
|
53
56
|
if (!config.orm.restServer.metaRoute) return 403;
|
|
54
57
|
}
|
|
55
58
|
}
|
package/src/migrate.ts
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
import config from 'stonyx/config';
|
|
2
|
+
import Orm from '@stonyx/orm';
|
|
3
|
+
import { createFile, createDirectory, readFile, updateFile, deleteDirectory } from '@stonyx/utils/file';
|
|
4
|
+
import { dbKey } from './db.js';
|
|
5
|
+
import path from 'path';
|
|
6
|
+
|
|
7
|
+
function getCollectionKeys(): string[] {
|
|
8
|
+
const SchemaClass = (Orm.instance as Orm).models[`${dbKey}Model`] as new () => Record<string, unknown>;
|
|
9
|
+
const instance = new SchemaClass();
|
|
10
|
+
const keys: string[] = [];
|
|
11
|
+
|
|
12
|
+
for (const key of Object.keys(instance)) {
|
|
13
|
+
if (key === '__name' || key === 'id') continue;
|
|
14
|
+
if (typeof instance[key] === 'function') keys.push(key);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
return keys;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
function getDirPath(): string {
|
|
21
|
+
const { rootPath } = config;
|
|
22
|
+
const { file, directory } = config.orm.db;
|
|
23
|
+
const dbDir = path.dirname(path.resolve(`${rootPath}/${file}`));
|
|
24
|
+
|
|
25
|
+
return path.join(dbDir, directory);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export async function fileToDirectory(): Promise<void> {
|
|
29
|
+
const { rootPath } = config;
|
|
30
|
+
const { file } = config.orm.db;
|
|
31
|
+
const dbFilePath = path.resolve(`${rootPath}/${file}`);
|
|
32
|
+
const collectionKeys = getCollectionKeys();
|
|
33
|
+
const dirPath = getDirPath();
|
|
34
|
+
|
|
35
|
+
// Read full data from db.json
|
|
36
|
+
const data = await readFile(dbFilePath, { json: true }) as Record<string, unknown[]>;
|
|
37
|
+
|
|
38
|
+
// Create directory and write each collection
|
|
39
|
+
await createDirectory(dirPath);
|
|
40
|
+
|
|
41
|
+
await Promise.all(collectionKeys.map(key =>
|
|
42
|
+
createFile(path.join(dirPath, `${key}.json`), data[key] || [], { json: true })
|
|
43
|
+
));
|
|
44
|
+
|
|
45
|
+
// Overwrite db.json with empty-array skeleton
|
|
46
|
+
const skeleton: Record<string, unknown[]> = {};
|
|
47
|
+
for (const key of collectionKeys) skeleton[key] = [];
|
|
48
|
+
|
|
49
|
+
await updateFile(dbFilePath, skeleton, { json: true });
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export async function directoryToFile(): Promise<void> {
|
|
53
|
+
const { rootPath } = config;
|
|
54
|
+
const { file } = config.orm.db;
|
|
55
|
+
const dbFilePath = path.resolve(`${rootPath}/${file}`);
|
|
56
|
+
const collectionKeys = getCollectionKeys();
|
|
57
|
+
const dirPath = getDirPath();
|
|
58
|
+
|
|
59
|
+
// Read each collection from the directory
|
|
60
|
+
const assembled: Record<string, unknown> = {};
|
|
61
|
+
|
|
62
|
+
await Promise.all(collectionKeys.map(async key => {
|
|
63
|
+
const filePath = path.join(dirPath, `${key}.json`);
|
|
64
|
+
assembled[key] = await readFile(filePath, { json: true });
|
|
65
|
+
}));
|
|
66
|
+
|
|
67
|
+
// Overwrite db.json with full assembled data
|
|
68
|
+
await updateFile(dbFilePath, assembled, { json: true });
|
|
69
|
+
|
|
70
|
+
// Remove the directory
|
|
71
|
+
await deleteDirectory(dirPath);
|
|
72
|
+
}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import Orm from '@stonyx/orm';
|
|
2
|
+
|
|
3
|
+
function validType(type: string): boolean {
|
|
4
|
+
return Object.keys(Orm.instance.transforms).includes(type);
|
|
5
|
+
}
|
|
6
|
+
|
|
7
|
+
export default class ModelProperty {
|
|
8
|
+
readonly __kind = 'ModelProperty' as const;
|
|
9
|
+
type: string;
|
|
10
|
+
private _value: unknown;
|
|
11
|
+
ignoreFirstTransform?: boolean;
|
|
12
|
+
|
|
13
|
+
constructor(type: string = 'passthrough', defaultValue?: unknown) {
|
|
14
|
+
if (!validType(type)) throw new Error(`Invalid model property type: ${type}`);
|
|
15
|
+
|
|
16
|
+
this.type = type;
|
|
17
|
+
this.value = defaultValue;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
get value(): unknown {
|
|
21
|
+
return this._value;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
set value(newValue: unknown) {
|
|
25
|
+
if (this.ignoreFirstTransform) {
|
|
26
|
+
delete this.ignoreFirstTransform;
|
|
27
|
+
this._value = newValue;
|
|
28
|
+
return;
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
if (newValue === undefined) return;
|
|
32
|
+
|
|
33
|
+
this._value = newValue === null ? null : Orm.instance.transforms[this.type](newValue);
|
|
34
|
+
}
|
|
35
|
+
}
|
package/src/model.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import attr from './attr.js';
|
|
2
|
+
|
|
3
|
+
export default class Model {
|
|
4
|
+
/**
|
|
5
|
+
* Controls whether records of this model are loaded into memory on startup.
|
|
6
|
+
*
|
|
7
|
+
* - true → loaded on boot, kept in store
|
|
8
|
+
* - false → never cached; find() always queries MySQL (default)
|
|
9
|
+
*
|
|
10
|
+
* Override in subclass: static memory = true;
|
|
11
|
+
*/
|
|
12
|
+
static memory: boolean = false;
|
|
13
|
+
static pluralName: string | undefined = undefined;
|
|
14
|
+
|
|
15
|
+
id = attr('number');
|
|
16
|
+
__name: string;
|
|
17
|
+
|
|
18
|
+
constructor(name: string) {
|
|
19
|
+
this.__name = name;
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import type { Pool } from 'mysql2/promise';
|
|
2
|
+
|
|
3
|
+
interface MysqlConfig {
|
|
4
|
+
host: string;
|
|
5
|
+
port?: number;
|
|
6
|
+
user: string;
|
|
7
|
+
password: string;
|
|
8
|
+
database: string;
|
|
9
|
+
connectionLimit?: number;
|
|
10
|
+
migrationsTable?: string;
|
|
11
|
+
migrationsDir?: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
let pool: Pool | null = null;
|
|
15
|
+
|
|
16
|
+
export async function getPool(mysqlConfig: MysqlConfig): Promise<Pool> {
|
|
17
|
+
if (pool) return pool;
|
|
18
|
+
|
|
19
|
+
const mysql = await import('mysql2/promise');
|
|
20
|
+
|
|
21
|
+
pool = mysql.createPool({
|
|
22
|
+
host: mysqlConfig.host,
|
|
23
|
+
port: mysqlConfig.port,
|
|
24
|
+
user: mysqlConfig.user,
|
|
25
|
+
password: mysqlConfig.password,
|
|
26
|
+
database: mysqlConfig.database,
|
|
27
|
+
connectionLimit: mysqlConfig.connectionLimit,
|
|
28
|
+
waitForConnections: true,
|
|
29
|
+
enableKeepAlive: true,
|
|
30
|
+
keepAliveInitialDelay: 10000,
|
|
31
|
+
});
|
|
32
|
+
|
|
33
|
+
return pool;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export async function closePool(): Promise<void> {
|
|
37
|
+
if (!pool) return;
|
|
38
|
+
|
|
39
|
+
await pool.end();
|
|
40
|
+
pool = null;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export type { MysqlConfig };
|
|
@@ -0,0 +1,337 @@
|
|
|
1
|
+
import { introspectModels, introspectViews, buildTableDDL, buildViewDDL, schemasToSnapshot, viewSchemasToSnapshot, getTopologicalOrder } from './schema-introspector.js';
|
|
2
|
+
import type { ModelSchema, SnapshotEntry, ViewSnapshotEntry, ForeignKeyDef } from './schema-introspector.js';
|
|
3
|
+
import { readFile, createFile, createDirectory, fileExists } from '@stonyx/utils/file';
|
|
4
|
+
import path from 'path';
|
|
5
|
+
import config from 'stonyx/config';
|
|
6
|
+
import log from 'stonyx/log';
|
|
7
|
+
|
|
8
|
+
interface ColumnChange {
|
|
9
|
+
model: string;
|
|
10
|
+
column: string;
|
|
11
|
+
type: string;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
interface ColumnTypeChange {
|
|
15
|
+
model: string;
|
|
16
|
+
column: string;
|
|
17
|
+
from: string;
|
|
18
|
+
to: string;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
interface ForeignKeyChange {
|
|
22
|
+
model: string;
|
|
23
|
+
column: string;
|
|
24
|
+
references: ForeignKeyDef;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
interface SnapshotDiff {
|
|
28
|
+
hasChanges: boolean;
|
|
29
|
+
addedModels: string[];
|
|
30
|
+
removedModels: string[];
|
|
31
|
+
addedColumns: ColumnChange[];
|
|
32
|
+
removedColumns: ColumnChange[];
|
|
33
|
+
changedColumns: ColumnTypeChange[];
|
|
34
|
+
addedForeignKeys: ForeignKeyChange[];
|
|
35
|
+
removedForeignKeys: ForeignKeyChange[];
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
interface ViewDiff {
|
|
39
|
+
hasChanges: boolean;
|
|
40
|
+
addedViews: string[];
|
|
41
|
+
removedViews: string[];
|
|
42
|
+
changedViews: string[];
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
interface GeneratedMigration {
|
|
46
|
+
filename: string;
|
|
47
|
+
content: string;
|
|
48
|
+
snapshot: Record<string, SnapshotEntry | ViewSnapshotEntry>;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
type Snapshot = Record<string, SnapshotEntry & { isView?: boolean; viewName?: string; viewQuery?: string; source?: string }>;
|
|
52
|
+
|
|
53
|
+
export async function generateMigration(description: string = 'migration'): Promise<GeneratedMigration | null> {
|
|
54
|
+
const mysqlConfig = config.orm.mysql;
|
|
55
|
+
if (!mysqlConfig) throw new Error('MySQL configuration (config.orm.mysql) is required for migration generation');
|
|
56
|
+
const { migrationsDir } = mysqlConfig;
|
|
57
|
+
if (!migrationsDir) throw new Error('MySQL migrationsDir is required in config');
|
|
58
|
+
const rootPath = config.rootPath;
|
|
59
|
+
const migrationsPath = path.resolve(rootPath, migrationsDir);
|
|
60
|
+
|
|
61
|
+
await createDirectory(migrationsPath);
|
|
62
|
+
|
|
63
|
+
const schemas = introspectModels();
|
|
64
|
+
const currentSnapshot = schemasToSnapshot(schemas);
|
|
65
|
+
const previousSnapshot = await loadLatestSnapshot(migrationsPath) as Snapshot;
|
|
66
|
+
const diff = diffSnapshots(previousSnapshot, currentSnapshot);
|
|
67
|
+
|
|
68
|
+
// Don't return early — check view changes too before deciding
|
|
69
|
+
if (!diff.hasChanges) {
|
|
70
|
+
// Check if there are view changes before returning null
|
|
71
|
+
const viewSchemasPrelim = introspectViews();
|
|
72
|
+
const currentViewSnapshotPrelim = viewSchemasToSnapshot(viewSchemasPrelim);
|
|
73
|
+
const previousViewSnapshotPrelim = extractViewsFromSnapshot(previousSnapshot);
|
|
74
|
+
const viewDiffPrelim = diffViewSnapshots(previousViewSnapshotPrelim, currentViewSnapshotPrelim);
|
|
75
|
+
|
|
76
|
+
if (!viewDiffPrelim.hasChanges) {
|
|
77
|
+
log.db?.('No schema changes detected.');
|
|
78
|
+
return null;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
const upStatements: string[] = [];
|
|
83
|
+
const downStatements: string[] = [];
|
|
84
|
+
|
|
85
|
+
// New tables — in topological order (parents before children)
|
|
86
|
+
const allOrder = getTopologicalOrder(schemas);
|
|
87
|
+
const addedOrdered = allOrder.filter(name => diff.addedModels.includes(name));
|
|
88
|
+
|
|
89
|
+
for (const name of addedOrdered) {
|
|
90
|
+
upStatements.push(buildTableDDL(name, schemas[name], schemas) + ';');
|
|
91
|
+
downStatements.unshift(`DROP TABLE IF EXISTS \`${schemas[name].table}\`;`);
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
// Removed tables (warn only, commented out)
|
|
95
|
+
for (const name of diff.removedModels) {
|
|
96
|
+
upStatements.push(`-- WARNING: Model '${name}' was removed. Uncomment to drop table:`);
|
|
97
|
+
upStatements.push(`-- DROP TABLE IF EXISTS \`${previousSnapshot[name].table}\`;`);
|
|
98
|
+
downStatements.push(`-- Recreate table for removed model '${name}' manually if needed`);
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// Added columns
|
|
102
|
+
for (const { model, column, type } of diff.addedColumns) {
|
|
103
|
+
const table = currentSnapshot[model].table;
|
|
104
|
+
upStatements.push(`ALTER TABLE \`${table}\` ADD COLUMN \`${column}\` ${type};`);
|
|
105
|
+
downStatements.push(`ALTER TABLE \`${table}\` DROP COLUMN \`${column}\`;`);
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// Removed columns
|
|
109
|
+
for (const { model, column, type } of diff.removedColumns) {
|
|
110
|
+
const table = previousSnapshot[model]?.table;
|
|
111
|
+
if (!table) throw new Error(`Missing table name in snapshot for model "${model}"`);
|
|
112
|
+
upStatements.push(`ALTER TABLE \`${table}\` DROP COLUMN \`${column}\`;`);
|
|
113
|
+
downStatements.push(`ALTER TABLE \`${table}\` ADD COLUMN \`${column}\` ${type};`);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Changed column types
|
|
117
|
+
for (const { model, column, from, to } of diff.changedColumns) {
|
|
118
|
+
const table = currentSnapshot[model].table;
|
|
119
|
+
upStatements.push(`ALTER TABLE \`${table}\` MODIFY COLUMN \`${column}\` ${to};`);
|
|
120
|
+
downStatements.push(`ALTER TABLE \`${table}\` MODIFY COLUMN \`${column}\` ${from};`);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Added foreign keys
|
|
124
|
+
for (const { model, column, references } of diff.addedForeignKeys) {
|
|
125
|
+
const table = currentSnapshot[model].table;
|
|
126
|
+
// Resolve FK column type from the referenced table's PK type
|
|
127
|
+
const refModel = Object.entries(currentSnapshot).find(([, s]) => s.table === references.references);
|
|
128
|
+
const fkType = refModel && refModel[1].idType === 'string' ? 'VARCHAR(255)' : 'INT';
|
|
129
|
+
upStatements.push(`ALTER TABLE \`${table}\` ADD COLUMN \`${column}\` ${fkType};`);
|
|
130
|
+
upStatements.push(`ALTER TABLE \`${table}\` ADD FOREIGN KEY (\`${column}\`) REFERENCES \`${references.references}\`(\`${references.column}\`) ON DELETE SET NULL;`);
|
|
131
|
+
downStatements.push(`ALTER TABLE \`${table}\` DROP FOREIGN KEY \`${column}\`;`);
|
|
132
|
+
downStatements.push(`ALTER TABLE \`${table}\` DROP COLUMN \`${column}\`;`);
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
// Removed foreign keys
|
|
136
|
+
for (const { model, column, references } of diff.removedForeignKeys) {
|
|
137
|
+
const table = previousSnapshot[model]?.table;
|
|
138
|
+
if (!table) throw new Error(`Missing table name in snapshot for model "${model}"`);
|
|
139
|
+
// Resolve FK column type from the referenced table's PK type in previous snapshot
|
|
140
|
+
const refModel = Object.entries(previousSnapshot).find(([, s]) => s.table === references.references);
|
|
141
|
+
const fkType = refModel && refModel[1].idType === 'string' ? 'VARCHAR(255)' : 'INT';
|
|
142
|
+
upStatements.push(`ALTER TABLE \`${table}\` DROP FOREIGN KEY \`${column}\`;`);
|
|
143
|
+
upStatements.push(`ALTER TABLE \`${table}\` DROP COLUMN \`${column}\`;`);
|
|
144
|
+
downStatements.push(`ALTER TABLE \`${table}\` ADD COLUMN \`${column}\` ${fkType};`);
|
|
145
|
+
downStatements.push(`ALTER TABLE \`${table}\` ADD FOREIGN KEY (\`${column}\`) REFERENCES \`${references.references}\`(\`${references.column}\`) ON DELETE SET NULL;`);
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// View migrations — views are created AFTER tables (dependency order)
|
|
149
|
+
const viewSchemas = introspectViews();
|
|
150
|
+
const currentViewSnapshot = viewSchemasToSnapshot(viewSchemas);
|
|
151
|
+
const previousViewSnapshot = extractViewsFromSnapshot(previousSnapshot);
|
|
152
|
+
const viewDiff = diffViewSnapshots(previousViewSnapshot, currentViewSnapshot);
|
|
153
|
+
|
|
154
|
+
if (viewDiff.hasChanges) {
|
|
155
|
+
upStatements.push('');
|
|
156
|
+
upStatements.push('-- Views');
|
|
157
|
+
downStatements.push('');
|
|
158
|
+
downStatements.push('-- Views');
|
|
159
|
+
|
|
160
|
+
// Added views
|
|
161
|
+
for (const name of viewDiff.addedViews) {
|
|
162
|
+
try {
|
|
163
|
+
const ddl = buildViewDDL(name, viewSchemas[name], schemas);
|
|
164
|
+
upStatements.push(ddl + ';');
|
|
165
|
+
downStatements.unshift(`DROP VIEW IF EXISTS \`${viewSchemas[name].viewName}\`;`);
|
|
166
|
+
} catch (error) {
|
|
167
|
+
upStatements.push(`-- WARNING: Could not generate DDL for view '${name}': ${error instanceof Error ? error.message : String(error)}`);
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
// Removed views
|
|
172
|
+
for (const name of viewDiff.removedViews) {
|
|
173
|
+
upStatements.push(`-- WARNING: View '${name}' was removed. Uncomment to drop view:`);
|
|
174
|
+
upStatements.push(`-- DROP VIEW IF EXISTS \`${previousViewSnapshot[name].viewName}\`;`);
|
|
175
|
+
downStatements.push(`-- Recreate view for removed view '${name}' manually if needed`);
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
// Changed views (source or aggregates changed)
|
|
179
|
+
for (const name of viewDiff.changedViews) {
|
|
180
|
+
try {
|
|
181
|
+
const ddl = buildViewDDL(name, viewSchemas[name], schemas);
|
|
182
|
+
upStatements.push(ddl + ';');
|
|
183
|
+
} catch (error) {
|
|
184
|
+
upStatements.push(`-- WARNING: Could not generate DDL for changed view '${name}': ${error instanceof Error ? error.message : String(error)}`);
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
const combinedHasChanges = diff.hasChanges || viewDiff.hasChanges;
|
|
190
|
+
|
|
191
|
+
if (!combinedHasChanges) {
|
|
192
|
+
log.db?.('No schema changes detected.');
|
|
193
|
+
return null;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
// Merge view snapshot into the main snapshot
|
|
197
|
+
const combinedSnapshot: Record<string, SnapshotEntry | ViewSnapshotEntry> = { ...currentSnapshot };
|
|
198
|
+
for (const [name, viewSnap] of Object.entries(currentViewSnapshot)) {
|
|
199
|
+
combinedSnapshot[name] = viewSnap;
|
|
200
|
+
}
|
|
201
|
+
|
|
202
|
+
const sanitizedDescription = description.replace(/\s+/g, '_').replace(/[^a-zA-Z0-9_]/g, '');
|
|
203
|
+
const timestamp = Math.floor(Date.now() / 1000);
|
|
204
|
+
const filename = `${timestamp}_${sanitizedDescription}.sql`;
|
|
205
|
+
const content = `-- UP\n${upStatements.join('\n')}\n\n-- DOWN\n${downStatements.join('\n')}\n`;
|
|
206
|
+
|
|
207
|
+
await createFile(path.join(migrationsPath, filename), content);
|
|
208
|
+
await createFile(path.join(migrationsPath, '.snapshot.json'), JSON.stringify(combinedSnapshot, null, 2));
|
|
209
|
+
|
|
210
|
+
log.db?.(`Migration generated: ${filename}`);
|
|
211
|
+
|
|
212
|
+
return { filename, content, snapshot: combinedSnapshot };
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
export async function loadLatestSnapshot(migrationsPath: string): Promise<Record<string, unknown>> {
|
|
216
|
+
const snapshotPath = path.join(migrationsPath, '.snapshot.json');
|
|
217
|
+
const exists = await fileExists(snapshotPath);
|
|
218
|
+
|
|
219
|
+
if (!exists) return {};
|
|
220
|
+
|
|
221
|
+
return readFile(snapshotPath, { json: true }) as Promise<Record<string, unknown>>;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
export function diffSnapshots(previous: Record<string, SnapshotEntry>, current: Record<string, SnapshotEntry>): SnapshotDiff {
|
|
225
|
+
const addedModels: string[] = [];
|
|
226
|
+
const removedModels: string[] = [];
|
|
227
|
+
const addedColumns: ColumnChange[] = [];
|
|
228
|
+
const removedColumns: ColumnChange[] = [];
|
|
229
|
+
const changedColumns: ColumnTypeChange[] = [];
|
|
230
|
+
const addedForeignKeys: ForeignKeyChange[] = [];
|
|
231
|
+
const removedForeignKeys: ForeignKeyChange[] = [];
|
|
232
|
+
|
|
233
|
+
// Find added models
|
|
234
|
+
for (const name of Object.keys(current)) {
|
|
235
|
+
if (!previous[name]) addedModels.push(name);
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// Find removed models
|
|
239
|
+
for (const name of Object.keys(previous)) {
|
|
240
|
+
if (!current[name]) removedModels.push(name);
|
|
241
|
+
}
|
|
242
|
+
|
|
243
|
+
// Find column changes in existing models
|
|
244
|
+
for (const name of Object.keys(current)) {
|
|
245
|
+
if (!previous[name]) continue;
|
|
246
|
+
|
|
247
|
+
const { columns: prevCols = {} } = previous[name];
|
|
248
|
+
const { columns: currCols = {} } = current[name];
|
|
249
|
+
|
|
250
|
+
// Added columns
|
|
251
|
+
for (const [col, type] of Object.entries(currCols)) {
|
|
252
|
+
if (!prevCols[col]) {
|
|
253
|
+
addedColumns.push({ model: name, column: col, type });
|
|
254
|
+
} else if (prevCols[col] !== type) {
|
|
255
|
+
changedColumns.push({ model: name, column: col, from: prevCols[col], to: type });
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
// Removed columns
|
|
260
|
+
for (const [col, type] of Object.entries(prevCols)) {
|
|
261
|
+
if (!currCols[col]) {
|
|
262
|
+
removedColumns.push({ model: name, column: col, type });
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// Foreign key changes
|
|
267
|
+
const prevFKs = previous[name].foreignKeys || {};
|
|
268
|
+
const currFKs = current[name].foreignKeys || {};
|
|
269
|
+
|
|
270
|
+
for (const [col, refs] of Object.entries(currFKs)) {
|
|
271
|
+
if (!prevFKs[col]) {
|
|
272
|
+
addedForeignKeys.push({ model: name, column: col, references: refs });
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
for (const [col, refs] of Object.entries(prevFKs)) {
|
|
277
|
+
if (!currFKs[col]) {
|
|
278
|
+
removedForeignKeys.push({ model: name, column: col, references: refs });
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
const hasChanges = addedModels.length > 0 || removedModels.length > 0 ||
|
|
284
|
+
addedColumns.length > 0 || removedColumns.length > 0 ||
|
|
285
|
+
changedColumns.length > 0 || addedForeignKeys.length > 0 || removedForeignKeys.length > 0;
|
|
286
|
+
|
|
287
|
+
return {
|
|
288
|
+
hasChanges,
|
|
289
|
+
addedModels,
|
|
290
|
+
removedModels,
|
|
291
|
+
addedColumns,
|
|
292
|
+
removedColumns,
|
|
293
|
+
changedColumns,
|
|
294
|
+
addedForeignKeys,
|
|
295
|
+
removedForeignKeys,
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
|
|
299
|
+
export function detectSchemaDrift(schemas: Record<string, ModelSchema>, snapshot: Record<string, SnapshotEntry>): SnapshotDiff {
|
|
300
|
+
const current = schemasToSnapshot(schemas);
|
|
301
|
+
return diffSnapshots(snapshot, current);
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
export function extractViewsFromSnapshot(snapshot: Record<string, unknown>): Record<string, ViewSnapshotEntry> {
|
|
305
|
+
const views: Record<string, ViewSnapshotEntry> = {};
|
|
306
|
+
for (const [name, entry] of Object.entries(snapshot)) {
|
|
307
|
+
if ((entry as { isView?: boolean }).isView) views[name] = entry as ViewSnapshotEntry;
|
|
308
|
+
}
|
|
309
|
+
return views;
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
export function diffViewSnapshots(previous: Record<string, ViewSnapshotEntry>, current: Record<string, ViewSnapshotEntry>): ViewDiff {
|
|
313
|
+
const addedViews: string[] = [];
|
|
314
|
+
const removedViews: string[] = [];
|
|
315
|
+
const changedViews: string[] = [];
|
|
316
|
+
|
|
317
|
+
for (const name of Object.keys(current)) {
|
|
318
|
+
if (!previous[name]) {
|
|
319
|
+
addedViews.push(name);
|
|
320
|
+
} else if (
|
|
321
|
+
current[name].viewQuery !== previous[name].viewQuery ||
|
|
322
|
+
current[name].source !== previous[name].source
|
|
323
|
+
) {
|
|
324
|
+
changedViews.push(name);
|
|
325
|
+
}
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
for (const name of Object.keys(previous)) {
|
|
329
|
+
if (!current[name]) {
|
|
330
|
+
removedViews.push(name);
|
|
331
|
+
}
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
const hasChanges = addedViews.length > 0 || removedViews.length > 0 || changedViews.length > 0;
|
|
335
|
+
|
|
336
|
+
return { hasChanges, addedViews, removedViews, changedViews };
|
|
337
|
+
}
|