bpmnlint-plugin-camunda-compat 2.26.1 → 2.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -20
- package/README.md +39 -39
- package/index.js +18 -1
- package/package.json +1 -1
- package/rules/camunda-cloud/called-element.js +42 -42
- package/rules/camunda-cloud/collapsed-subprocess.js +40 -40
- package/rules/camunda-cloud/connector-properties/config.js +90 -90
- package/rules/camunda-cloud/connector-properties/index.js +47 -47
- package/rules/camunda-cloud/duplicate-execution-listeners.js +33 -33
- package/rules/camunda-cloud/duplicate-task-headers.js +58 -58
- package/rules/camunda-cloud/element-type/config.js +66 -66
- package/rules/camunda-cloud/element-type/index.js +133 -133
- package/rules/camunda-cloud/error-reference.js +71 -71
- package/rules/camunda-cloud/escalation-boundary-event-attached-to-ref.js +48 -48
- package/rules/camunda-cloud/escalation-reference.js +66 -66
- package/rules/camunda-cloud/event-based-gateway-target.js +38 -38
- package/rules/camunda-cloud/executable-process.js +61 -61
- package/rules/camunda-cloud/execution-listener.js +34 -34
- package/rules/camunda-cloud/feel.js +85 -85
- package/rules/camunda-cloud/implementation/config.js +19 -16
- package/rules/camunda-cloud/implementation/index.js +218 -218
- package/rules/camunda-cloud/inclusive-gateway.js +35 -35
- package/rules/camunda-cloud/link-event.js +142 -142
- package/rules/camunda-cloud/loop-characteristics.js +66 -66
- package/rules/camunda-cloud/message-reference.js +60 -60
- package/rules/camunda-cloud/no-binding-type.js +43 -43
- package/rules/camunda-cloud/no-candidate-users.js +38 -38
- package/rules/camunda-cloud/no-execution-listeners.js +21 -21
- package/rules/camunda-cloud/no-expression.js +173 -173
- package/rules/camunda-cloud/no-loop.js +316 -316
- package/rules/camunda-cloud/no-multiple-none-start-events.js +41 -41
- package/rules/camunda-cloud/no-priority-definition.js +18 -18
- package/rules/camunda-cloud/no-propagate-all-parent-variables.js +44 -44
- package/rules/camunda-cloud/no-signal-event-sub-process.js +45 -45
- package/rules/camunda-cloud/no-task-schedule.js +18 -18
- package/rules/camunda-cloud/no-template.js +23 -23
- package/rules/camunda-cloud/no-zeebe-properties.js +18 -18
- package/rules/camunda-cloud/no-zeebe-user-task.js +27 -27
- package/rules/camunda-cloud/priority-definition.js +61 -61
- package/rules/camunda-cloud/secrets.js +119 -119
- package/rules/camunda-cloud/sequence-flow-condition.js +56 -56
- package/rules/camunda-cloud/signal-reference.js +64 -64
- package/rules/camunda-cloud/start-event-form.js +97 -97
- package/rules/camunda-cloud/subscription.js +65 -65
- package/rules/camunda-cloud/task-schedule.js +67 -67
- package/rules/camunda-cloud/timer/config.js +46 -46
- package/rules/camunda-cloud/timer/index.js +183 -183
- package/rules/camunda-cloud/user-task-definition.js +24 -24
- package/rules/camunda-cloud/user-task-form.js +142 -142
- package/rules/camunda-cloud/wait-for-completion.js +46 -46
- package/rules/camunda-cloud/zeebe-user-task.js +25 -0
- package/rules/camunda-platform/history-time-to-live.js +19 -19
- package/rules/utils/cron.js +95 -95
- package/rules/utils/element.js +533 -533
- package/rules/utils/error-types.js +25 -25
- package/rules/utils/iso8601.js +52 -52
- package/rules/utils/reporter.js +37 -37
- package/rules/utils/rule.js +46 -46
- package/rules/utils/version.js +4 -4
package/LICENSE
CHANGED
@@ -1,21 +1,21 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
|
3
|
-
Copyright (c) 2021-present bpmn.io Contributors
|
4
|
-
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
7
|
-
in the Software without restriction, including without limitation the rights
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
10
|
-
furnished to do so, subject to the following conditions:
|
11
|
-
|
12
|
-
The above copyright notice and this permission notice shall be included in
|
13
|
-
all copies or substantial portions of the Software.
|
14
|
-
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2021-present bpmn.io Contributors
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in
|
13
|
+
all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
21
|
THE SOFTWARE.
|
package/README.md
CHANGED
@@ -1,39 +1,39 @@
|
|
1
|
-
# bpmnlint-plugin-camunda-compat
|
2
|
-
|
3
|
-
[](https://github.com/camunda/bpmnlint-plugin-camunda-compat/actions?query=workflow%3ACI)
|
4
|
-
|
5
|
-
A [bpmnlint](https://github.com/bpmn-io/bpmnlint) plug-in that checks whether a given BPMN process can be executed with [Camunda](https://camunda.com/).
|
6
|
-
|
7
|
-
|
8
|
-
## Usage
|
9
|
-
|
10
|
-
Add configuration corresponding to your execution platform and version to your [`.bpmnlintrc` configuration](https://github.com/bpmn-io/bpmnlint#configuration):
|
11
|
-
|
12
|
-
```json
|
13
|
-
{
|
14
|
-
"extends": [
|
15
|
-
"bpmnlint:recommended",
|
16
|
-
"plugin:camunda-compat/camunda-cloud-8-0"
|
17
|
-
],
|
18
|
-
"rules": {
|
19
|
-
"camunda-compat/timer": "off"
|
20
|
-
}
|
21
|
-
}
|
22
|
-
```
|
23
|
-
|
24
|
-
Use [`@camunda/linting`](https://github.com/camunda/linting) to configure the linter dynamically based on the [execution platform and version](https://github.com/camunda/modeler-moddle).
|
25
|
-
|
26
|
-
|
27
|
-
## Resources
|
28
|
-
|
29
|
-
* [Issues](https://github.com/camunda/bpmnlint-plugin-camunda-compat/issues)
|
30
|
-
|
31
|
-
|
32
|
-
## Related
|
33
|
-
|
34
|
-
* BPMN coverage for [Camunda 8](https://docs.camunda.io/docs/reference/bpmn-processes/bpmn-coverage/) and [Camunda 7](https://docs.camunda.org/manual/latest/reference/bpmn20/)
|
35
|
-
|
36
|
-
|
37
|
-
## License
|
38
|
-
|
39
|
-
MIT
|
1
|
+
# bpmnlint-plugin-camunda-compat
|
2
|
+
|
3
|
+
[](https://github.com/camunda/bpmnlint-plugin-camunda-compat/actions?query=workflow%3ACI)
|
4
|
+
|
5
|
+
A [bpmnlint](https://github.com/bpmn-io/bpmnlint) plug-in that checks whether a given BPMN process can be executed with [Camunda](https://camunda.com/).
|
6
|
+
|
7
|
+
|
8
|
+
## Usage
|
9
|
+
|
10
|
+
Add configuration corresponding to your execution platform and version to your [`.bpmnlintrc` configuration](https://github.com/bpmn-io/bpmnlint#configuration):
|
11
|
+
|
12
|
+
```json
|
13
|
+
{
|
14
|
+
"extends": [
|
15
|
+
"bpmnlint:recommended",
|
16
|
+
"plugin:camunda-compat/camunda-cloud-8-0"
|
17
|
+
],
|
18
|
+
"rules": {
|
19
|
+
"camunda-compat/timer": "off"
|
20
|
+
}
|
21
|
+
}
|
22
|
+
```
|
23
|
+
|
24
|
+
Use [`@camunda/linting`](https://github.com/camunda/linting) to configure the linter dynamically based on the [execution platform and version](https://github.com/camunda/modeler-moddle).
|
25
|
+
|
26
|
+
|
27
|
+
## Resources
|
28
|
+
|
29
|
+
* [Issues](https://github.com/camunda/bpmnlint-plugin-camunda-compat/issues)
|
30
|
+
|
31
|
+
|
32
|
+
## Related
|
33
|
+
|
34
|
+
* BPMN coverage for [Camunda 8](https://docs.camunda.io/docs/reference/bpmn-processes/bpmn-coverage/) and [Camunda 7](https://docs.camunda.org/manual/latest/reference/bpmn20/)
|
35
|
+
|
36
|
+
|
37
|
+
## License
|
38
|
+
|
39
|
+
MIT
|
package/index.js
CHANGED
@@ -93,6 +93,11 @@ const camundaCloud86Rules = withConfig({
|
|
93
93
|
'version-tag': 'error'
|
94
94
|
}, { version: '8.6' });
|
95
95
|
|
96
|
+
const camundaCloud87Rules = withConfig({
|
97
|
+
...camundaCloud86Rules,
|
98
|
+
'zeebe-user-task': 'error'
|
99
|
+
}, { version: '8.7' });
|
100
|
+
|
96
101
|
const camundaPlatform719Rules = withConfig({
|
97
102
|
'history-time-to-live': 'info'
|
98
103
|
}, {
|
@@ -115,6 +120,11 @@ const camundaPlatform722Rules = withConfig(camundaPlatform721Rules, {
|
|
115
120
|
version: '7.22'
|
116
121
|
});
|
117
122
|
|
123
|
+
const camundaPlatform723Rules = withConfig(camundaPlatform721Rules, {
|
124
|
+
platform: 'camunda-platform',
|
125
|
+
version: '7.23'
|
126
|
+
});
|
127
|
+
|
118
128
|
const rules = {
|
119
129
|
'element-type': './rules/camunda-cloud/element-type',
|
120
130
|
'called-element': './rules/camunda-cloud/called-element',
|
@@ -160,7 +170,8 @@ const rules = {
|
|
160
170
|
'user-task-definition': './rules/camunda-cloud/user-task-definition',
|
161
171
|
'user-task-form': './rules/camunda-cloud/user-task-form',
|
162
172
|
'version-tag': './rules/camunda-cloud/version-tag',
|
163
|
-
'wait-for-completion': './rules/camunda-cloud/wait-for-completion'
|
173
|
+
'wait-for-completion': './rules/camunda-cloud/wait-for-completion',
|
174
|
+
'zeebe-user-task': './rules/camunda-cloud/zeebe-user-task'
|
164
175
|
};
|
165
176
|
|
166
177
|
const configs = {
|
@@ -197,6 +208,9 @@ const configs = {
|
|
197
208
|
'camunda-cloud-8-6': {
|
198
209
|
rules: camundaCloud86Rules
|
199
210
|
},
|
211
|
+
'camunda-cloud-8-7': {
|
212
|
+
rules: camundaCloud87Rules
|
213
|
+
},
|
200
214
|
'camunda-platform-7-19': {
|
201
215
|
rules: camundaPlatform719Rules
|
202
216
|
},
|
@@ -208,6 +222,9 @@ const configs = {
|
|
208
222
|
},
|
209
223
|
'camunda-platform-7-22': {
|
210
224
|
rules: camundaPlatform722Rules
|
225
|
+
},
|
226
|
+
'camunda-platform-7-23': {
|
227
|
+
rules: camundaPlatform723Rules
|
211
228
|
}
|
212
229
|
};
|
213
230
|
|
package/package.json
CHANGED
@@ -1,43 +1,43 @@
|
|
1
|
-
const { is } = require('bpmnlint-utils');
|
2
|
-
|
3
|
-
const {
|
4
|
-
findExtensionElement,
|
5
|
-
hasExtensionElement,
|
6
|
-
hasProperties
|
7
|
-
} = require('../utils/element');
|
8
|
-
|
9
|
-
const { reportErrors } = require('../utils/reporter');
|
10
|
-
|
11
|
-
const { skipInNonExecutableProcess } = require('../utils/rule');
|
12
|
-
|
13
|
-
module.exports = skipInNonExecutableProcess(function() {
|
14
|
-
function check(node, reporter) {
|
15
|
-
if (!is(node, 'bpmn:CallActivity')) {
|
16
|
-
return;
|
17
|
-
}
|
18
|
-
|
19
|
-
let errors = hasExtensionElement(node, 'zeebe:CalledElement', node);
|
20
|
-
|
21
|
-
if (errors && errors.length) {
|
22
|
-
reportErrors(node, reporter, errors);
|
23
|
-
|
24
|
-
return;
|
25
|
-
}
|
26
|
-
|
27
|
-
const calledElement = findExtensionElement(node, 'zeebe:CalledElement');
|
28
|
-
|
29
|
-
errors = hasProperties(calledElement, {
|
30
|
-
processId: {
|
31
|
-
required: true
|
32
|
-
}
|
33
|
-
}, node);
|
34
|
-
|
35
|
-
if (errors && errors.length) {
|
36
|
-
reportErrors(node, reporter, errors);
|
37
|
-
}
|
38
|
-
}
|
39
|
-
|
40
|
-
return {
|
41
|
-
check
|
42
|
-
};
|
1
|
+
const { is } = require('bpmnlint-utils');
|
2
|
+
|
3
|
+
const {
|
4
|
+
findExtensionElement,
|
5
|
+
hasExtensionElement,
|
6
|
+
hasProperties
|
7
|
+
} = require('../utils/element');
|
8
|
+
|
9
|
+
const { reportErrors } = require('../utils/reporter');
|
10
|
+
|
11
|
+
const { skipInNonExecutableProcess } = require('../utils/rule');
|
12
|
+
|
13
|
+
module.exports = skipInNonExecutableProcess(function() {
|
14
|
+
function check(node, reporter) {
|
15
|
+
if (!is(node, 'bpmn:CallActivity')) {
|
16
|
+
return;
|
17
|
+
}
|
18
|
+
|
19
|
+
let errors = hasExtensionElement(node, 'zeebe:CalledElement', node);
|
20
|
+
|
21
|
+
if (errors && errors.length) {
|
22
|
+
reportErrors(node, reporter, errors);
|
23
|
+
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
|
27
|
+
const calledElement = findExtensionElement(node, 'zeebe:CalledElement');
|
28
|
+
|
29
|
+
errors = hasProperties(calledElement, {
|
30
|
+
processId: {
|
31
|
+
required: true
|
32
|
+
}
|
33
|
+
}, node);
|
34
|
+
|
35
|
+
if (errors && errors.length) {
|
36
|
+
reportErrors(node, reporter, errors);
|
37
|
+
}
|
38
|
+
}
|
39
|
+
|
40
|
+
return {
|
41
|
+
check
|
42
|
+
};
|
43
43
|
});
|
@@ -1,40 +1,40 @@
|
|
1
|
-
const { is } = require('bpmnlint-utils');
|
2
|
-
|
3
|
-
const { ERROR_TYPES } = require('../utils/element');
|
4
|
-
|
5
|
-
const { reportErrors } = require('../utils/reporter');
|
6
|
-
|
7
|
-
const { skipInNonExecutableProcess } = require('../utils/rule');
|
8
|
-
|
9
|
-
module.exports = skipInNonExecutableProcess(function() {
|
10
|
-
function check(di, reporter) {
|
11
|
-
|
12
|
-
if (!isCollapsedSubProcess(di)) {
|
13
|
-
return;
|
14
|
-
}
|
15
|
-
|
16
|
-
const node = di.bpmnElement;
|
17
|
-
|
18
|
-
const error = {
|
19
|
-
message: `A <${ node.$type }> must be expanded`,
|
20
|
-
data: {
|
21
|
-
type: ERROR_TYPES.ELEMENT_COLLAPSED_NOT_ALLOWED,
|
22
|
-
node: node,
|
23
|
-
parentNode: null,
|
24
|
-
allowedVersion: '8.4'
|
25
|
-
}
|
26
|
-
};
|
27
|
-
|
28
|
-
reportErrors(node, reporter, error);
|
29
|
-
}
|
30
|
-
|
31
|
-
return {
|
32
|
-
check
|
33
|
-
};
|
34
|
-
});
|
35
|
-
|
36
|
-
function isCollapsedSubProcess(di) {
|
37
|
-
return is(di, 'bpmndi:BPMNShape') &&
|
38
|
-
is(di.get('bpmnElement'), 'bpmn:SubProcess') &&
|
39
|
-
di.get('isExpanded') !== true;
|
40
|
-
}
|
1
|
+
const { is } = require('bpmnlint-utils');
|
2
|
+
|
3
|
+
const { ERROR_TYPES } = require('../utils/element');
|
4
|
+
|
5
|
+
const { reportErrors } = require('../utils/reporter');
|
6
|
+
|
7
|
+
const { skipInNonExecutableProcess } = require('../utils/rule');
|
8
|
+
|
9
|
+
module.exports = skipInNonExecutableProcess(function() {
|
10
|
+
function check(di, reporter) {
|
11
|
+
|
12
|
+
if (!isCollapsedSubProcess(di)) {
|
13
|
+
return;
|
14
|
+
}
|
15
|
+
|
16
|
+
const node = di.bpmnElement;
|
17
|
+
|
18
|
+
const error = {
|
19
|
+
message: `A <${ node.$type }> must be expanded`,
|
20
|
+
data: {
|
21
|
+
type: ERROR_TYPES.ELEMENT_COLLAPSED_NOT_ALLOWED,
|
22
|
+
node: node,
|
23
|
+
parentNode: null,
|
24
|
+
allowedVersion: '8.4'
|
25
|
+
}
|
26
|
+
};
|
27
|
+
|
28
|
+
reportErrors(node, reporter, error);
|
29
|
+
}
|
30
|
+
|
31
|
+
return {
|
32
|
+
check
|
33
|
+
};
|
34
|
+
});
|
35
|
+
|
36
|
+
function isCollapsedSubProcess(di) {
|
37
|
+
return is(di, 'bpmndi:BPMNShape') &&
|
38
|
+
is(di.get('bpmnElement'), 'bpmn:SubProcess') &&
|
39
|
+
di.get('isExpanded') !== true;
|
40
|
+
}
|
@@ -1,91 +1,91 @@
|
|
1
|
-
const { getPath } = require('@bpmn-io/moddle-utils');
|
2
|
-
|
3
|
-
const { findExtensionElement } = require('../../utils/element');
|
4
|
-
|
5
|
-
const { ERROR_TYPES } = require('../../utils/error-types');
|
6
|
-
|
7
|
-
const INBOUND_CONNECTOR_PROPERTY = 'inbound.type';
|
8
|
-
|
9
|
-
module.exports = {
|
10
|
-
messageTtl: {
|
11
|
-
version: '8.6',
|
12
|
-
getError: (node) => getInboundConnectorError(node, 'messageTtl', '8.6'),
|
13
|
-
getProperty: (node) => getZeebeProperty(node, 'messageTtl'),
|
14
|
-
isConnector: (node) => isInboundConnector(node, [
|
15
|
-
'io.camunda:webhook:1',
|
16
|
-
'io.camunda:connector-rabbitmq-inbound:1',
|
17
|
-
'io.camunda:http-polling:1',
|
18
|
-
'io.camunda:connector-kafka-inbound:1',
|
19
|
-
'io.camunda:slack-webhook:1',
|
20
|
-
'io.camunda:aws-sqs-inbound:1',
|
21
|
-
'io.camunda:aws-sns-webhook:1'
|
22
|
-
])
|
23
|
-
},
|
24
|
-
consumeUnmatchedEvents: {
|
25
|
-
version: '8.6',
|
26
|
-
getError: (node) => getInboundConnectorError(node, 'consumeUnmatchedEvents', '8.6'),
|
27
|
-
getProperty: (node) => getZeebeProperty(node, 'consumeUnmatchedEvents'),
|
28
|
-
isConnector: (node) => isInboundConnector(node, [
|
29
|
-
'io.camunda:webhook:1',
|
30
|
-
'io.camunda:connector-rabbitmq-inbound:1',
|
31
|
-
'io.camunda:http-polling:1',
|
32
|
-
'io.camunda:connector-kafka-inbound:1',
|
33
|
-
'io.camunda:slack-webhook:1',
|
34
|
-
'io.camunda:aws-sqs-inbound:1',
|
35
|
-
'io.camunda:aws-sns-webhook:1'
|
36
|
-
])
|
37
|
-
},
|
38
|
-
deduplicationModeManualFlag: {
|
39
|
-
version: '8.6',
|
40
|
-
getError: (node) => getInboundConnectorError(node, 'deduplicationModeManualFlag', '8.6'),
|
41
|
-
getProperty: (node) => getZeebeProperty(node, 'deduplicationModeManualFlag'),
|
42
|
-
isConnector: (node) => isInboundConnector(node, [
|
43
|
-
'io.camunda:connector-rabbitmq-inbound:1',
|
44
|
-
'io.camunda:http-polling:1',
|
45
|
-
'io.camunda:connector-kafka-inbound:1',
|
46
|
-
'io.camunda:aws-sqs-inbound:1'
|
47
|
-
])
|
48
|
-
}
|
49
|
-
};
|
50
|
-
|
51
|
-
function isInboundConnector(node, names) {
|
52
|
-
const zeebeProperty = getZeebeProperty(node, INBOUND_CONNECTOR_PROPERTY);
|
53
|
-
|
54
|
-
return zeebeProperty && names.includes(zeebeProperty.get('value'));
|
55
|
-
}
|
56
|
-
|
57
|
-
function getZeebeProperty(node, propertyName) {
|
58
|
-
const zeebeProperties = findExtensionElement(node, 'zeebe:Properties');
|
59
|
-
|
60
|
-
if (!zeebeProperties) {
|
61
|
-
return false;
|
62
|
-
}
|
63
|
-
|
64
|
-
return zeebeProperties.get('properties').find(property => {
|
65
|
-
return property.get('name') === propertyName;
|
66
|
-
});
|
67
|
-
}
|
68
|
-
|
69
|
-
function getInboundConnectorError(node, propertyName, allowedVersion) {
|
70
|
-
const property = getZeebeProperty(node, propertyName);
|
71
|
-
|
72
|
-
const connectorProperty = getZeebeProperty(node, INBOUND_CONNECTOR_PROPERTY);
|
73
|
-
|
74
|
-
const path = getPath(property, node);
|
75
|
-
|
76
|
-
return {
|
77
|
-
message: `Connector property <name> with value <${ propertyName }> only allowed by Camunda ${ allowedVersion } or newer.`,
|
78
|
-
path: path ? [ ...path, 'name' ] : [ 'name' ],
|
79
|
-
data: {
|
80
|
-
type: ERROR_TYPES.CONNECTORS_PROPERTY_VALUE_NOT_ALLOWED,
|
81
|
-
node: property,
|
82
|
-
parentNode: node,
|
83
|
-
property: 'name',
|
84
|
-
allowedVersion,
|
85
|
-
connectorProperty: {
|
86
|
-
node: connectorProperty,
|
87
|
-
properties: [ 'name', 'value' ]
|
88
|
-
}
|
89
|
-
}
|
90
|
-
};
|
1
|
+
const { getPath } = require('@bpmn-io/moddle-utils');
|
2
|
+
|
3
|
+
const { findExtensionElement } = require('../../utils/element');
|
4
|
+
|
5
|
+
const { ERROR_TYPES } = require('../../utils/error-types');
|
6
|
+
|
7
|
+
const INBOUND_CONNECTOR_PROPERTY = 'inbound.type';
|
8
|
+
|
9
|
+
module.exports = {
|
10
|
+
messageTtl: {
|
11
|
+
version: '8.6',
|
12
|
+
getError: (node) => getInboundConnectorError(node, 'messageTtl', '8.6'),
|
13
|
+
getProperty: (node) => getZeebeProperty(node, 'messageTtl'),
|
14
|
+
isConnector: (node) => isInboundConnector(node, [
|
15
|
+
'io.camunda:webhook:1',
|
16
|
+
'io.camunda:connector-rabbitmq-inbound:1',
|
17
|
+
'io.camunda:http-polling:1',
|
18
|
+
'io.camunda:connector-kafka-inbound:1',
|
19
|
+
'io.camunda:slack-webhook:1',
|
20
|
+
'io.camunda:aws-sqs-inbound:1',
|
21
|
+
'io.camunda:aws-sns-webhook:1'
|
22
|
+
])
|
23
|
+
},
|
24
|
+
consumeUnmatchedEvents: {
|
25
|
+
version: '8.6',
|
26
|
+
getError: (node) => getInboundConnectorError(node, 'consumeUnmatchedEvents', '8.6'),
|
27
|
+
getProperty: (node) => getZeebeProperty(node, 'consumeUnmatchedEvents'),
|
28
|
+
isConnector: (node) => isInboundConnector(node, [
|
29
|
+
'io.camunda:webhook:1',
|
30
|
+
'io.camunda:connector-rabbitmq-inbound:1',
|
31
|
+
'io.camunda:http-polling:1',
|
32
|
+
'io.camunda:connector-kafka-inbound:1',
|
33
|
+
'io.camunda:slack-webhook:1',
|
34
|
+
'io.camunda:aws-sqs-inbound:1',
|
35
|
+
'io.camunda:aws-sns-webhook:1'
|
36
|
+
])
|
37
|
+
},
|
38
|
+
deduplicationModeManualFlag: {
|
39
|
+
version: '8.6',
|
40
|
+
getError: (node) => getInboundConnectorError(node, 'deduplicationModeManualFlag', '8.6'),
|
41
|
+
getProperty: (node) => getZeebeProperty(node, 'deduplicationModeManualFlag'),
|
42
|
+
isConnector: (node) => isInboundConnector(node, [
|
43
|
+
'io.camunda:connector-rabbitmq-inbound:1',
|
44
|
+
'io.camunda:http-polling:1',
|
45
|
+
'io.camunda:connector-kafka-inbound:1',
|
46
|
+
'io.camunda:aws-sqs-inbound:1'
|
47
|
+
])
|
48
|
+
}
|
49
|
+
};
|
50
|
+
|
51
|
+
function isInboundConnector(node, names) {
|
52
|
+
const zeebeProperty = getZeebeProperty(node, INBOUND_CONNECTOR_PROPERTY);
|
53
|
+
|
54
|
+
return zeebeProperty && names.includes(zeebeProperty.get('value'));
|
55
|
+
}
|
56
|
+
|
57
|
+
function getZeebeProperty(node, propertyName) {
|
58
|
+
const zeebeProperties = findExtensionElement(node, 'zeebe:Properties');
|
59
|
+
|
60
|
+
if (!zeebeProperties) {
|
61
|
+
return false;
|
62
|
+
}
|
63
|
+
|
64
|
+
return zeebeProperties.get('properties').find(property => {
|
65
|
+
return property.get('name') === propertyName;
|
66
|
+
});
|
67
|
+
}
|
68
|
+
|
69
|
+
function getInboundConnectorError(node, propertyName, allowedVersion) {
|
70
|
+
const property = getZeebeProperty(node, propertyName);
|
71
|
+
|
72
|
+
const connectorProperty = getZeebeProperty(node, INBOUND_CONNECTOR_PROPERTY);
|
73
|
+
|
74
|
+
const path = getPath(property, node);
|
75
|
+
|
76
|
+
return {
|
77
|
+
message: `Connector property <name> with value <${ propertyName }> only allowed by Camunda ${ allowedVersion } or newer.`,
|
78
|
+
path: path ? [ ...path, 'name' ] : [ 'name' ],
|
79
|
+
data: {
|
80
|
+
type: ERROR_TYPES.CONNECTORS_PROPERTY_VALUE_NOT_ALLOWED,
|
81
|
+
node: property,
|
82
|
+
parentNode: node,
|
83
|
+
property: 'name',
|
84
|
+
allowedVersion,
|
85
|
+
connectorProperty: {
|
86
|
+
node: connectorProperty,
|
87
|
+
properties: [ 'name', 'value' ]
|
88
|
+
}
|
89
|
+
}
|
90
|
+
};
|
91
91
|
}
|
@@ -1,47 +1,47 @@
|
|
1
|
-
const { isAny } = require('bpmnlint-utils');
|
2
|
-
|
3
|
-
const config = require('./config');
|
4
|
-
|
5
|
-
const { reportErrors } = require('../../utils/reporter');
|
6
|
-
|
7
|
-
const { skipInNonExecutableProcess } = require('../../utils/rule');
|
8
|
-
|
9
|
-
const { greaterOrEqual } = require('../../utils/version');
|
10
|
-
|
11
|
-
module.exports = skipInNonExecutableProcess(function({ version }) {
|
12
|
-
function check(node, reporter) {
|
13
|
-
if (!isAny(node, [ 'bpmn:FlowElement', 'bpmn:FlowElementsContainer' ])) {
|
14
|
-
return;
|
15
|
-
}
|
16
|
-
|
17
|
-
const errors = Object.entries(config).reduce((errors, [ propertyName, {
|
18
|
-
getError,
|
19
|
-
getProperty,
|
20
|
-
isConnector,
|
21
|
-
version: allowedVersion
|
22
|
-
} ]) => {
|
23
|
-
if (greaterOrEqual(version, allowedVersion) || !isConnector(node)) {
|
24
|
-
return errors;
|
25
|
-
}
|
26
|
-
|
27
|
-
const property = getProperty(node);
|
28
|
-
|
29
|
-
if (property) {
|
30
|
-
return [
|
31
|
-
...errors,
|
32
|
-
getError(node)
|
33
|
-
];
|
34
|
-
}
|
35
|
-
|
36
|
-
return errors;
|
37
|
-
}, []);
|
38
|
-
|
39
|
-
if (errors.length) {
|
40
|
-
reportErrors(node, reporter, errors);
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
return {
|
45
|
-
check
|
46
|
-
};
|
47
|
-
});
|
1
|
+
const { isAny } = require('bpmnlint-utils');
|
2
|
+
|
3
|
+
const config = require('./config');
|
4
|
+
|
5
|
+
const { reportErrors } = require('../../utils/reporter');
|
6
|
+
|
7
|
+
const { skipInNonExecutableProcess } = require('../../utils/rule');
|
8
|
+
|
9
|
+
const { greaterOrEqual } = require('../../utils/version');
|
10
|
+
|
11
|
+
module.exports = skipInNonExecutableProcess(function({ version }) {
|
12
|
+
function check(node, reporter) {
|
13
|
+
if (!isAny(node, [ 'bpmn:FlowElement', 'bpmn:FlowElementsContainer' ])) {
|
14
|
+
return;
|
15
|
+
}
|
16
|
+
|
17
|
+
const errors = Object.entries(config).reduce((errors, [ propertyName, {
|
18
|
+
getError,
|
19
|
+
getProperty,
|
20
|
+
isConnector,
|
21
|
+
version: allowedVersion
|
22
|
+
} ]) => {
|
23
|
+
if (greaterOrEqual(version, allowedVersion) || !isConnector(node)) {
|
24
|
+
return errors;
|
25
|
+
}
|
26
|
+
|
27
|
+
const property = getProperty(node);
|
28
|
+
|
29
|
+
if (property) {
|
30
|
+
return [
|
31
|
+
...errors,
|
32
|
+
getError(node)
|
33
|
+
];
|
34
|
+
}
|
35
|
+
|
36
|
+
return errors;
|
37
|
+
}, []);
|
38
|
+
|
39
|
+
if (errors.length) {
|
40
|
+
reportErrors(node, reporter, errors);
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
return {
|
45
|
+
check
|
46
|
+
};
|
47
|
+
});
|