-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbpmn-lint.config.js
2555 lines (1951 loc) · 52 KB
/
bpmn-lint.config.js
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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
function getAugmentedNamespace(n) {
var f = n.default;
if (typeof f == "function") {
var a = function () {
return f.apply(this, arguments);
};
a.prototype = f.prototype;
} else a = {};
Object.defineProperty(a, '__esModule', {value: true});
Object.keys(n).forEach(function (k) {
var d = Object.getOwnPropertyDescriptor(n, k);
Object.defineProperty(a, k, d.get ? d : {
enumerable: true,
get: function () {
return n[k];
}
});
});
return a;
}
/**
* A rule that checks that sequence flows outgoing from a
* conditional forking gateway or activity are
* either default flows _or_ have a condition attached
*/
var conditionalFlows = function() {
function check(node, reporter) {
if (!isConditionalForking(node)) {
return;
}
const outgoing = node.outgoing || [];
outgoing.forEach((flow) => {
const missingCondition = (
!hasCondition$2(flow) &&
!isDefaultFlow$1(node, flow)
);
if (missingCondition) {
reporter.report(flow.id, 'Sequence flow is missing condition', [ 'conditionExpression' ]);
}
});
}
return {
check
};
};
// helpers /////////////////////////////
function isConditionalForking(node) {
const defaultFlow = node['default'];
const outgoing = node.outgoing || [];
return defaultFlow || outgoing.find(hasCondition$2);
}
function hasCondition$2(flow) {
return !!flow.conditionExpression;
}
function isDefaultFlow$1(node, flow) {
return node['default'] === flow;
}
/**
* Checks whether node is of specific bpmn type.
*
* @param {ModdleElement} node
* @param {String} type
*
* @return {Boolean}
*/
function is$j(node, type) {
if (type.indexOf(':') === -1) {
type = 'bpmn:' + type;
}
return (
(typeof node.$instanceOf === 'function')
? node.$instanceOf(type)
: node.$type === type
);
}
/**
* Checks whether node has any of the specified types.
*
* @param {ModdleElement} node
* @param {Array<String>} types
*
* @return {Boolean}
*/
function isAny$a(node, types) {
return types.some(function(type) {
return is$j(node, type);
});
}
var index_esm = /*#__PURE__*/Object.freeze({
__proto__: null,
is: is$j,
isAny: isAny$a
});
var require$$0 = /*@__PURE__*/getAugmentedNamespace(index_esm);
const {
is: is$i,
isAny: isAny$9
} = require$$0;
/**
* A rule that checks the presence of an end event per scope.
*/
var endEventRequired = function() {
function hasEndEvent(node) {
const flowElements = node.flowElements || [];
return (
flowElements.some(node => is$i(node, 'bpmn:EndEvent'))
);
}
function check(node, reporter) {
if (!isAny$9(node, [
'bpmn:Process',
'bpmn:SubProcess'
])) {
return;
}
if (!hasEndEvent(node)) {
const type = is$i(node, 'bpmn:SubProcess') ? 'Sub process' : 'Process';
reporter.report(node.id, type + ' is missing end event');
}
}
return { check };
};
const {
is: is$h
} = require$$0;
/**
* A rule that checks that start events inside an event sub-process
* are typed.
*/
var eventSubProcessTypedStartEvent = function() {
function check(node, reporter) {
if (!is$h(node, 'bpmn:SubProcess') || !node.triggeredByEvent) {
return;
}
const flowElements = node.flowElements || [];
flowElements.forEach(function(flowElement) {
if (!is$h(flowElement, 'bpmn:StartEvent')) {
return false;
}
const eventDefinitions = flowElement.eventDefinitions || [];
if (eventDefinitions.length === 0) {
reporter.report(flowElement.id, 'Start event is missing event definition', [ 'eventDefinitions' ]);
}
});
}
return {
check
};
};
const {
isAny: isAny$8
} = require$$0;
/**
* A rule that checks that no fake join is modeled by attempting
* to give a task or event join semantics.
*
* Users should model a parallel joining gateway
* to achieve the desired behavior.
*/
var fakeJoin = function() {
function check(node, reporter) {
if (!isAny$8(node, [
'bpmn:Activity',
'bpmn:Event'
])) {
return;
}
const incoming = node.incoming || [];
if (incoming.length > 1) {
reporter.report(node.id, 'Incoming flows do not join');
}
}
return {
check
};
};
const {
is: is$g,
isAny: isAny$7
} = require$$0;
/**
* A rule that verifies that global elements are properly used.
*
* Currently recognized global elements are:
*
* * `bpmn:Error`
* * `bpmn:Escalation`
* * `bpmn:Message`
* * `bpmn:Signal`
*
* For each of these elements proper usage implies:
*
* * element must have a name
* * element is referenced by at least one element
* * there exists only a single element per type with a given name
*/
var global = function() {
function check(node, reporter) {
if (!is$g(node, 'bpmn:Definitions')) {
return false;
}
const rootElements = getRootElements(node);
const referencingElements = getReferencingElements(node);
rootElements.forEach(rootElement => {
if (!hasName(rootElement)) {
reporter.report(rootElement.id, 'Element is missing name');
}
if (!isReferenced(rootElement, referencingElements)) {
reporter.report(rootElement.id, 'Element is unused');
}
if (!isUnique(rootElement, rootElements)) {
reporter.report(rootElement.id, 'Element name is not unique');
}
});
}
return {
check
};
// helpers /////////////////////////////
function getRootElements(definitions) {
return definitions.rootElements.filter(node => isAny$7(node, [ 'bpmn:Error', 'bpmn:Escalation', 'bpmn:Message', 'bpmn:Signal' ]));
}
function getReferencingElements(definitions) {
const referencingElements = [];
function traverse(element) {
if (is$g(element, 'bpmn:Definitions') && element.get('rootElements').length) {
element.get('rootElements').forEach(traverse);
}
if (is$g(element, 'bpmn:FlowElementsContainer') && element.get('flowElements').length) {
element.get('flowElements').forEach(traverse);
}
if (is$g(element, 'bpmn:Event') && element.get('eventDefinitions').length) {
element.get('eventDefinitions').forEach(eventDefinition => referencingElements.push(eventDefinition));
}
if (is$g(element, 'bpmn:Collaboration') && element.get('messageFlows').length) {
element.get('messageFlows').forEach(traverse);
}
if (isAny$7(element, [
'bpmn:MessageFlow',
'bpmn:ReceiveTask',
'bpmn:SendTask'
])) {
referencingElements.push(element);
}
}
traverse(definitions);
return referencingElements;
}
function hasName(event) {
return (
event.name?.trim() !== ''
);
}
function isReferenced(rootElement, referencingElements) {
if (is$g(rootElement, 'bpmn:Error')) {
return referencingElements.some(referencingElement => {
return is$g(referencingElement, 'bpmn:ErrorEventDefinition')
&& rootElement.get('id') === referencingElement.get('errorRef')?.get('id');
});
}
if (is$g(rootElement, 'bpmn:Escalation')) {
return referencingElements.some(referencingElement => {
return is$g(referencingElement, 'bpmn:EscalationEventDefinition')
&& rootElement.get('id') === referencingElement.get('escalationRef')?.get('id');
});
}
if (is$g(rootElement, 'bpmn:Message')) {
return referencingElements.some(referencingElement => {
return isAny$7(referencingElement, [
'bpmn:MessageEventDefinition',
'bpmn:MessageFlow',
'bpmn:ReceiveTask',
'bpmn:SendTask'
]) && rootElement.get('id') === referencingElement.get('messageRef')?.get('id');
});
}
if (is$g(rootElement, 'bpmn:Signal')) {
return referencingElements.some(referencingElement => {
return is$g(referencingElement, 'bpmn:SignalEventDefinition')
&& rootElement.get('id') === referencingElement.get('signalRef')?.get('id');
});
}
}
function isUnique(rootElement, rootElements) {
return (
rootElements.filter(otherRootElement => is$g(otherRootElement, rootElement.$type) && rootElement.name === otherRootElement.name).length === 1
);
}
};
const {
is: is$f,
isAny: isAny$6
} = require$$0;
/**
* A rule that checks the presence of a label.
*/
var labelRequired = function() {
function check(node, reporter) {
if (isAny$6(node, [
'bpmn:ParallelGateway',
'bpmn:EventBasedGateway'
])) {
return;
}
// ignore joining gateways
if (is$f(node, 'bpmn:Gateway') && !isForking(node)) {
return;
}
// ignore sub-processes
if (is$f(node, 'bpmn:SubProcess')) {
// TODO(nikku): better ignore expanded sub-processes only
return;
}
// ignore sequence flow without condition
if (is$f(node, 'bpmn:SequenceFlow') && !hasCondition$1(node)) {
return;
}
// ignore data objects and artifacts for now
if (isAny$6(node, [
'bpmn:FlowNode',
'bpmn:SequenceFlow',
'bpmn:Participant',
'bpmn:Lane'
])) {
const name = (node.name || '').trim();
if (name.length === 0) {
reporter.report(node.id, 'Element is missing label/name', [ 'name' ]);
}
}
}
return { check };
};
// helpers ////////////////////////
function isForking(node) {
const outgoing = node.outgoing || [];
return outgoing.length > 1;
}
function hasCondition$1(node) {
return node.conditionExpression;
}
var dist = {};
/**
* Flatten array, one level deep.
*
* @template T
*
* @param {T[][] | T[] | null} [arr]
*
* @return {T[]}
*/
function flatten$1(arr) {
return Array.prototype.concat.apply([], arr);
}
const nativeToString = Object.prototype.toString;
const nativeHasOwnProperty = Object.prototype.hasOwnProperty;
function isUndefined(obj) {
return obj === undefined;
}
function isDefined(obj) {
return obj !== undefined;
}
function isNil(obj) {
return obj == null;
}
function isArray(obj) {
return nativeToString.call(obj) === '[object Array]';
}
function isObject(obj) {
return nativeToString.call(obj) === '[object Object]';
}
function isNumber(obj) {
return nativeToString.call(obj) === '[object Number]';
}
/**
* @param {any} obj
*
* @return {boolean}
*/
function isFunction(obj) {
const tag = nativeToString.call(obj);
return (
tag === '[object Function]' ||
tag === '[object AsyncFunction]' ||
tag === '[object GeneratorFunction]' ||
tag === '[object AsyncGeneratorFunction]' ||
tag === '[object Proxy]'
);
}
function isString(obj) {
return nativeToString.call(obj) === '[object String]';
}
/**
* Ensure collection is an array.
*
* @param {Object} obj
*/
function ensureArray(obj) {
if (isArray(obj)) {
return;
}
throw new Error('must supply array');
}
/**
* Return true, if target owns a property with the given key.
*
* @param {Object} target
* @param {String} key
*
* @return {Boolean}
*/
function has(target, key) {
return nativeHasOwnProperty.call(target, key);
}
/**
* @template T
* @typedef { (
* ((e: T) => boolean) |
* ((e: T, idx: number) => boolean) |
* ((e: T, key: string) => boolean) |
* string |
* number
* ) } Matcher
*/
/**
* @template T
* @template U
*
* @typedef { (
* ((e: T) => U) | string | number
* ) } Extractor
*/
/**
* @template T
* @typedef { (val: T, key: any) => boolean } MatchFn
*/
/**
* @template T
* @typedef { T[] } ArrayCollection
*/
/**
* @template T
* @typedef { { [key: string]: T } } StringKeyValueCollection
*/
/**
* @template T
* @typedef { { [key: number]: T } } NumberKeyValueCollection
*/
/**
* @template T
* @typedef { StringKeyValueCollection<T> | NumberKeyValueCollection<T> } KeyValueCollection
*/
/**
* @template T
* @typedef { KeyValueCollection<T> | ArrayCollection<T> } Collection
*/
/**
* Find element in collection.
*
* @template T
* @param {Collection<T>} collection
* @param {Matcher<T>} matcher
*
* @return {Object}
*/
function find(collection, matcher) {
const matchFn = toMatcher(matcher);
let match;
forEach(collection, function(val, key) {
if (matchFn(val, key)) {
match = val;
return false;
}
});
return match;
}
/**
* Find element index in collection.
*
* @template T
* @param {Collection<T>} collection
* @param {Matcher<T>} matcher
*
* @return {number}
*/
function findIndex(collection, matcher) {
const matchFn = toMatcher(matcher);
let idx = isArray(collection) ? -1 : undefined;
forEach(collection, function(val, key) {
if (matchFn(val, key)) {
idx = key;
return false;
}
});
return idx;
}
/**
* Filter elements in collection.
*
* @template T
* @param {Collection<T>} collection
* @param {Matcher<T>} matcher
*
* @return {T[]} result
*/
function filter(collection, matcher) {
const matchFn = toMatcher(matcher);
let result = [];
forEach(collection, function(val, key) {
if (matchFn(val, key)) {
result.push(val);
}
});
return result;
}
/**
* Iterate over collection; returning something
* (non-undefined) will stop iteration.
*
* @template T
* @param {Collection<T>} collection
* @param { ((item: T, idx: number) => (boolean|void)) | ((item: T, key: string) => (boolean|void)) } iterator
*
* @return {T} return result that stopped the iteration
*/
function forEach(collection, iterator) {
let val,
result;
if (isUndefined(collection)) {
return;
}
const convertKey = isArray(collection) ? toNum : identity;
for (let key in collection) {
if (has(collection, key)) {
val = collection[key];
result = iterator(val, convertKey(key));
if (result === false) {
return val;
}
}
}
}
/**
* Return collection without element.
*
* @template T
* @param {ArrayCollection<T>} arr
* @param {Matcher<T>} matcher
*
* @return {T[]}
*/
function without(arr, matcher) {
if (isUndefined(arr)) {
return [];
}
ensureArray(arr);
const matchFn = toMatcher(matcher);
return arr.filter(function(el, idx) {
return !matchFn(el, idx);
});
}
/**
* Reduce collection, returning a single result.
*
* @template T
* @template V
*
* @param {Collection<T>} collection
* @param {(result: V, entry: T, index: any) => V} iterator
* @param {V} result
*
* @return {V} result returned from last iterator
*/
function reduce(collection, iterator, result) {
forEach(collection, function(value, idx) {
result = iterator(result, value, idx);
});
return result;
}
/**
* Return true if every element in the collection
* matches the criteria.
*
* @param {Object|Array} collection
* @param {Function} matcher
*
* @return {Boolean}
*/
function every(collection, matcher) {
return !!reduce(collection, function(matches, val, key) {
return matches && matcher(val, key);
}, true);
}
/**
* Return true if some elements in the collection
* match the criteria.
*
* @param {Object|Array} collection
* @param {Function} matcher
*
* @return {Boolean}
*/
function some(collection, matcher) {
return !!find(collection, matcher);
}
/**
* Transform a collection into another collection
* by piping each member through the given fn.
*
* @param {Object|Array} collection
* @param {Function} fn
*
* @return {Array} transformed collection
*/
function map(collection, fn) {
let result = [];
forEach(collection, function(val, key) {
result.push(fn(val, key));
});
return result;
}
/**
* Get the collections keys.
*
* @param {Object|Array} collection
*
* @return {Array}
*/
function keys(collection) {
return collection && Object.keys(collection) || [];
}
/**
* Shorthand for `keys(o).length`.
*
* @param {Object|Array} collection
*
* @return {Number}
*/
function size(collection) {
return keys(collection).length;
}
/**
* Get the values in the collection.
*
* @param {Object|Array} collection
*
* @return {Array}
*/
function values(collection) {
return map(collection, (val) => val);
}
/**
* Group collection members by attribute.
*
* @param {Object|Array} collection
* @param {Extractor} extractor
*
* @return {Object} map with { attrValue => [ a, b, c ] }
*/
function groupBy$1(collection, extractor, grouped = {}) {
extractor = toExtractor(extractor);
forEach(collection, function(val) {
let discriminator = extractor(val) || '_';
let group = grouped[discriminator];
if (!group) {
group = grouped[discriminator] = [];
}
group.push(val);
});
return grouped;
}
function uniqueBy(extractor, ...collections) {
extractor = toExtractor(extractor);
let grouped = {};
forEach(collections, (c) => groupBy$1(c, extractor, grouped));
let result = map(grouped, function(val, key) {
return val[0];
});
return result;
}
const unionBy = uniqueBy;
/**
* Sort collection by criteria.
*
* @template T
*
* @param {Collection<T>} collection
* @param {Extractor<T, number | string>} extractor
*
* @return {Array}
*/
function sortBy(collection, extractor) {
extractor = toExtractor(extractor);
let sorted = [];
forEach(collection, function(value, key) {
let disc = extractor(value, key);
let entry = {
d: disc,
v: value
};
for (var idx = 0; idx < sorted.length; idx++) {
let { d } = sorted[idx];
if (disc < d) {
sorted.splice(idx, 0, entry);
return;
}
}
// not inserted, append (!)
sorted.push(entry);
});
return map(sorted, (e) => e.v);
}
/**
* Create an object pattern matcher.
*
* @example
*
* ```javascript
* const matcher = matchPattern({ id: 1 });
*
* let element = find(elements, matcher);
* ```
*
* @template T
*
* @param {T} pattern
*
* @return { (el: any) => boolean } matcherFn
*/
function matchPattern(pattern) {
return function(el) {
return every(pattern, function(val, key) {
return el[key] === val;
});
};
}
/**
* @param {string | ((e: any) => any) } extractor
*
* @return { (e: any) => any }
*/
function toExtractor(extractor) {
/**
* @satisfies { (e: any) => any }
*/
return isFunction(extractor) ? extractor : (e) => {
// @ts-ignore: just works
return e[extractor];
};
}
/**
* @template T
* @param {Matcher<T>} matcher
*
* @return {MatchFn<T>}
*/
function toMatcher(matcher) {
return isFunction(matcher) ? matcher : (e) => {
return e === matcher;
};
}
function identity(arg) {
return arg;
}
function toNum(arg) {
return Number(arg);
}
/* global setTimeout clearTimeout */
/**
* @typedef { {
* (...args: any[]): any;
* flush: () => void;
* cancel: () => void;
* } } DebouncedFunction
*/
/**
* Debounce fn, calling it only once if the given time