mirror of
https://github.com/twentyhq/twenty.git
synced 2024-12-18 00:52:21 +03:00
43 lines
1.1 KiB
TypeScript
43 lines
1.1 KiB
TypeScript
import { ConfigService } from '@nestjs/config';
|
|
|
|
import console from 'console';
|
|
|
|
import { config } from 'dotenv';
|
|
import { DataSource } from 'typeorm';
|
|
|
|
config();
|
|
const configService = new ConfigService();
|
|
|
|
export const connectionSource = new DataSource({
|
|
type: 'postgres',
|
|
logging: false,
|
|
url: configService.get<string>('PG_DATABASE_URL'),
|
|
});
|
|
|
|
export const camelToSnakeCase = (str) =>
|
|
str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`);
|
|
|
|
export const performQuery = async (
|
|
query: string,
|
|
consoleDescription: string,
|
|
withLog = true,
|
|
ignoreAlreadyExistsError = false,
|
|
) => {
|
|
try {
|
|
const result = await connectionSource.query(query);
|
|
|
|
withLog && console.log(`Performed '${consoleDescription}' successfully`);
|
|
|
|
return result;
|
|
} catch (err) {
|
|
let message = '';
|
|
|
|
if (ignoreAlreadyExistsError && `${err}`.includes('already exists')) {
|
|
message = `Performed '${consoleDescription}' successfully`;
|
|
} else {
|
|
message = `Failed to perform '${consoleDescription}': ${err}`;
|
|
}
|
|
withLog && console.error(message);
|
|
}
|
|
};
|