2019-08-21 09:44:10 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
|
|
|
|
export class Postgres implements ICredentialType {
|
|
|
|
name = 'postgres';
|
|
|
|
displayName = 'Postgres';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'postgres';
|
2019-08-21 09:44:10 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Host',
|
|
|
|
name: 'host',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: 'localhost',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Database',
|
|
|
|
name: 'database',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: 'postgres',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'User',
|
|
|
|
name: 'user',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: 'postgres',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Password',
|
|
|
|
name: 'password',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
2020-08-25 08:02:01 -07:00
|
|
|
{
|
|
|
|
displayName: 'Ignore SSL Issues',
|
|
|
|
name: 'allowUnauthorizedCerts',
|
|
|
|
type: 'boolean' as NodePropertyTypes,
|
|
|
|
default: false,
|
|
|
|
description: 'Connect even if SSL certificate validation is not possible.',
|
|
|
|
},
|
2020-01-10 01:21:45 -08:00
|
|
|
{
|
|
|
|
displayName: 'SSL',
|
|
|
|
name: 'ssl',
|
|
|
|
type: 'options' as NodePropertyTypes,
|
2020-08-25 08:02:01 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
allowUnauthorizedCerts: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
2020-01-10 01:21:45 -08:00
|
|
|
options: [
|
2020-01-14 15:26:01 -08:00
|
|
|
{
|
|
|
|
name: 'disable',
|
|
|
|
value: 'disable',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'allow',
|
|
|
|
value: 'allow',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'require',
|
|
|
|
value: 'require',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'verify (not implemented)',
|
|
|
|
value: 'verify',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'verify-full (not implemented)',
|
|
|
|
value: 'verify-full',
|
|
|
|
}
|
2020-01-10 01:21:45 -08:00
|
|
|
],
|
|
|
|
default: 'disable',
|
|
|
|
},
|
2019-08-21 09:44:10 -07:00
|
|
|
{
|
|
|
|
displayName: 'Port',
|
|
|
|
name: 'port',
|
|
|
|
type: 'number' as NodePropertyTypes,
|
|
|
|
default: 5432,
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|