mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
99 lines
3.9 KiB
TypeScript
99 lines
3.9 KiB
TypeScript
import { MigrationInterface, QueryRunner } from 'typeorm';
|
|
import { Organization } from '@entities/organization.entity';
|
|
import { defaultAppEnvironments, getTooljetEdition } from '@helpers/utils.helper';
|
|
import { AppEnvironment } from '@entities/app_environments.entity';
|
|
import { DataSourceOptions } from '@entities/data_source_options.entity';
|
|
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from '@modules/app/module';
|
|
import { filterEncryptedFromOptions } from '@helpers/migration.helper';
|
|
import { TOOLJET_EDITIONS, getImportPath } from '@modules/app/constants';
|
|
|
|
export class addMultipleEnvForCEcreatedApps1681463532466 implements MigrationInterface {
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
const edition: TOOLJET_EDITIONS = getTooljetEdition() as TOOLJET_EDITIONS;
|
|
// if (edition !== TOOLJET_EDITIONS.EE) {
|
|
// console.log('Skipping migration as it is not EE edition');
|
|
// return;
|
|
// }
|
|
|
|
const entityManager = queryRunner.manager;
|
|
// Fetch all organizations with their app environments
|
|
const organizations = await entityManager.find(Organization, {
|
|
relations: ['appEnvironments'],
|
|
});
|
|
|
|
if (organizations?.length === 0) {
|
|
console.log('No organizations found, skipping migration.');
|
|
return;
|
|
}
|
|
|
|
const nestApp = await NestFactory.createApplicationContext(await AppModule.register({ IS_GET_CONTEXT: true }));
|
|
const { EncryptionService } = await import(`${await getImportPath(true, edition)}/encryption/service`);
|
|
const { CredentialsService } = await import(
|
|
`${await getImportPath(true, edition)}/encryption/services/credentials.service`
|
|
);
|
|
const encryptionService = nestApp.get(EncryptionService);
|
|
const credentialService = nestApp.get(CredentialsService);
|
|
|
|
for (const organization of organizations) {
|
|
const appEnvironments = organization.appEnvironments;
|
|
if (appEnvironments.length === 1) {
|
|
//fetch default datasource option (prod env)
|
|
const defaultEnv = appEnvironments[0];
|
|
const dataSourceOptions = await entityManager.find(DataSourceOptions, {
|
|
where: {
|
|
environmentId: defaultEnv.id,
|
|
},
|
|
});
|
|
|
|
//delete RestAPI Oauth token data
|
|
dataSourceOptions?.forEach((dso) => {
|
|
delete dso?.options?.tokenData;
|
|
});
|
|
|
|
/* rename the default environment to development and create the rest*/
|
|
const startingEnv = defaultAppEnvironments.find((env) => env.priority === 1);
|
|
await entityManager.update(AppEnvironment, defaultEnv.id, {
|
|
name: startingEnv.name,
|
|
isDefault: startingEnv.isDefault,
|
|
priority: startingEnv.priority,
|
|
});
|
|
|
|
// create other two environments
|
|
for (const { name, isDefault, priority } of defaultAppEnvironments.filter(
|
|
(env) => env.priority !== startingEnv.priority
|
|
)) {
|
|
const newEnvironment: AppEnvironment = await entityManager.save(
|
|
entityManager.create(AppEnvironment, {
|
|
name,
|
|
isDefault,
|
|
organizationId: organization.id,
|
|
priority,
|
|
})
|
|
);
|
|
|
|
for (const dsOption of dataSourceOptions) {
|
|
//copy the options and remove secrets, then create new one for new environments
|
|
const newOptions = await filterEncryptedFromOptions(
|
|
dsOption.options,
|
|
encryptionService,
|
|
credentialService,
|
|
true,
|
|
entityManager
|
|
);
|
|
|
|
await entityManager.save(
|
|
entityManager.create(DataSourceOptions, {
|
|
environmentId: newEnvironment.id,
|
|
options: newOptions,
|
|
dataSourceId: dsOption.dataSourceId,
|
|
})
|
|
);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
await nestApp.close();
|
|
}
|
|
public async down(queryRunner: QueryRunner): Promise<void> {}
|
|
}
|