-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathindex.js
164 lines (149 loc) · 4.63 KB
/
index.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
require('log-timestamp')(() => {
const timestamp = new Date().toLocaleString('de-CH', {
timeZone: 'Europe/Zurich',
})
return `[${timestamp}] %s`
})
const nconf = require('nconf')
const path = require('path')
const stompit = require('stompit')
const protoLoader = require('@grpc/proto-loader')
const grpc = require('@grpc/grpc-js')
const DataManager = require('./lib/data-manager')
const ReportGenerator = require('./lib/report-generator')
nconf
.argv()
.env({ lowerCase: true, separator: '_' })
.file({ file: path.join(__dirname, 'config.json') })
/*
The handleMessage() function gets called whenever a new PolicyEvent message is available
on the message queue. Each message is then persisted with the data manager.
*/
function handleMessage(channel, dataManager, error, message, subscription) {
if (error) {
console.error(`Error: ${error}`)
channel.close()
return
}
message.readString('utf8', (error, string) => {
if (error) {
console.error(`Error: ${error}`)
channel.close()
return
}
const event = JSON.parse(string)
console.log('An event has been consumed:')
console.log(JSON.stringify(event, null, 4))
dataManager.addEvent(event)
dataManager
.save()
.then(() => {
channel.ack(message)
})
.catch((error) => {
console.error(`Error: ${error}`)
})
})
}
/*
The consumeEvents() function consumes PolicyEvent messages from the message queue when
they become available. Each event is then persisted with the data manager.
*/
function consumeEvents(dataManager) {
const mq_config = nconf.get('activemq')
console.log(
'Starting to consume PolicyEvent messages from: ',
mq_config.host,
mq_config.port,
mq_config.username
)
const connectOptions = {
host: mq_config.host,
port: mq_config.port,
connectHeaders: {
host: '/',
login: mq_config.username,
passcode: mq_config.password,
'heart-beat': '5000,5000',
},
}
const connectFailover = new stompit.ConnectFailover([connectOptions])
connectFailover.on('error', (error) => {
const connectArgs = error.connectArgs
const address = `${connectArgs.host}:${connectArgs.port}`
console.log(`Connection error to ${address}: ${error.message}`)
})
const channelFactory = new stompit.ChannelFactory(connectFailover)
channelFactory.channel((error, channel) => {
if (error) {
console.log('channel factory error: ' + error.message)
reject(error)
return
}
const subscribeHeaders = {
destination: `/queue/${mq_config.queueName}`,
ack: 'client-individual',
}
const messageHandler = handleMessage.bind(null, channel, dataManager)
channel.subscribe(subscribeHeaders, messageHandler)
})
}
/*
The handleClientRequest() function gets called whenever a request from the Risk Management Client
is received. It then generates a customer data report and sends it back to the client.
*/
function handleClientRequest(dataManager, call, callback) {
try {
console.log('Received request from Risk Management Client.')
let i = 0
let theInterval = setInterval(() => {
if (i > 100) {
const reportGenerator = new ReportGenerator(dataManager.data)
const csv = reportGenerator.generateCSV()
const report = { csv }
call.write({ report })
call.end()
console.log('Sent response to Risk Management Client.')
clearInterval(theInterval)
} else {
const progress = i
call.write({ progress })
}
i += 1
}, 20)
} catch (error) {
console.error(`Error: ${error}`)
callback(null, { csv: '' })
}
}
/*
The startGRPCServer() function starts the gRPC server which listens for
requests from the Risk Management Client.
*/
function startGRPCServer(dataManager) {
const grpc_config = nconf.get('grpc')
const PROTO_PATH = path.join(__dirname, '/riskmanagement.proto')
const packageDefinition = protoLoader.loadSync(PROTO_PATH)
const proto = grpc.loadPackageDefinition(packageDefinition).riskmanagement
const server = new grpc.Server()
const requestHandler = handleClientRequest.bind(null, dataManager)
server.addService(proto.RiskManagement.service, {
trigger: requestHandler,
})
server.bindAsync(
`${grpc_config.host}:${grpc_config.port}`,
grpc.ServerCredentials.createInsecure(),
() => {
console.log(
`Listening for requests from Risk Management Client on ${grpc_config.host}:${grpc_config.port}`
)
server.start()
}
)
}
process.on('unhandledRejection', (err) => {
console.error(err)
})
const dataManager = new DataManager()
consumeEvents(dataManager)
startGRPCServer(dataManager)