forked from n8n-io/n8n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMqtt.credentials.ts
153 lines (149 loc) · 2.7 KB
/
Mqtt.credentials.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
import type { ICredentialType, IDisplayOptions, INodeProperties } from 'n8n-workflow';
export class Mqtt implements ICredentialType {
name = 'mqtt';
displayName = 'MQTT';
documentationUrl = 'mqtt';
properties: INodeProperties[] = [
{
displayName: 'Protocol',
name: 'protocol',
type: 'options',
options: [
{
name: 'Mqtt',
value: 'mqtt',
},
{
name: 'Mqtts',
value: 'mqtts',
},
{
name: 'Ws',
value: 'ws',
},
],
default: 'mqtt',
},
{
displayName: 'Host',
name: 'host',
type: 'string',
default: '',
},
{
displayName: 'Port',
name: 'port',
type: 'number',
default: 1883,
},
{
displayName: 'Username',
name: 'username',
type: 'string',
default: '',
},
{
displayName: 'Password',
name: 'password',
type: 'string',
typeOptions: {
password: true,
},
default: '',
},
{
displayName: 'Clean Session',
name: 'clean',
type: 'boolean',
default: true,
description:
'Whether to use clean session - set to false to receive QoS 1 and 2 messages while offline',
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
default: '',
description: 'Client ID. If left empty, one is autogenerated for you.',
},
{
displayName: 'SSL',
name: 'ssl',
type: 'boolean',
default: false,
},
{
displayName: 'Passwordless',
name: 'passwordless',
type: 'boolean',
displayOptions: {
show: {
ssl: [true],
},
},
default: true,
description:
'Whether to use passwordless connection with certificates (SASL mechanism EXTERNAL)',
},
{
displayName: 'CA Certificates',
name: 'ca',
type: 'string',
typeOptions: {
password: true,
},
displayOptions: {
show: {
ssl: [true],
},
},
default: '',
description: 'SSL CA Certificates to use',
},
{
displayName: 'Reject Unauthorized Certificate',
name: 'rejectUnauthorized',
type: 'boolean',
displayOptions: {
show: {
ssl: [true],
passwordless: [true],
},
} as IDisplayOptions,
default: false,
description: 'Whether to validate Certificate',
},
{
displayName: 'Client Certificate',
name: 'cert',
type: 'string',
typeOptions: {
password: true,
},
displayOptions: {
show: {
ssl: [true],
passwordless: [true],
},
} as IDisplayOptions,
default: '',
description: 'SSL Client Certificate to use',
},
{
displayName: 'Client Key',
name: 'key',
type: 'string',
typeOptions: {
password: true,
},
displayOptions: {
show: {
ssl: [true],
passwordless: [true],
},
},
default: '',
description: 'SSL Client Key to use',
},
];
}