n8n/packages/nodes-base/nodes/Postgres/v2/methods/credentialTest.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
1.1 KiB
TypeScript
Raw Normal View History

2023-04-03 08:18:01 -07:00
import type {
ICredentialsDecrypted,
ICredentialTestFunctions,
INodeCredentialTestResult,
} from 'n8n-workflow';
import { configurePostgres } from '../../transport';
import type { PgpConnection, PostgresNodeCredentials } from '../helpers/interfaces';
2023-04-03 08:18:01 -07:00
export async function postgresConnectionTest(
this: ICredentialTestFunctions,
credential: ICredentialsDecrypted,
): Promise<INodeCredentialTestResult> {
const credentials = credential.data as PostgresNodeCredentials;
2023-04-03 08:18:01 -07:00
let connection: PgpConnection | undefined;
2023-04-03 08:18:01 -07:00
try {
const { db } = await configurePostgres.call(this, credentials, {});
2023-04-03 08:18:01 -07:00
connection = await db.connect();
2023-04-03 08:18:01 -07:00
} catch (error) {
let message = error.message as string;
if (error.message.includes('ECONNREFUSED')) {
message = 'Connection refused';
}
if (error.message.includes('ENOTFOUND')) {
message = 'Host not found, please check your host name';
}
if (error.message.includes('ETIMEDOUT')) {
message = 'Connection timed out';
}
return {
status: 'Error',
message,
};
} finally {
if (connection) {
await connection.done();
2023-04-03 08:18:01 -07:00
}
}
return {
status: 'OK',
message: 'Connection successful!',
};
}