@javalabs/prisma-client 1.0.16 → 1.0.19

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.
Files changed (106) hide show
  1. package/.dockerignore +14 -0
  2. package/Dockerfile +23 -0
  3. package/README.md +269 -269
  4. package/dist/index.d.ts +1 -1
  5. package/dist/prisma.service.d.ts +1 -1
  6. package/dist/scripts/add-uuid-to-table.js +32 -32
  7. package/dist/scripts/data-migration/batch-migrator.js +12 -12
  8. package/dist/scripts/data-migration/data-transformer.js +14 -14
  9. package/dist/scripts/data-migration/dependency-resolver.js +23 -23
  10. package/dist/scripts/data-migration/entity-discovery.js +68 -68
  11. package/dist/scripts/data-migration/foreign-key-manager.js +23 -23
  12. package/dist/scripts/data-migration/migration-tool.js +5 -5
  13. package/dist/scripts/data-migration/schema-utils.js +74 -74
  14. package/dist/scripts/data-migration/typecast-manager.js +4 -4
  15. package/dist/scripts/database-initializer.js +5 -5
  16. package/dist/scripts/drop-database.js +5 -5
  17. package/dist/scripts/fix-data-types.js +53 -53
  18. package/dist/scripts/fix-enum-values.js +34 -34
  19. package/dist/scripts/fix-schema-discrepancies.js +40 -40
  20. package/dist/scripts/fix-table-indexes.js +81 -81
  21. package/dist/scripts/migrate-schema-structure.js +4 -4
  22. package/dist/scripts/migrate-uuid.js +19 -19
  23. package/dist/scripts/post-migration-validator.js +49 -49
  24. package/dist/scripts/pre-migration-validator.js +107 -107
  25. package/dist/scripts/reset-database.js +21 -21
  26. package/dist/scripts/retry-failed-migrations.js +28 -28
  27. package/dist/scripts/run-migration.js +5 -5
  28. package/dist/scripts/schema-sync.js +18 -18
  29. package/dist/scripts/sequence-sync-cli.js +55 -55
  30. package/dist/scripts/sequence-synchronizer.js +20 -20
  31. package/dist/scripts/sync-enum-types.js +30 -30
  32. package/dist/scripts/sync-enum-values.js +52 -52
  33. package/dist/scripts/truncate-database.js +10 -10
  34. package/dist/scripts/verify-migration-setup.js +10 -10
  35. package/dist/tsconfig.tsbuildinfo +1 -1
  36. package/migration-config.json +63 -63
  37. package/migration-config.json.bk +95 -95
  38. package/package.json +44 -44
  39. package/prisma/migrations/add_accepts_partial_payments_to_users.sql +19 -0
  40. package/prisma/migrations/add_amount_received_to_manual_payments.sql +19 -0
  41. package/prisma/migrations/add_commission_fields.sql +33 -0
  42. package/prisma/migrations/add_uuid_to_transactions.sql +13 -13
  43. package/prisma/migrations/complete_partial_payments_migration.sql +53 -0
  44. package/prisma/migrations/create_settlements_table.sql +60 -0
  45. package/prisma/schema.prisma +56 -4
  46. package/src/index.ts +23 -23
  47. package/src/prisma-factory.service.ts +40 -40
  48. package/src/prisma.module.ts +9 -9
  49. package/src/prisma.service.ts +16 -16
  50. package/src/scripts/add-uuid-to-table.ts +138 -138
  51. package/src/scripts/create-tenant-schemas.ts +145 -145
  52. package/src/scripts/data-migration/batch-migrator.ts +248 -248
  53. package/src/scripts/data-migration/data-transformer.ts +426 -426
  54. package/src/scripts/data-migration/db-connector.ts +120 -120
  55. package/src/scripts/data-migration/dependency-resolver.ts +174 -174
  56. package/src/scripts/data-migration/entity-discovery.ts +196 -196
  57. package/src/scripts/data-migration/foreign-key-manager.ts +277 -277
  58. package/src/scripts/data-migration/migration-config.json +63 -63
  59. package/src/scripts/data-migration/migration-tool.ts +509 -509
  60. package/src/scripts/data-migration/schema-utils.ts +248 -248
  61. package/src/scripts/data-migration/tenant-migrator.ts +201 -201
  62. package/src/scripts/data-migration/typecast-manager.ts +193 -193
  63. package/src/scripts/data-migration/types.ts +113 -113
  64. package/src/scripts/database-initializer.ts +49 -49
  65. package/src/scripts/drop-database.ts +104 -104
  66. package/src/scripts/dump-source-db.sh +61 -61
  67. package/src/scripts/encrypt-user-passwords.ts +36 -36
  68. package/src/scripts/error-handler.ts +117 -117
  69. package/src/scripts/fix-data-types.ts +241 -241
  70. package/src/scripts/fix-enum-values.ts +357 -357
  71. package/src/scripts/fix-schema-discrepancies.ts +317 -317
  72. package/src/scripts/fix-table-indexes.ts +601 -601
  73. package/src/scripts/migrate-schema-structure.ts +90 -90
  74. package/src/scripts/migrate-uuid.ts +76 -76
  75. package/src/scripts/post-migration-validator.ts +526 -526
  76. package/src/scripts/pre-migration-validator.ts +610 -610
  77. package/src/scripts/reset-database.ts +263 -263
  78. package/src/scripts/retry-failed-migrations.ts +416 -416
  79. package/src/scripts/run-migration.ts +707 -707
  80. package/src/scripts/schema-sync.ts +128 -128
  81. package/src/scripts/sequence-sync-cli.ts +416 -416
  82. package/src/scripts/sequence-synchronizer.ts +127 -127
  83. package/src/scripts/sync-enum-types.ts +170 -170
  84. package/src/scripts/sync-enum-values.ts +563 -563
  85. package/src/scripts/truncate-database.ts +123 -123
  86. package/src/scripts/verify-migration-setup.ts +135 -135
  87. package/tsconfig.json +17 -17
  88. package/dist/scripts/data-migration/dependency-manager.d.ts +0 -9
  89. package/dist/scripts/data-migration/dependency-manager.js +0 -86
  90. package/dist/scripts/data-migration/dependency-manager.js.map +0 -1
  91. package/dist/scripts/data-migration/migration-config.json +0 -63
  92. package/dist/scripts/data-migration/migration-phases.d.ts +0 -5
  93. package/dist/scripts/data-migration/migration-phases.js +0 -55
  94. package/dist/scripts/data-migration/migration-phases.js.map +0 -1
  95. package/dist/scripts/data-migration/multi-source-migrator.d.ts +0 -17
  96. package/dist/scripts/data-migration/multi-source-migrator.js +0 -130
  97. package/dist/scripts/data-migration/multi-source-migrator.js.map +0 -1
  98. package/dist/scripts/data-migration/phase-generator.d.ts +0 -15
  99. package/dist/scripts/data-migration/phase-generator.js +0 -187
  100. package/dist/scripts/data-migration/phase-generator.js.map +0 -1
  101. package/dist/scripts/data-migration.d.ts +0 -22
  102. package/dist/scripts/data-migration.js +0 -593
  103. package/dist/scripts/data-migration.js.map +0 -1
  104. package/dist/scripts/multi-db-migration.d.ts +0 -1
  105. package/dist/scripts/multi-db-migration.js +0 -55
  106. package/dist/scripts/multi-db-migration.js.map +0 -1
@@ -1,124 +1,124 @@
1
- import * as pg from "pg";
2
- import * as dotenv from "dotenv";
3
- import { Logger } from "@nestjs/common";
4
-
5
- dotenv.config();
6
-
7
- export class DatabaseTruncateTool {
8
- private readonly logger = new Logger("DatabaseTruncateTool");
9
- private readonly pool: pg.Pool;
10
-
11
- constructor(private readonly databaseUrl: string) {
12
- this.pool = new pg.Pool({
13
- connectionString: this.databaseUrl,
14
- });
15
- }
16
-
17
- async truncateDatabase() {
18
- try {
19
- this.logger.log("Starting database truncate process");
20
-
21
- // Obtener todos los schemas excepto los del sistema
22
- const schemas = await this.getSchemas();
23
- this.logger.log(`Found ${schemas.length} schemas to process`);
24
-
25
- // Para cada schema, truncar todas sus tablas
26
- for (const schema of schemas) {
27
- await this.truncateSchema(schema);
28
- }
29
-
30
- this.logger.log("Database has been successfully truncated");
31
- } catch (error) {
32
- this.logger.error(
33
- `Error truncating database: ${error.message}`,
34
- error.stack
35
- );
36
- throw error;
37
- } finally {
38
- await this.cleanup();
39
- }
40
- }
41
-
42
- private async getSchemas(): Promise<string[]> {
43
- const result = await this.pool.query(`
44
- SELECT schema_name
45
- FROM information_schema.schemata
46
- WHERE schema_name NOT IN ('information_schema', 'pg_catalog', 'pg_toast')
47
- AND schema_name NOT LIKE 'pg_%'
48
- `);
49
-
50
- return result.rows.map(row => row.schema_name);
51
- }
52
-
53
- private async truncateSchema(schemaName: string) {
54
- this.logger.log(`Processing schema: ${schemaName}`);
55
-
56
- try {
57
- // Obtener todas las tablas del schema
58
- const tablesResult = await this.pool.query(`
59
- SELECT table_name
60
- FROM information_schema.tables
61
- WHERE table_schema = $1
62
- AND table_type = 'BASE TABLE'
63
- `, [schemaName]);
64
-
65
- const tables = tablesResult.rows.map(row => row.table_name);
66
-
67
- if (tables.length === 0) {
68
- this.logger.log(`No tables found in schema ${schemaName}`);
69
- return;
70
- }
71
-
72
- this.logger.log(`Found ${tables.length} tables in schema ${schemaName}`);
73
-
74
- // Desactivar restricciones de clave foránea temporalmente
75
- await this.pool.query(`SET session_replication_role = 'replica'`);
76
-
77
- // Truncar cada tabla
78
- for (const table of tables) {
79
- try {
80
- await this.pool.query(`TRUNCATE TABLE "${schemaName}"."${table}" CASCADE`);
81
- this.logger.log(`Truncated table ${schemaName}.${table}`);
82
- } catch (tableError) {
83
- this.logger.error(`Error truncating table ${schemaName}.${table}: ${tableError.message}`);
84
- }
85
- }
86
-
87
- // Reactivar restricciones de clave foránea
88
- await this.pool.query(`SET session_replication_role = 'origin'`);
89
-
90
- this.logger.log(`Successfully processed schema: ${schemaName}`);
91
- } catch (error) {
92
- this.logger.error(`Error processing schema ${schemaName}: ${error.message}`);
93
- }
94
- }
95
-
96
- private async cleanup() {
97
- this.logger.log("Cleaning up database connections");
98
- await this.pool.end();
99
- }
100
- }
101
-
102
- // Script para ejecutar desde línea de comandos
103
- if (require.main === module) {
104
- const run = async () => {
105
- try {
106
- // Obtener la URL de la base de datos desde los argumentos o .env
107
- const databaseUrl = process.argv[2] || process.env.DATABASE_URL;
108
-
109
- if (!databaseUrl) {
110
- console.error("Error: No database URL provided. Please provide a database URL as an argument or set DATABASE_URL environment variable.");
111
- process.exit(1);
112
- }
113
-
114
- const truncateTool = new DatabaseTruncateTool(databaseUrl);
115
- await truncateTool.truncateDatabase();
116
- process.exit(0);
117
- } catch (error) {
118
- console.error("Error:", error.message);
119
- process.exit(1);
120
- }
121
- };
122
-
123
- run();
1
+ import * as pg from "pg";
2
+ import * as dotenv from "dotenv";
3
+ import { Logger } from "@nestjs/common";
4
+
5
+ dotenv.config();
6
+
7
+ export class DatabaseTruncateTool {
8
+ private readonly logger = new Logger("DatabaseTruncateTool");
9
+ private readonly pool: pg.Pool;
10
+
11
+ constructor(private readonly databaseUrl: string) {
12
+ this.pool = new pg.Pool({
13
+ connectionString: this.databaseUrl,
14
+ });
15
+ }
16
+
17
+ async truncateDatabase() {
18
+ try {
19
+ this.logger.log("Starting database truncate process");
20
+
21
+ // Obtener todos los schemas excepto los del sistema
22
+ const schemas = await this.getSchemas();
23
+ this.logger.log(`Found ${schemas.length} schemas to process`);
24
+
25
+ // Para cada schema, truncar todas sus tablas
26
+ for (const schema of schemas) {
27
+ await this.truncateSchema(schema);
28
+ }
29
+
30
+ this.logger.log("Database has been successfully truncated");
31
+ } catch (error) {
32
+ this.logger.error(
33
+ `Error truncating database: ${error.message}`,
34
+ error.stack
35
+ );
36
+ throw error;
37
+ } finally {
38
+ await this.cleanup();
39
+ }
40
+ }
41
+
42
+ private async getSchemas(): Promise<string[]> {
43
+ const result = await this.pool.query(`
44
+ SELECT schema_name
45
+ FROM information_schema.schemata
46
+ WHERE schema_name NOT IN ('information_schema', 'pg_catalog', 'pg_toast')
47
+ AND schema_name NOT LIKE 'pg_%'
48
+ `);
49
+
50
+ return result.rows.map(row => row.schema_name);
51
+ }
52
+
53
+ private async truncateSchema(schemaName: string) {
54
+ this.logger.log(`Processing schema: ${schemaName}`);
55
+
56
+ try {
57
+ // Obtener todas las tablas del schema
58
+ const tablesResult = await this.pool.query(`
59
+ SELECT table_name
60
+ FROM information_schema.tables
61
+ WHERE table_schema = $1
62
+ AND table_type = 'BASE TABLE'
63
+ `, [schemaName]);
64
+
65
+ const tables = tablesResult.rows.map(row => row.table_name);
66
+
67
+ if (tables.length === 0) {
68
+ this.logger.log(`No tables found in schema ${schemaName}`);
69
+ return;
70
+ }
71
+
72
+ this.logger.log(`Found ${tables.length} tables in schema ${schemaName}`);
73
+
74
+ // Desactivar restricciones de clave foránea temporalmente
75
+ await this.pool.query(`SET session_replication_role = 'replica'`);
76
+
77
+ // Truncar cada tabla
78
+ for (const table of tables) {
79
+ try {
80
+ await this.pool.query(`TRUNCATE TABLE "${schemaName}"."${table}" CASCADE`);
81
+ this.logger.log(`Truncated table ${schemaName}.${table}`);
82
+ } catch (tableError) {
83
+ this.logger.error(`Error truncating table ${schemaName}.${table}: ${tableError.message}`);
84
+ }
85
+ }
86
+
87
+ // Reactivar restricciones de clave foránea
88
+ await this.pool.query(`SET session_replication_role = 'origin'`);
89
+
90
+ this.logger.log(`Successfully processed schema: ${schemaName}`);
91
+ } catch (error) {
92
+ this.logger.error(`Error processing schema ${schemaName}: ${error.message}`);
93
+ }
94
+ }
95
+
96
+ private async cleanup() {
97
+ this.logger.log("Cleaning up database connections");
98
+ await this.pool.end();
99
+ }
100
+ }
101
+
102
+ // Script para ejecutar desde línea de comandos
103
+ if (require.main === module) {
104
+ const run = async () => {
105
+ try {
106
+ // Obtener la URL de la base de datos desde los argumentos o .env
107
+ const databaseUrl = process.argv[2] || process.env.DATABASE_URL;
108
+
109
+ if (!databaseUrl) {
110
+ console.error("Error: No database URL provided. Please provide a database URL as an argument or set DATABASE_URL environment variable.");
111
+ process.exit(1);
112
+ }
113
+
114
+ const truncateTool = new DatabaseTruncateTool(databaseUrl);
115
+ await truncateTool.truncateDatabase();
116
+ process.exit(0);
117
+ } catch (error) {
118
+ console.error("Error:", error.message);
119
+ process.exit(1);
120
+ }
121
+ };
122
+
123
+ run();
124
124
  }
@@ -1,136 +1,136 @@
1
- import * as dotenv from 'dotenv';
2
- import * as pg from 'pg';
3
- import { Logger } from '@nestjs/common';
4
-
5
- dotenv.config();
6
-
7
- export class MigrationSetupVerifier {
8
- private readonly logger = new Logger('MigrationSetupVerifier');
9
- private readonly sourcePool: pg.Pool;
10
- private readonly targetPool: pg.Pool;
11
-
12
- constructor() {
13
- this.sourcePool = new pg.Pool({
14
- connectionString: process.env.SOURCE_DATABASE_URL,
15
- });
16
-
17
- this.targetPool = new pg.Pool({
18
- connectionString: process.env.DATABASE_URL,
19
- });
20
- }
21
-
22
- async verifySetup() {
23
- this.logger.log('Starting migration setup verification');
24
-
25
- try {
26
- // Verificar conexiones
27
- await this.verifyConnections();
28
-
29
- // Verificar tenants
30
- await this.verifyTenants();
31
-
32
- // Verificar esquemas
33
- await this.verifySchemas();
34
-
35
- this.logger.log('Migration setup verification completed');
36
- } catch (error) {
37
- this.logger.error(`Error during setup verification: ${error.message}`);
38
- } finally {
39
- await this.cleanup();
40
- }
41
- }
42
-
43
- private async verifyConnections() {
44
- this.logger.log('Verifying database connections...');
45
-
46
- try {
47
- const sourceClient = await this.sourcePool.connect();
48
- const sourceResult = await sourceClient.query('SELECT NOW() as time');
49
- sourceClient.release();
50
- this.logger.log(`Source database connection successful: ${sourceResult.rows[0].time}`);
51
- } catch (error) {
52
- this.logger.error(`Source database connection failed: ${error.message}`);
53
- throw new Error('Source database connection failed');
54
- }
55
-
56
- try {
57
- const targetClient = await this.targetPool.connect();
58
- const targetResult = await targetClient.query('SELECT NOW() as time');
59
- targetClient.release();
60
- this.logger.log(`Target database connection successful: ${targetResult.rows[0].time}`);
61
- } catch (error) {
62
- this.logger.error(`Target database connection failed: ${error.message}`);
63
- throw new Error('Target database connection failed');
64
- }
65
- }
66
-
67
- private async verifyTenants() {
68
- this.logger.log('Verifying tenants in source database...');
69
-
70
- try {
71
- const result = await this.sourcePool.query(`
72
- SELECT api_key, provider_id
73
- FROM api_keys
74
- WHERE api_key != ''
75
- AND provider_id IS NOT NULL
76
- `);
77
-
78
- this.logger.log(`Found ${result.rows.length} valid tenants in source database`);
79
-
80
- if (result.rows.length === 0) {
81
- this.logger.warn('No valid tenants found in source database!');
82
- this.logger.log('Will use "public" schema as default source for migration');
83
- } else {
84
- // Mostrar algunos ejemplos
85
- const examples = result.rows.slice(0, 5);
86
- this.logger.log(`Sample tenants: ${JSON.stringify(examples)}`);
87
- }
88
- } catch (error) {
89
- this.logger.error(`Error verifying tenants: ${error.message}`);
90
- this.logger.log('Will use "public" schema as default source for migration');
91
- }
92
- }
93
-
94
- private async verifySchemas() {
95
- this.logger.log('Verifying schemas in target database...');
96
-
97
- try {
98
- const result = await this.targetPool.query(`
99
- SELECT schema_name
100
- FROM information_schema.schemata
101
- WHERE schema_name NOT IN ('public', 'information_schema', 'pg_catalog', 'pg_toast')
102
- AND schema_name NOT LIKE 'pg_%'
103
- `);
104
-
105
- this.logger.log(`Found ${result.rows.length} schemas in target database`);
106
-
107
- if (result.rows.length === 0) {
108
- this.logger.warn('No tenant schemas found in target database!');
109
- } else {
110
- // Mostrar algunos ejemplos
111
- const examples = result.rows.slice(0, 5);
112
- this.logger.log(`Sample schemas: ${JSON.stringify(examples)}`);
113
- }
114
- } catch (error) {
115
- this.logger.error(`Error verifying schemas: ${error.message}`);
116
- }
117
- }
118
-
119
- private async cleanup() {
120
- try {
121
- await this.sourcePool.end();
122
- await this.targetPool.end();
123
- } catch (error) {
124
- this.logger.error(`Error during cleanup: ${error.message}`);
125
- }
126
- }
127
- }
128
-
129
- // Ejecutar la verificación si este archivo se ejecuta directamente
130
- if (require.main === module) {
131
- const verifier = new MigrationSetupVerifier();
132
- verifier.verifySetup().catch(error => {
133
- console.error('Verification failed:', error);
134
- process.exit(1);
135
- });
1
+ import * as dotenv from 'dotenv';
2
+ import * as pg from 'pg';
3
+ import { Logger } from '@nestjs/common';
4
+
5
+ dotenv.config();
6
+
7
+ export class MigrationSetupVerifier {
8
+ private readonly logger = new Logger('MigrationSetupVerifier');
9
+ private readonly sourcePool: pg.Pool;
10
+ private readonly targetPool: pg.Pool;
11
+
12
+ constructor() {
13
+ this.sourcePool = new pg.Pool({
14
+ connectionString: process.env.SOURCE_DATABASE_URL,
15
+ });
16
+
17
+ this.targetPool = new pg.Pool({
18
+ connectionString: process.env.DATABASE_URL,
19
+ });
20
+ }
21
+
22
+ async verifySetup() {
23
+ this.logger.log('Starting migration setup verification');
24
+
25
+ try {
26
+ // Verificar conexiones
27
+ await this.verifyConnections();
28
+
29
+ // Verificar tenants
30
+ await this.verifyTenants();
31
+
32
+ // Verificar esquemas
33
+ await this.verifySchemas();
34
+
35
+ this.logger.log('Migration setup verification completed');
36
+ } catch (error) {
37
+ this.logger.error(`Error during setup verification: ${error.message}`);
38
+ } finally {
39
+ await this.cleanup();
40
+ }
41
+ }
42
+
43
+ private async verifyConnections() {
44
+ this.logger.log('Verifying database connections...');
45
+
46
+ try {
47
+ const sourceClient = await this.sourcePool.connect();
48
+ const sourceResult = await sourceClient.query('SELECT NOW() as time');
49
+ sourceClient.release();
50
+ this.logger.log(`Source database connection successful: ${sourceResult.rows[0].time}`);
51
+ } catch (error) {
52
+ this.logger.error(`Source database connection failed: ${error.message}`);
53
+ throw new Error('Source database connection failed');
54
+ }
55
+
56
+ try {
57
+ const targetClient = await this.targetPool.connect();
58
+ const targetResult = await targetClient.query('SELECT NOW() as time');
59
+ targetClient.release();
60
+ this.logger.log(`Target database connection successful: ${targetResult.rows[0].time}`);
61
+ } catch (error) {
62
+ this.logger.error(`Target database connection failed: ${error.message}`);
63
+ throw new Error('Target database connection failed');
64
+ }
65
+ }
66
+
67
+ private async verifyTenants() {
68
+ this.logger.log('Verifying tenants in source database...');
69
+
70
+ try {
71
+ const result = await this.sourcePool.query(`
72
+ SELECT api_key, provider_id
73
+ FROM api_keys
74
+ WHERE api_key != ''
75
+ AND provider_id IS NOT NULL
76
+ `);
77
+
78
+ this.logger.log(`Found ${result.rows.length} valid tenants in source database`);
79
+
80
+ if (result.rows.length === 0) {
81
+ this.logger.warn('No valid tenants found in source database!');
82
+ this.logger.log('Will use "public" schema as default source for migration');
83
+ } else {
84
+ // Mostrar algunos ejemplos
85
+ const examples = result.rows.slice(0, 5);
86
+ this.logger.log(`Sample tenants: ${JSON.stringify(examples)}`);
87
+ }
88
+ } catch (error) {
89
+ this.logger.error(`Error verifying tenants: ${error.message}`);
90
+ this.logger.log('Will use "public" schema as default source for migration');
91
+ }
92
+ }
93
+
94
+ private async verifySchemas() {
95
+ this.logger.log('Verifying schemas in target database...');
96
+
97
+ try {
98
+ const result = await this.targetPool.query(`
99
+ SELECT schema_name
100
+ FROM information_schema.schemata
101
+ WHERE schema_name NOT IN ('public', 'information_schema', 'pg_catalog', 'pg_toast')
102
+ AND schema_name NOT LIKE 'pg_%'
103
+ `);
104
+
105
+ this.logger.log(`Found ${result.rows.length} schemas in target database`);
106
+
107
+ if (result.rows.length === 0) {
108
+ this.logger.warn('No tenant schemas found in target database!');
109
+ } else {
110
+ // Mostrar algunos ejemplos
111
+ const examples = result.rows.slice(0, 5);
112
+ this.logger.log(`Sample schemas: ${JSON.stringify(examples)}`);
113
+ }
114
+ } catch (error) {
115
+ this.logger.error(`Error verifying schemas: ${error.message}`);
116
+ }
117
+ }
118
+
119
+ private async cleanup() {
120
+ try {
121
+ await this.sourcePool.end();
122
+ await this.targetPool.end();
123
+ } catch (error) {
124
+ this.logger.error(`Error during cleanup: ${error.message}`);
125
+ }
126
+ }
127
+ }
128
+
129
+ // Ejecutar la verificación si este archivo se ejecuta directamente
130
+ if (require.main === module) {
131
+ const verifier = new MigrationSetupVerifier();
132
+ verifier.verifySetup().catch(error => {
133
+ console.error('Verification failed:', error);
134
+ process.exit(1);
135
+ });
136
136
  }
package/tsconfig.json CHANGED
@@ -1,18 +1,18 @@
1
- {
2
- "compilerOptions": {
3
- "module": "commonjs",
4
- "declaration": true,
5
- "removeComments": true,
6
- "emitDecoratorMetadata": true,
7
- "experimentalDecorators": true,
8
- "allowSyntheticDefaultImports": true,
9
- "target": "es2017",
10
- "sourceMap": true,
11
- "outDir": "./dist",
12
- "baseUrl": "./",
13
- "incremental": true,
14
- "skipLibCheck": true
15
- },
16
- "include": ["src/**/*"],
17
- "exclude": ["node_modules", "dist"]
1
+ {
2
+ "compilerOptions": {
3
+ "module": "commonjs",
4
+ "declaration": true,
5
+ "removeComments": true,
6
+ "emitDecoratorMetadata": true,
7
+ "experimentalDecorators": true,
8
+ "allowSyntheticDefaultImports": true,
9
+ "target": "es2017",
10
+ "sourceMap": true,
11
+ "outDir": "./dist",
12
+ "baseUrl": "./",
13
+ "incremental": true,
14
+ "skipLibCheck": true
15
+ },
16
+ "include": ["src/**/*"],
17
+ "exclude": ["node_modules", "dist"]
18
18
  }
@@ -1,9 +0,0 @@
1
- import { Pool } from "pg";
2
- import { EntityType } from "./types";
3
- export declare class DependencyManager {
4
- private readonly targetPool;
5
- private readonly logger;
6
- constructor(targetPool: Pool);
7
- orderEntitiesByDependency(entities: EntityType[], schemaName: string): Promise<EntityType[]>;
8
- private buildDependencyMap;
9
- }
@@ -1,86 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.DependencyManager = void 0;
4
- const common_1 = require("@nestjs/common");
5
- class DependencyManager {
6
- constructor(targetPool) {
7
- this.targetPool = targetPool;
8
- this.logger = new common_1.Logger("DependencyManager");
9
- }
10
- async orderEntitiesByDependency(entities, schemaName) {
11
- try {
12
- const dependencyMap = await this.buildDependencyMap(schemaName);
13
- const graph = {};
14
- for (const entity of entities) {
15
- graph[entity.name] = [];
16
- }
17
- for (const [table, dependencies] of Object.entries(dependencyMap)) {
18
- if (graph[table]) {
19
- graph[table] = dependencies.filter(dep => graph[dep] !== undefined);
20
- }
21
- }
22
- const visited = new Set();
23
- const temp = new Set();
24
- const order = [];
25
- const visit = (node) => {
26
- if (temp.has(node)) {
27
- return;
28
- }
29
- if (!visited.has(node)) {
30
- temp.add(node);
31
- for (const neighbor of graph[node]) {
32
- visit(neighbor);
33
- }
34
- temp.delete(node);
35
- visited.add(node);
36
- order.push(node);
37
- }
38
- };
39
- for (const node of Object.keys(graph)) {
40
- if (!visited.has(node)) {
41
- visit(node);
42
- }
43
- }
44
- order.reverse();
45
- const orderedEntities = order
46
- .map(name => entities.find(e => e.name === name))
47
- .filter((e) => e !== undefined);
48
- return orderedEntities;
49
- }
50
- catch (error) {
51
- this.logger.error(`Error ordering entities by dependency: ${error.message}`);
52
- return entities;
53
- }
54
- }
55
- async buildDependencyMap(schemaName) {
56
- const query = `
57
- SELECT
58
- tc.table_name,
59
- ccu.table_name AS referenced_table
60
- FROM
61
- information_schema.table_constraints tc
62
- JOIN information_schema.constraint_column_usage ccu
63
- ON ccu.constraint_name = tc.constraint_name
64
- AND ccu.table_schema = tc.table_schema
65
- WHERE
66
- tc.constraint_type = 'FOREIGN KEY'
67
- AND tc.table_schema = $1
68
- GROUP BY tc.table_name, ccu.table_name;
69
- `;
70
- const { rows } = await this.targetPool.query(query, [schemaName]);
71
- const dependencyMap = {};
72
- for (const row of rows) {
73
- const table = row.table_name;
74
- const referencedTable = row.referenced_table;
75
- if (!dependencyMap[table]) {
76
- dependencyMap[table] = [];
77
- }
78
- if (table !== referencedTable) {
79
- dependencyMap[table].push(referencedTable);
80
- }
81
- }
82
- return dependencyMap;
83
- }
84
- }
85
- exports.DependencyManager = DependencyManager;
86
- //# sourceMappingURL=dependency-manager.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"dependency-manager.js","sourceRoot":"","sources":["../../../src/scripts/data-migration/dependency-manager.ts"],"names":[],"mappings":"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"}