@5minds/node-red-contrib-processcube 0.14.0-fix-error-in-process-instance-query-433395-lyzh0xul → 0.14.0-fix-error-in-process-instance-query-9aeac9-lyzi0gix
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/.prettierrc.json +6 -0
- package/externaltask-error.html +10 -10
- package/externaltask-error.js +12 -13
- package/externaltask-input.html +12 -12
- package/externaltask-input.js +21 -20
- package/externaltask-output.html +8 -8
- package/externaltask-output.js +8 -9
- package/message-event-trigger.html +14 -14
- package/message-event-trigger.js +21 -25
- package/nodered/settings.js +82 -92
- package/package.json +8 -2
- package/process-start.html +19 -23
- package/process-start.js +18 -18
- package/processcube-engine-config.html +10 -10
- package/processcube-engine-config.js +24 -17
- package/processdefinition-query.html +29 -23
- package/processdefinition-query.js +12 -16
- package/processinstance-query.html +19 -20
- package/processinstance-query.js +14 -23
- package/signal-event-trigger.html +14 -14
- package/signal-event-trigger.js +21 -25
- package/usertask-finished-listener.html +17 -12
- package/usertask-finished-listener.js +34 -16
- package/usertask-input.html +40 -27
- package/usertask-input.js +19 -18
- package/usertask-new-listener.html +17 -12
- package/usertask-new-listener.js +35 -18
- package/usertask-output.html +23 -24
- package/usertask-output.js +12 -12
package/nodered/settings.js
CHANGED
@@ -21,15 +21,14 @@
|
|
21
21
|
**/
|
22
22
|
|
23
23
|
module.exports = {
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
******************************************************************************/
|
24
|
+
/*******************************************************************************
|
25
|
+
* Flow File and User Directory Settings
|
26
|
+
* - flowFile
|
27
|
+
* - credentialSecret
|
28
|
+
* - flowFilePretty
|
29
|
+
* - userDir
|
30
|
+
* - nodesDir
|
31
|
+
******************************************************************************/
|
33
32
|
|
34
33
|
/** The file containing the flows. If not set, defaults to flows_<hostname>.json **/
|
35
34
|
flowFile: 'flows.json',
|
@@ -41,7 +40,7 @@ module.exports = {
|
|
41
40
|
* node-red from being able to decrypt your existing credentials and they will be
|
42
41
|
* lost.
|
43
42
|
*/
|
44
|
-
credentialSecret:
|
43
|
+
credentialSecret: 'a-secret-key',
|
45
44
|
|
46
45
|
/** By default, the flow JSON will be formatted over multiple lines making
|
47
46
|
* it easier to compare changes when using version control.
|
@@ -60,15 +59,15 @@ module.exports = {
|
|
60
59
|
*/
|
61
60
|
//nodesDir: '/home/nol/.node-red/nodes',
|
62
61
|
|
63
|
-
/*******************************************************************************
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
62
|
+
/*******************************************************************************
|
63
|
+
* Security
|
64
|
+
* - adminAuth
|
65
|
+
* - https
|
66
|
+
* - httpsRefreshInterval
|
67
|
+
* - requireHttps
|
68
|
+
* - httpNodeAuth
|
69
|
+
* - httpStaticAuth
|
70
|
+
******************************************************************************/
|
72
71
|
|
73
72
|
/** To password protect the Node-RED editor and admin API, the following
|
74
73
|
* property can be used. See https://nodered.org/docs/security.html for details.
|
@@ -125,20 +124,20 @@ module.exports = {
|
|
125
124
|
//httpNodeAuth: {user:"user",pass:"$2a$08$zZWtXTja0fB1pzD4sHCMyOCMYz2Z6dNbM6tl8sJogENOMcxWV9DN."},
|
126
125
|
//httpStaticAuth: {user:"user",pass:"$2a$08$zZWtXTja0fB1pzD4sHCMyOCMYz2Z6dNbM6tl8sJogENOMcxWV9DN."},
|
127
126
|
|
128
|
-
/*******************************************************************************
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
127
|
+
/*******************************************************************************
|
128
|
+
* Server Settings
|
129
|
+
* - uiPort
|
130
|
+
* - uiHost
|
131
|
+
* - apiMaxLength
|
132
|
+
* - httpServerOptions
|
133
|
+
* - httpAdminRoot
|
134
|
+
* - httpAdminMiddleware
|
135
|
+
* - httpNodeRoot
|
136
|
+
* - httpNodeCors
|
137
|
+
* - httpNodeMiddleware
|
138
|
+
* - httpStatic
|
139
|
+
* - httpStaticRoot
|
140
|
+
******************************************************************************/
|
142
141
|
|
143
142
|
/** the tcp port that the Node-RED web server is listening on */
|
144
143
|
uiPort: process.env.PORT || 1880,
|
@@ -178,7 +177,6 @@ module.exports = {
|
|
178
177
|
// next();
|
179
178
|
// },
|
180
179
|
|
181
|
-
|
182
180
|
/** Some nodes, such as HTTP In, can be used to listen for incoming http requests.
|
183
181
|
* By default, these are served relative to '/'. The following property
|
184
182
|
* can be used to specify a different root path. If set to false, this is
|
@@ -244,16 +242,16 @@ module.exports = {
|
|
244
242
|
*/
|
245
243
|
//httpStaticRoot: '/static/',
|
246
244
|
|
247
|
-
/*******************************************************************************
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
245
|
+
/*******************************************************************************
|
246
|
+
* Runtime Settings
|
247
|
+
* - lang
|
248
|
+
* - runtimeState
|
249
|
+
* - diagnostics
|
250
|
+
* - logging
|
251
|
+
* - contextStorage
|
252
|
+
* - exportGlobalContextKeys
|
253
|
+
* - externalModules
|
254
|
+
******************************************************************************/
|
257
255
|
|
258
256
|
/** Uncomment the following to run node-red in your preferred language.
|
259
257
|
* Available languages include: en-US (default), ja, de, zh-CN, zh-TW, ru, ko
|
@@ -266,7 +264,7 @@ module.exports = {
|
|
266
264
|
* be available at http://localhost:1880/diagnostics
|
267
265
|
* - ui: When `ui` is `true` (or unset), the action `show-system-info` will
|
268
266
|
* be available to logged in users of node-red editor
|
269
|
-
|
267
|
+
*/
|
270
268
|
diagnostics: {
|
271
269
|
/** enable or disable diagnostics endpoint. Must be set to `false` to disable */
|
272
270
|
enabled: true,
|
@@ -299,12 +297,12 @@ module.exports = {
|
|
299
297
|
* trace - record very detailed logging + debug + info + warn + error + fatal errors
|
300
298
|
* off - turn off all logging (doesn't affect metrics or audit)
|
301
299
|
*/
|
302
|
-
level:
|
300
|
+
level: 'info',
|
303
301
|
/** Whether or not to include metric events in the log output */
|
304
302
|
metrics: false,
|
305
303
|
/** Whether or not to include audit events in the log output */
|
306
|
-
audit: false
|
307
|
-
}
|
304
|
+
audit: false,
|
305
|
+
},
|
308
306
|
},
|
309
307
|
|
310
308
|
/** Context Storage
|
@@ -355,12 +353,11 @@ module.exports = {
|
|
355
353
|
// }
|
356
354
|
},
|
357
355
|
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
******************************************************************************/
|
356
|
+
/*******************************************************************************
|
357
|
+
* Editor Settings
|
358
|
+
* - disableEditor
|
359
|
+
* - editorTheme
|
360
|
+
******************************************************************************/
|
364
361
|
|
365
362
|
/** The following property can be used to disable the editor. The admin API
|
366
363
|
* is not affected by this option. To disable both the editor and the admin
|
@@ -385,9 +382,8 @@ module.exports = {
|
|
385
382
|
//tours: false,
|
386
383
|
|
387
384
|
header: {
|
388
|
-
title:
|
389
|
-
url:
|
390
|
-
|
385
|
+
title: 'Node-RED powered by ProcessCube ©',
|
386
|
+
url: 'https://processcube.io', // optional url to make the header text/image a link to this url
|
391
387
|
},
|
392
388
|
palette: {
|
393
389
|
/** The following property can be used to order the categories in the editor
|
@@ -396,12 +392,7 @@ module.exports = {
|
|
396
392
|
* If not set, the following default order is used:
|
397
393
|
*/
|
398
394
|
//categories: ['subflows', 'common', 'function', 'network', 'sequence', 'parser', 'storage'],
|
399
|
-
categories: [
|
400
|
-
"ProcessCube",
|
401
|
-
"ProcessCube Events",
|
402
|
-
"ProcessCube UI",
|
403
|
-
"dashboard 2"
|
404
|
-
]
|
395
|
+
categories: ['ProcessCube', 'ProcessCube Events', 'ProcessCube UI', 'dashboard 2'],
|
405
396
|
},
|
406
397
|
|
407
398
|
projects: {
|
@@ -414,15 +405,15 @@ module.exports = {
|
|
414
405
|
* This can be overridden per-user from the 'Git config'
|
415
406
|
* section of 'User Settings' within the editor
|
416
407
|
*/
|
417
|
-
mode:
|
418
|
-
}
|
408
|
+
mode: 'manual',
|
409
|
+
},
|
419
410
|
},
|
420
411
|
|
421
412
|
codeEditor: {
|
422
413
|
/** Select the text editor component used by the editor.
|
423
414
|
* As of Node-RED V3, this defaults to "monaco", but can be set to "ace" if desired
|
424
415
|
*/
|
425
|
-
lib:
|
416
|
+
lib: 'monaco',
|
426
417
|
options: {
|
427
418
|
/** The follow options only apply if the editor is set to "monaco"
|
428
419
|
*
|
@@ -437,40 +428,39 @@ module.exports = {
|
|
437
428
|
//fontSize: 14,
|
438
429
|
//fontFamily: "Cascadia Code, Fira Code, Consolas, 'Courier New', monospace",
|
439
430
|
//fontLigatures: true,
|
440
|
-
}
|
431
|
+
},
|
441
432
|
},
|
442
433
|
|
443
434
|
markdownEditor: {
|
444
435
|
mermaid: {
|
445
436
|
/** enable or disable mermaid diagram in markdown document
|
446
437
|
*/
|
447
|
-
enabled: true
|
448
|
-
}
|
438
|
+
enabled: true,
|
439
|
+
},
|
449
440
|
},
|
450
|
-
|
451
441
|
},
|
452
442
|
|
453
|
-
/*******************************************************************************
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
443
|
+
/*******************************************************************************
|
444
|
+
* Node Settings
|
445
|
+
* - fileWorkingDirectory
|
446
|
+
* - functionGlobalContext
|
447
|
+
* - functionExternalModules
|
448
|
+
* - functionTimeout
|
449
|
+
* - nodeMessageBufferMaxLength
|
450
|
+
* - ui (for use with Node-RED Dashboard)
|
451
|
+
* - debugUseColors
|
452
|
+
* - debugMaxLength
|
453
|
+
* - execMaxBufferSize
|
454
|
+
* - httpRequestTimeout
|
455
|
+
* - mqttReconnectTime
|
456
|
+
* - serialReconnectTime
|
457
|
+
* - socketReconnectTime
|
458
|
+
* - socketTimeout
|
459
|
+
* - tcpMsgQueueSize
|
460
|
+
* - inboundWebSocketTimeout
|
461
|
+
* - tlsConfigDisableLocalFiles
|
462
|
+
* - webSocketNodeVerifyClient
|
463
|
+
******************************************************************************/
|
474
464
|
|
475
465
|
/** The working directory to handle relative file paths from within the File nodes
|
476
466
|
* defaults to the working directory of the Node-RED process.
|
@@ -568,4 +558,4 @@ module.exports = {
|
|
568
558
|
// * - reason: if result is false, the HTTP reason string to return
|
569
559
|
// */
|
570
560
|
//},
|
571
|
-
}
|
561
|
+
};
|
package/package.json
CHANGED
@@ -1,8 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@5minds/node-red-contrib-processcube",
|
3
|
-
"version": "0.14.0-fix-error-in-process-instance-query-
|
3
|
+
"version": "0.14.0-fix-error-in-process-instance-query-9aeac9-lyzi0gix",
|
4
4
|
"license": "MIT",
|
5
5
|
"description": "Node-RED nodes for ProcessCube",
|
6
|
+
"scripts": {
|
7
|
+
"lint": "prettier --write --config ./.prettierrc.json \"**/*.{html,js}\""
|
8
|
+
},
|
6
9
|
"authors": [
|
7
10
|
{
|
8
11
|
"name": "Martin Moellenbeck",
|
@@ -58,5 +61,8 @@
|
|
58
61
|
"workflow",
|
59
62
|
"bpmn",
|
60
63
|
"low-code"
|
61
|
-
]
|
64
|
+
],
|
65
|
+
"devDependencies": {
|
66
|
+
"prettier": "^3.3.3"
|
67
|
+
}
|
62
68
|
}
|
package/process-start.html
CHANGED
@@ -3,54 +3,50 @@
|
|
3
3
|
category: 'ProcessCube',
|
4
4
|
color: '#02AFD6',
|
5
5
|
defaults: {
|
6
|
-
name: {value:
|
7
|
-
engine: {value:
|
8
|
-
processmodel: {value:
|
9
|
-
startevent: {value:
|
6
|
+
name: { value: '' },
|
7
|
+
engine: { value: '', type: 'processcube-engine-config' },
|
8
|
+
processmodel: { value: '', required: false },
|
9
|
+
startevent: { value: '', required: false },
|
10
10
|
},
|
11
11
|
inputs: 1,
|
12
12
|
outputs: 1,
|
13
|
-
icon:
|
14
|
-
label: function() {
|
15
|
-
return this.name||
|
16
|
-
}
|
13
|
+
icon: 'font-awesome/fa-sign-in',
|
14
|
+
label: function () {
|
15
|
+
return this.name || 'process-start';
|
16
|
+
},
|
17
17
|
});
|
18
18
|
</script>
|
19
19
|
|
20
20
|
<script type="text/html" data-template-name="process-start">
|
21
21
|
<div class="form-row">
|
22
22
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
23
|
-
<input type="text" id="node-input-name" placeholder="Name"
|
23
|
+
<input type="text" id="node-input-name" placeholder="Name" />
|
24
24
|
</div>
|
25
25
|
<div class="form-row">
|
26
26
|
<label for="node-input-engine"><i class="fa fa-tag"></i> Engine-URL</label>
|
27
|
-
<input type="text" id="node-input-engine" placeholder="Engine-URL"
|
27
|
+
<input type="text" id="node-input-engine" placeholder="Engine-URL" />
|
28
28
|
</div>
|
29
29
|
<div class="form-row">
|
30
30
|
<label for="node-input-processmodel"><i class="fa fa-tag"></i> Processmodel</label>
|
31
|
-
<input type="text" id="node-input-processmodel" placeholder="ID of Processmodel"
|
31
|
+
<input type="text" id="node-input-processmodel" placeholder="ID of Processmodel" />
|
32
32
|
</div>
|
33
33
|
<div class="form-row">
|
34
34
|
<label for="node-input-startevent"><i class="fa fa-tag"></i> Startevent</label>
|
35
|
-
<input type="text" id="node-input-startevent" placeholder="ID of Startevent"
|
35
|
+
<input type="text" id="node-input-startevent" placeholder="ID of Startevent" />
|
36
36
|
</div>
|
37
37
|
</script>
|
38
38
|
|
39
39
|
<script type="text/html" data-help-name="process-start">
|
40
40
|
<h2>Start a Processmodel in the ProcessCube</h2>
|
41
|
+
<p>If the <code>msg.payload</code> is set, it will be used as the input for the process.</p>
|
41
42
|
<p>
|
42
|
-
If
|
43
|
-
|
44
|
-
<p>
|
45
|
-
If a <code>msg.processModelId</code> is set, it will be used as the process model and
|
46
|
-
override the configured <b>Processmodel</b>.
|
43
|
+
If a <code>msg.processModelId</code> is set, it will be used as the process model and override the configured
|
44
|
+
<b>Processmodel</b>.
|
47
45
|
</p>
|
48
46
|
<p>
|
49
|
-
If a <code>msg.startEventId</code> is set, it will be used as the start event and
|
50
|
-
|
47
|
+
If a <code>msg.startEventId</code> is set, it will be used as the start event and override the configured
|
48
|
+
<b>Startevent</b>.
|
51
49
|
</p>
|
52
50
|
<h3>More documentation</h3>
|
53
|
-
<p>
|
54
|
-
|
55
|
-
</p>
|
56
|
-
</script>
|
51
|
+
<p>The Dokumenation can be found on <a href="https://processcube.io">ProcessCube Developer Network</a>.</p>
|
52
|
+
</script>
|
package/process-start.js
CHANGED
@@ -1,9 +1,9 @@
|
|
1
1
|
const process = require('process');
|
2
2
|
const engine_client = require('@5minds/processcube_engine_client');
|
3
3
|
|
4
|
-
module.exports = function(RED) {
|
4
|
+
module.exports = function (RED) {
|
5
5
|
function ProcessStart(config) {
|
6
|
-
RED.nodes.createNode(this,config);
|
6
|
+
RED.nodes.createNode(this, config);
|
7
7
|
var node = this;
|
8
8
|
var flowContext = node.context().flow;
|
9
9
|
var nodeContext = node.context();
|
@@ -17,27 +17,27 @@ module.exports = function(RED) {
|
|
17
17
|
if (!client) {
|
18
18
|
nodeContext.set('client', new engine_client.EngineClient(engineUrl));
|
19
19
|
client = nodeContext.get('client');
|
20
|
-
}
|
21
|
-
|
22
|
-
node.on('input', function(msg) {
|
20
|
+
}
|
23
21
|
|
22
|
+
node.on('input', function (msg) {
|
24
23
|
const startParameters = {
|
25
24
|
processModelId: msg.processModelId || config.processmodel,
|
26
25
|
startEventId: msg.startEventId || config.startevent,
|
27
|
-
initialToken: msg.payload
|
26
|
+
initialToken: msg.payload,
|
28
27
|
};
|
29
28
|
|
30
|
-
client.processDefinitions
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
29
|
+
client.processDefinitions
|
30
|
+
.startProcessInstance(startParameters, node.engine.identity)
|
31
|
+
.then((result) => {
|
32
|
+
msg.payload = result;
|
33
|
+
|
34
|
+
node.send(msg);
|
35
|
+
node.status({ fill: 'blue', shape: 'dot', text: `started ${result.processInstanceId}` });
|
36
|
+
})
|
37
|
+
.catch((error) => {
|
38
|
+
node.error(error);
|
39
|
+
});
|
40
40
|
});
|
41
41
|
}
|
42
|
-
RED.nodes.registerType(
|
43
|
-
}
|
42
|
+
RED.nodes.registerType('process-start', ProcessStart);
|
43
|
+
};
|
@@ -1,30 +1,30 @@
|
|
1
1
|
<script type="text/javascript">
|
2
|
-
RED.nodes.registerType('processcube-engine-config',{
|
2
|
+
RED.nodes.registerType('processcube-engine-config', {
|
3
3
|
category: 'config',
|
4
4
|
defaults: {
|
5
|
-
url: {value:
|
5
|
+
url: { value: 'http://engine:8000', required: true },
|
6
6
|
},
|
7
|
-
label: function() {
|
7
|
+
label: function () {
|
8
8
|
return this.url;
|
9
9
|
},
|
10
10
|
credentials: {
|
11
|
-
clientId: { type:
|
12
|
-
clientSecret: { type:
|
13
|
-
}
|
11
|
+
clientId: { type: 'text' },
|
12
|
+
clientSecret: { type: 'password' },
|
13
|
+
},
|
14
14
|
});
|
15
15
|
</script>
|
16
16
|
|
17
17
|
<script type="text/html" data-template-name="processcube-engine-config">
|
18
18
|
<div class="form-row">
|
19
19
|
<label for="node-config-input-url"><i class="fa fa-bookmark"></i> Url</label>
|
20
|
-
<input type="text" id="node-config-input-url"
|
20
|
+
<input type="text" id="node-config-input-url" />
|
21
21
|
</div>
|
22
22
|
<div class="form-row">
|
23
23
|
<label for="node-config-input-clientId"><i class="fa fa-bookmark"></i> Client id</label>
|
24
|
-
<input type="text" id="node-config-input-clientId"
|
24
|
+
<input type="text" id="node-config-input-clientId" />
|
25
25
|
</div>
|
26
26
|
<div class="form-row">
|
27
27
|
<label for="node-config-input-clientSecret"><i class="fa fa-bookmark"></i> Client secret</label>
|
28
|
-
<input type="password" id="node-config-input-clientSecret"
|
28
|
+
<input type="password" id="node-config-input-clientSecret" />
|
29
29
|
</div>
|
30
|
-
</script>
|
30
|
+
</script>
|
@@ -4,7 +4,7 @@ const oidc = require('openid-client');
|
|
4
4
|
|
5
5
|
const DELAY_FACTOR = 0.85;
|
6
6
|
|
7
|
-
module.exports = function(RED) {
|
7
|
+
module.exports = function (RED) {
|
8
8
|
function ProcessCubeEngineNode(n) {
|
9
9
|
RED.nodes.createNode(this, n);
|
10
10
|
const node = this;
|
@@ -13,36 +13,44 @@ module.exports = function(RED) {
|
|
13
13
|
this.identity = null;
|
14
14
|
this.registerOnIdentityChanged = function (callback) {
|
15
15
|
identityChangedCallbacks.push(callback);
|
16
|
-
}
|
17
|
-
this.setIdentity = (identity)
|
16
|
+
};
|
17
|
+
this.setIdentity = (identity) => {
|
18
18
|
this.identity = identity;
|
19
19
|
|
20
20
|
for (const callback of identityChangedCallbacks) {
|
21
21
|
callback(identity);
|
22
22
|
}
|
23
|
-
}
|
23
|
+
};
|
24
24
|
|
25
25
|
if (this.credentials.clientId && this.credentials.clientSecret) {
|
26
26
|
const engineClient = new engine_client.EngineClient(this.url);
|
27
27
|
|
28
|
-
engineClient.applicationInfo
|
29
|
-
|
28
|
+
engineClient.applicationInfo
|
29
|
+
.getAuthorityAddress()
|
30
|
+
.then((authorityUrl) => {
|
31
|
+
startRefreshingIdentityCycle(
|
32
|
+
this.credentials.clientId,
|
33
|
+
this.credentials.clientSecret,
|
34
|
+
authorityUrl,
|
35
|
+
this,
|
36
|
+
).catch((reason) => {
|
37
|
+
console.error(reason);
|
38
|
+
node.error(reason);
|
39
|
+
});
|
40
|
+
})
|
41
|
+
.catch((reason) => {
|
30
42
|
console.error(reason);
|
31
43
|
node.error(reason);
|
32
44
|
});
|
33
|
-
}).catch((reason) => {
|
34
|
-
console.error(reason);
|
35
|
-
node.error(reason);
|
36
|
-
});
|
37
45
|
}
|
38
46
|
}
|
39
|
-
RED.nodes.registerType(
|
47
|
+
RED.nodes.registerType('processcube-engine-config', ProcessCubeEngineNode, {
|
40
48
|
credentials: {
|
41
|
-
clientId: { type:
|
42
|
-
clientSecret: { type:
|
43
|
-
}
|
49
|
+
clientId: { type: 'text' },
|
50
|
+
clientSecret: { type: 'password' },
|
51
|
+
},
|
44
52
|
});
|
45
|
-
}
|
53
|
+
};
|
46
54
|
|
47
55
|
async function getFreshTokenSet(clientId, clientSecret, authorityUrl) {
|
48
56
|
const issuer = await oidc.Issuer.discover(authorityUrl);
|
@@ -61,7 +69,6 @@ async function getFreshTokenSet(clientId, clientSecret, authorityUrl) {
|
|
61
69
|
}
|
62
70
|
|
63
71
|
function getIdentityForExternalTaskWorkers(tokenSet) {
|
64
|
-
|
65
72
|
const accessToken = tokenSet.access_token;
|
66
73
|
const decodedToken = jwt.jwtDecode(accessToken);
|
67
74
|
|
@@ -125,4 +132,4 @@ async function startRefreshingIdentityCycle(clientId, clientSecret, authorityUrl
|
|
125
132
|
};
|
126
133
|
|
127
134
|
await refresh();
|
128
|
-
}
|
135
|
+
}
|
@@ -3,52 +3,58 @@
|
|
3
3
|
category: 'ProcessCube',
|
4
4
|
color: '#02AFD6',
|
5
5
|
defaults: {
|
6
|
-
name: {value:
|
7
|
-
engine: {value:
|
8
|
-
query: {value:
|
9
|
-
query_type: {value:
|
10
|
-
models_only: {value: false},
|
6
|
+
name: { value: '' },
|
7
|
+
engine: { value: '', type: 'processcube-engine-config' },
|
8
|
+
query: { value: 'payload' },
|
9
|
+
query_type: { value: 'msg' },
|
10
|
+
models_only: { value: false },
|
11
11
|
},
|
12
12
|
inputs: 1,
|
13
13
|
outputs: 1,
|
14
|
-
icon:
|
15
|
-
label: function() {
|
16
|
-
return this.name ||
|
14
|
+
icon: 'font-awesome/fa-envelope-open',
|
15
|
+
label: function () {
|
16
|
+
return this.name || 'processdefinition-query';
|
17
17
|
},
|
18
|
-
oneditprepare: function() {
|
19
|
-
$(
|
18
|
+
oneditprepare: function () {
|
19
|
+
$('#node-input-query').typedInput({
|
20
20
|
default: 'msg',
|
21
|
-
types: ['msg', 'json']
|
21
|
+
types: ['msg', 'json'],
|
22
22
|
});
|
23
23
|
|
24
|
-
$(
|
25
|
-
$(
|
24
|
+
$('#node-input-query').typedInput('value', this.query);
|
25
|
+
$('#node-input-query').typedInput('type', this.query_type);
|
26
|
+
},
|
27
|
+
oneditsave: function () {
|
28
|
+
(this.query = $('#node-input-query').typedInput('value')),
|
29
|
+
(this.query_type = $('#node-input-query').typedInput('type'));
|
26
30
|
},
|
27
|
-
oneditsave: function() {
|
28
|
-
this.query = $("#node-input-query").typedInput('value'),
|
29
|
-
this.query_type = $("#node-input-query").typedInput('type')
|
30
|
-
|
31
|
-
}
|
32
31
|
});
|
33
32
|
</script>
|
34
33
|
|
35
34
|
<script type="text/html" data-template-name="processdefinition-query">
|
36
35
|
<div class="form-row">
|
37
36
|
<label for="node-input-name"><i class="fa fa-tag"></i> Name</label>
|
38
|
-
<input type="text" id="node-input-name" placeholder="Name"
|
37
|
+
<input type="text" id="node-input-name" placeholder="Name" />
|
39
38
|
</div>
|
40
39
|
<div class="form-row">
|
41
40
|
<label for="node-input-engine"><i class="fa fa-tag"></i> Engine-URL</label>
|
42
|
-
<input type="text" id="node-input-engine" placeholder="http://engine:8000"
|
41
|
+
<input type="text" id="node-input-engine" placeholder="http://engine:8000" />
|
43
42
|
</div>
|
44
43
|
<div class="form-row">
|
45
44
|
<label for="node-input-query"><i class="fa fa-tag"></i> Query</label>
|
46
|
-
<input type="text" id="node-input-query"
|
45
|
+
<input type="text" id="node-input-query" />
|
47
46
|
</div>
|
48
47
|
<div class="form-row" style="display:flex; margin-bottom: 3px;">
|
49
|
-
<label for="node-input-models_only" style="vertical-align:top"
|
48
|
+
<label for="node-input-models_only" style="vertical-align:top"
|
49
|
+
><i class="fa fa-list-alt"></i> Models Only</label
|
50
|
+
>
|
50
51
|
<div>
|
51
|
-
<input
|
52
|
+
<input
|
53
|
+
type="checkbox"
|
54
|
+
checked
|
55
|
+
id="node-input-models_only"
|
56
|
+
style="display: inline-block; width: auto; margin: 0px 0px 0px 4px;"
|
57
|
+
/>
|
52
58
|
<label style="width:auto" for="node-input-models_only">Only send models as result.</label>
|
53
59
|
</div>
|
54
60
|
</div>
|