mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
added basic ssl capability to postgres node
This commit is contained in:
parent
3de03b5097
commit
2c64aad2eb
|
@ -35,6 +35,19 @@ export class Postgres implements ICredentialType {
|
|||
},
|
||||
default: '',
|
||||
},
|
||||
{
|
||||
displayName: 'SSL',
|
||||
name: 'ssl',
|
||||
type: 'options' as NodePropertyTypes,
|
||||
options: [
|
||||
{ name: 'disable', value: 'disable' },
|
||||
{ name: 'allow', value: 'allow' },
|
||||
{ name: 'require', value: 'require' },
|
||||
{ name: 'verify', value: 'verify (not implemented)' },
|
||||
{ name: 'verify-full', value: 'verify-full (not implemented)' }
|
||||
],
|
||||
default: 'disable',
|
||||
},
|
||||
{
|
||||
displayName: 'Port',
|
||||
name: 'port',
|
||||
|
|
|
@ -202,7 +202,19 @@ export class Postgres implements INodeType {
|
|||
|
||||
const pgp = pgPromise();
|
||||
|
||||
const db = pgp(`postgres://${credentials.user}:${credentials.password}@${credentials.host}:${credentials.port}/${credentials.database}`);
|
||||
const config = {
|
||||
host: credentials.host as string,
|
||||
port: credentials.port as number,
|
||||
database: credentials.database as string,
|
||||
user: credentials.user as string,
|
||||
password: credentials.password as string,
|
||||
ssl: credentials.ssl != 'disable',
|
||||
sslmode: credentials.ssl as string
|
||||
};
|
||||
|
||||
const db = pgp(config);
|
||||
|
||||
//const db = pgp(`postgres://${credentials.user}:${credentials.password}@${credentials.host}:${credentials.port}/${credentials.database}`);
|
||||
|
||||
let returnItems = [];
|
||||
|
||||
|
|
Loading…
Reference in a new issue