-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathusePncWebSocketEffect.ts
399 lines (350 loc) · 12.1 KB
/
usePncWebSocketEffect.ts
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
import { useEffect } from 'react';
import { uiLogger } from 'services/uiLogger';
import { pncWebSocketClient } from 'services/webSocketClient';
/**
* HOOK
*/
interface IUsePncWebSocketEffectOptions {
// condition based listening, when true, events will be ignored (for example when Build is finished)
preventListening?: boolean;
// debug identification string, NCL-8377
debug?: string;
}
/**
* WebSocket message listener hook.
*
* @param callback - Callback method, WebSocket parsed data attribute will be passed in
* @param options - See {@link IUsePncWebSocketEffectOptions}
*/
export const usePncWebSocketEffect = (
callback: (wsData: any) => void,
{ preventListening = false, debug = '' }: IUsePncWebSocketEffectOptions = {}
) => {
useEffect(() => {
if (!preventListening) {
const onMessage = (wsMessage: MessageEvent) => {
const wsData = JSON.parse(wsMessage.data);
callback(wsData);
};
const removeMessageListener = pncWebSocketClient.addMessageListener(onMessage, { debug });
return () => {
removeMessageListener();
};
}
}, [callback, preventListening, debug]);
};
/**
* HOOK CHECKERS
*/
/**
* Additional filtering parameters.
*/
interface IBuildConfigParameters {
taskId?: string;
}
/**
* Check whether Build Config failed WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBuildConfigParameters}
* @returns true when Build Config failed, otherwise false
*/
export const hasBuildConfigFailed = (wsData: any, { taskId }: IBuildConfigParameters): boolean => {
if (wsData.job !== 'BUILD_CONFIG_CREATION' || !wsData.notificationType.includes('ERROR')) {
return false;
}
return !taskId || taskId === wsData.taskId;
};
/**
* Check whether Build Config success WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBuildConfigParameters}
* @returns true when Build Config succeeded, otherwise false
*/
export const hasBuildConfigSucceeded = (wsData: any, { taskId }: IBuildConfigParameters): boolean => {
if (
wsData.job !== 'BUILD_CONFIG_CREATION' ||
wsData.notificationType !== 'BC_CREATION_SUCCESS' ||
wsData.progress !== 'FINISHED'
) {
return false;
}
if (!wsData.buildConfig) {
uiLogger.error('hasBuildConfigSucceeded: invalid WebSocket message ("buildConfig" parameter is missing)', undefined, wsData);
return false; // ignore changes when 'buildConfig' is not available
}
return !taskId || taskId === wsData.taskId;
};
/**
* Additional filtering parameters.
*/
interface IScmRepositoryParameters {
taskId?: string;
}
/**
* Check whether Scm Repository failed WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IScmRepositoryParameters}
* @returns true when Scm Repository failed, otherwise false
*/
export const hasScmRepositoryFailed = (wsData: any, { taskId }: IScmRepositoryParameters): boolean => {
if (wsData.job !== 'SCM_REPOSITORY_CREATION' || !wsData.notificationType.includes('ERROR')) {
return false;
}
return !taskId || taskId === wsData.taskId;
};
/**
* Check whether Scm Repository success WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IScmRepositoryParameters}
* @returns true when Scm Repository succeeded, otherwise false
*/
export const hasScmRepositorySucceeded = (wsData: any, { taskId }: IScmRepositoryParameters): boolean => {
if (
wsData.job !== 'SCM_REPOSITORY_CREATION' ||
wsData.notificationType !== 'SCMR_CREATION_SUCCESS' ||
wsData.progress !== 'FINISHED'
) {
return false;
}
if (!wsData.scmRepository) {
uiLogger.error('scmRepository: invalid WebSocket message ("scmRepository" parameter is missing)', undefined, wsData);
return false; // ignore changes when 'scmRepository' is not available
}
return !taskId || taskId === wsData.taskId;
};
/**
* Additional filtering parameters.
*/
interface IBuildParameters {
buildConfigId?: string;
userId?: string;
productMilestoneId?: string;
buildId?: string;
groupBuildId?: string;
}
/**
* Check whether Build status change WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBuildParameters}
* @returns true when Build status changed, otherwise false
*/
export const hasBuildStatusChanged = (
wsData: any,
{ buildConfigId, userId, productMilestoneId, buildId, groupBuildId }: IBuildParameters = {}
): boolean => {
if (wsData.job !== 'BUILD' || wsData.notificationType !== 'BUILD_STATUS_CHANGED') {
return false;
}
if (!wsData.build) {
uiLogger.error('hasBuildStatusChanged: invalid WebSocket message ("build" parameter is missing)', undefined, wsData);
return false; // ignore changes when 'build' is not available
}
if (groupBuildId && !wsData.build?.groupBuild) {
uiLogger.log(
'hasBuildStatusChanged: invalid WebSocket message ("build.groupBuild" parameter is missing), known backend issue: NCL-8394',
undefined,
wsData
);
return true; // force new changes until NCL-8394 is solved
}
return (
(!buildConfigId || buildConfigId === wsData.build?.buildConfigRevision?.id) &&
(!userId || userId === wsData.build?.user?.id) &&
(!productMilestoneId || productMilestoneId === wsData.build?.productMilestone?.id) &&
(!buildId || buildId === wsData.build?.id) &&
(!groupBuildId || groupBuildId === wsData.build?.groupBuild?.id)
);
};
/**
* Check whether new Build started WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBuildParameters}
* @returns true when new Build was started, otherwise false
*/
export const hasBuildStarted = (wsData: any, parameters: IBuildParameters = {}): boolean =>
hasBuildStatusChanged(wsData, parameters) && wsData.oldStatus === 'NEW';
/**
* Check whether Build finished WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBuildParameters}
* @returns true when Build was finished, otherwise false
*/
export const hasBuildFinished = (wsData: any, parameters: IBuildParameters = {}): boolean =>
hasBuildStatusChanged(wsData, parameters) && wsData.progress === 'FINISHED';
/**
* Additional filtering parameters.
*/
interface IGroupBuildParameters {
groupConfigId?: string;
userId?: string;
groupBuildId?: string;
}
/**
* Check whether Group Build status change WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IGroupBuildParameters}
* @returns true when Group Build status changed, otherwise false
*/
export const hasGroupBuildStatusChanged = (
wsData: any,
{ groupConfigId, userId, groupBuildId }: IGroupBuildParameters = {}
): boolean => {
if (wsData.job !== 'GROUP_BUILD' || wsData.notificationType !== 'GROUP_BUILD_STATUS_CHANGED') {
return false;
}
if (!wsData.groupBuild) {
uiLogger.error(
'hasGroupBuildStatusChanged: invalid WebSocket message ("groupBuild" parameter is missing)',
undefined,
wsData
);
return false; // ignore changes when 'groupBuild' is not available
}
return (
(!groupConfigId || groupConfigId === wsData.groupBuild?.groupConfig?.id) &&
(!userId || userId === wsData.groupBuild?.user?.id) &&
(!groupBuildId || groupBuildId === wsData.groupBuild?.id)
);
};
/**
* Check whether new Group Build started WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IGroupBuildParameters}
* @returns true when new Group Build was started, otherwise false
*/
export const hasGroupBuildStarted = (wsData: any, parameters: IGroupBuildParameters = {}): boolean =>
hasGroupBuildStatusChanged(wsData, parameters) && wsData.oldProgress === 'PENDING';
/**
* Additional filtering parameters.
*/
interface IBrewPushParameters {
buildId?: string;
buildIds?: string[];
}
/**
* Check whether Brew Push finished WebSocket event was sent.
*
* @param wsData - WebSocket data
* @param parameters - See {@link IBrewPushParameters}
* @returns true when Brew Push finished, otherwise false
*/
export const hasBrewPushFinished = (wsData: any, { buildId, buildIds }: IBrewPushParameters = {}): boolean => {
if (wsData.job !== 'BREW_PUSH' || wsData.notificationType !== 'BREW_PUSH_RESULT') {
return false;
}
if (!wsData.buildPushResult) {
uiLogger.error('hasBrewPushFinished: invalid WebSocket message ("buildPushResult" parameter is missing)', undefined, wsData);
return false; // ignore changes when 'buildPushResult' is not available
}
return (
(!buildId || buildId === wsData.buildPushResult.buildId) && (!buildIds || buildIds.includes(wsData.buildPushResult.buildId))
);
};
/**
* Additional filtering parameters.
*/
interface IMilestoneCloseParameters {
closeResultId?: string;
productMilestoneId?: string;
}
/**
* Check whether Milestone Close (Milestone Push) finished WebSocket event was sent.
*
* @param wsData - WebSocket data
* @returns true when Milestone Close finished, otherwise false
*/
export const hasMilestoneCloseFinished = (
wsData: any,
{ closeResultId, productMilestoneId }: IMilestoneCloseParameters = {}
): boolean => {
if (
wsData.job !== 'PRODUCT_MILESTONE_CLOSE' ||
wsData.notificationType !== 'PRODUCT_MILESTONE_CLOSE_RESULT' ||
wsData.progress !== 'FINISHED'
) {
return false;
}
if (!wsData.productMilestoneCloseResult) {
uiLogger.error(
'hasMilestonePushFinished: invalid WebSocket message ("productMilestoneCloseResult" parameter is missing)',
undefined,
wsData
);
return false; // ignore changes when 'productMilestoneCloseResult' is not available
}
return (
(!closeResultId || closeResultId === wsData.productMilestoneCloseResult.id) &&
(!productMilestoneId || productMilestoneId === wsData.productMilestoneCloseResult.milestone?.id)
);
};
interface IDeliverablesAnalysisParameters {
operationId?: string;
productMilestoneId?: string;
}
/**
* Check whether Deliverables Analysis changed WebSocket event was sent.
*
* @param wsData - WebSocket data
* @returns true when Deliverables Analysis changed, otherwise false
*/
export const hasDeliverablesAnalysisChanged = (
wsData: any,
{ operationId, productMilestoneId }: IDeliverablesAnalysisParameters = {}
): boolean => {
if (wsData.job !== 'OPERATION' || wsData.notificationType !== 'DELIVERABLES_ANALYSIS') {
return false;
}
if (!wsData.operation) {
uiLogger.error(
'hasDeliverablesAnalysisChanged: invalid WebSocket message ("operation" parameter is missing)',
undefined,
wsData
);
return false; // ignore changes when 'operation' is not available
}
return (
(!operationId || operationId === wsData.operationId) &&
(!productMilestoneId || productMilestoneId === wsData.operation.productMilestone?.id)
);
};
/**
* Check whether new Deliverables Analysis started WebSocket event was sent.
*
* @param wsData - WebSocket data
* @returns true when Deliverables Analysis started, otherwise false
*/
export const hasDeliverablesAnalysisStarted = (wsData: any, parameters: IDeliverablesAnalysisParameters = {}): boolean =>
hasDeliverablesAnalysisChanged(wsData, parameters) && wsData.oldProgress === 'PENDING';
/**
* Check whether Deliverables Analysis finished WebSocket event was sent.
*
* @param wsData - WebSocket data
* @returns true when Deliverables Analysis finished, otherwise false
*/
export const hasDeliverablesAnalysisFinished = (wsData: any, parameters: IDeliverablesAnalysisParameters = {}): boolean =>
hasDeliverablesAnalysisChanged(wsData, parameters) && wsData.progress === 'FINISHED';
/**
* Check whether new PNC status changed WebSocket event was sent.
*
* @param wsData - WebSocket data
* @returns true when new PNC status has changed, otherwise false
*/
export const hasPncStatusChanged = (wsData: any): boolean => {
if (wsData.job !== 'GENERIC_SETTING' || wsData.notificationType !== 'PNC_STATUS_CHANGED') {
return false;
}
if (!wsData.message) {
uiLogger.error('hasPncStatusChanged: invalid WebSocket message ("message" parameter is missing)', undefined, wsData);
return false; // ignore changes when PNC status is not available
}
return true;
};