mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
41088fcd9e
* added SSL support to MySQL.credentials and MySQL.node
* ⚡ hide certificate field data, change CA name
Co-authored-by: ahsan-virani <ahsan.virani@gmail.com>
111 lines
2 KiB
TypeScript
111 lines
2 KiB
TypeScript
import {
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class MySql implements ICredentialType {
|
|
name = 'mySql';
|
|
displayName = 'MySQL';
|
|
documentationUrl = 'mySql';
|
|
properties = [
|
|
{
|
|
displayName: 'Host',
|
|
name: 'host',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'localhost',
|
|
},
|
|
{
|
|
displayName: 'Database',
|
|
name: 'database',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'mysql',
|
|
},
|
|
{
|
|
displayName: 'User',
|
|
name: 'user',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: 'mysql',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string' as NodePropertyTypes,
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Port',
|
|
name: 'port',
|
|
type: 'number' as NodePropertyTypes,
|
|
default: 3306,
|
|
},
|
|
{
|
|
displayName: 'Connect Timeout',
|
|
name: 'connectTimeout',
|
|
type: 'number' as NodePropertyTypes,
|
|
default: 10000,
|
|
description: 'The milliseconds before a timeout occurs during the initial connection to the MySQL server.',
|
|
},
|
|
{
|
|
displayName: 'SSL',
|
|
name: 'ssl',
|
|
type: 'boolean' as NodePropertyTypes,
|
|
default: false,
|
|
},
|
|
{
|
|
displayName: 'CA Certificate',
|
|
name: 'caCertificate',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
password: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
ssl: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Client Private Key',
|
|
name: 'clientPrivateKey',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
password: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
ssl: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Client Certificate',
|
|
name: 'clientCertificate',
|
|
typeOptions: {
|
|
alwaysOpenEditWindow: true,
|
|
password: true,
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
ssl: [
|
|
true,
|
|
],
|
|
},
|
|
},
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
}
|