-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathworkflow.js
74 lines (58 loc) · 1.86 KB
/
workflow.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
const TasksClient = require('./tasksClient');
module.exports = class Workflow {
/**
* Construct a new workflow
*
* @param context trace
*/
constructor(config) {
this.currentWorkflow = [];
// TRACER CLIENT
this.context = config.context;
// LOGGER CLIENT
if(config.hasOwnProperty('loggerInstance')){
this.loggerInstance = config.loggerInstance
}
// CLOOUDTASK CLIENT
this.cloudTasksClient = new TasksClient({
context: this.context,
loggerInstance: this.loggerInstance ? this.loggerInstance : undefined,
projectId: config.projectId,
keyPath: config.keyPath,
});
}
/**
* kickoff workflow with sequence
*
* @param currentWorkflow is a sequence:
*/
async kickChampion(currentWorkflow) {
this.currentWorkflow = currentWorkflow;
for(let i in this.currentWorkflow){
let task = this.currentWorkflow[i]
const taskConfig = {
method: task.operation.method,
url: task.service,
body: task.operation.body,
queue: task.operation.queue,
location: task.operation.location,
spanName: task.spanName ? task.spanName : null,
scheduleTime: task.operation.scheduleTime ? task.operation.scheduleTime : null
}
await this.cloudTasksClient.sendTask(taskConfig)
this.currentWorkflow[i].status = 'executed';
};
}
/**
* Adds operation to workflow queue
*/
addOperation(operation) {
this.currentWorkflow.push(operation)
}
/**
* Returns the current workflow queue with execution statusses
*/
getWorkflowQueue() {
return this.currentWorkflow
}
}