@contrail/flexplm 1.7.3 → 1.7.4-alpha.2fb7e1f
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.
|
@@ -29,7 +29,8 @@ class BaseProcessPublishAssortment {
|
|
|
29
29
|
let publisher;
|
|
30
30
|
const assortmentId = event.assortmentId;
|
|
31
31
|
try {
|
|
32
|
-
console.info('process-start
|
|
32
|
+
console.info('process-start: assortmentId: ' + assortmentId
|
|
33
|
+
+ ', assortmentPublishChangeId: ' + assortmentPublishChangeId);
|
|
33
34
|
let seasonFed;
|
|
34
35
|
try {
|
|
35
36
|
seasonFed = await this.getSeasonFederation(assortmentId);
|
|
@@ -74,9 +75,9 @@ class BaseProcessPublishAssortment {
|
|
|
74
75
|
e.publishInfo = publishInfo;
|
|
75
76
|
}
|
|
76
77
|
catch (e2) {
|
|
77
|
-
console.
|
|
78
|
+
console.error('getPublishInfo failed: ' + e2.message);
|
|
78
79
|
}
|
|
79
|
-
console.
|
|
80
|
+
console.error('process failed: assortmentId: ' + assortmentId + ': ' + e.message);
|
|
80
81
|
throw e;
|
|
81
82
|
}
|
|
82
83
|
}
|
|
@@ -315,19 +316,17 @@ class BaseProcessPublishAssortment {
|
|
|
315
316
|
}
|
|
316
317
|
async downloadHydratedChangeDetail(assortmentPublishChange) {
|
|
317
318
|
try {
|
|
318
|
-
console.info('downloadHydratedChangeDetail-start');
|
|
319
319
|
const link = assortmentPublishChange?.hydratedDetailDownloadLink;
|
|
320
320
|
const response = await fetch(link);
|
|
321
321
|
const data = await response.json();
|
|
322
322
|
return data;
|
|
323
323
|
}
|
|
324
324
|
catch (e) {
|
|
325
|
-
console.
|
|
325
|
+
console.error('Error hydratedDetailDownloadLink: ' + e.message);
|
|
326
326
|
}
|
|
327
327
|
return undefined;
|
|
328
328
|
}
|
|
329
329
|
async downloadAssortmentBaseline(assortmentPublishChange) {
|
|
330
|
-
console.info('downloadAssortmentBaseline-start');
|
|
331
330
|
try {
|
|
332
331
|
const link = assortmentPublishChange?.assortmentBaselineDownloadLink;
|
|
333
332
|
const response = await fetch(link);
|
|
@@ -335,15 +334,12 @@ class BaseProcessPublishAssortment {
|
|
|
335
334
|
return data;
|
|
336
335
|
}
|
|
337
336
|
catch (e) {
|
|
338
|
-
console.
|
|
337
|
+
console.error('Error assortmentBaselineDownloadLink: ' + e.message);
|
|
339
338
|
}
|
|
340
339
|
return undefined;
|
|
341
340
|
}
|
|
342
341
|
async getDeleteChanges(assortmentPublishChange, apcHistory, assortmentBaseline, sinceDate) {
|
|
343
|
-
console.info('getDeleteChanges(): ' + assortmentPublishChange?.id);
|
|
344
|
-
console.info(sinceDate);
|
|
345
342
|
const currentAPCIndex = apcHistory.findIndex(pc => pc?.id === assortmentPublishChange?.id);
|
|
346
|
-
console.info(' currentAPCIndex: ' + currentAPCIndex);
|
|
347
343
|
if (currentAPCIndex == 0) {
|
|
348
344
|
return [];
|
|
349
345
|
}
|
|
@@ -352,16 +348,13 @@ class BaseProcessPublishAssortment {
|
|
|
352
348
|
const apcDeletes = await this.downloadDeleteChanges(assortmentPublishChange);
|
|
353
349
|
let previousApcDate = Date.parse(apcCreatedOn);
|
|
354
350
|
const sinceDateMilliseconds = sinceDate.getTime();
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
console.info('sinceDate: ' + sinceDate);
|
|
358
|
-
console.info('sinceDateMilliseconds: ' + sinceDateMilliseconds);
|
|
359
|
-
console.info('apcDateMilliseconds: ' + previousApcDate);
|
|
360
|
-
}
|
|
351
|
+
console.info('getDeleteChanges(): apc: ' + assortmentPublishChange?.id
|
|
352
|
+
+ ', index: ' + currentAPCIndex + ', previousApcCreatedOn: ' + apcCreatedOn);
|
|
361
353
|
//if only 1 apc, no processing needed
|
|
362
354
|
if (sinceDateMilliseconds !== previousApcDate) {
|
|
363
|
-
console.info('sinceDateMilliseconds !== apcDateMilliseconds');
|
|
364
355
|
const currentAssortmentItemIds = this.getBaselineItemIds(assortmentBaseline);
|
|
356
|
+
let scannedCount = 0;
|
|
357
|
+
let addedCount = 0;
|
|
365
358
|
const deleteIds = (apcDeletes.length === 0)
|
|
366
359
|
? []
|
|
367
360
|
: apcDeletes.map(item => item?.itemId);
|
|
@@ -376,19 +369,20 @@ class BaseProcessPublishAssortment {
|
|
|
376
369
|
? apcHistory[i - 1]
|
|
377
370
|
: undefined;
|
|
378
371
|
const deleteChanges = await this.buildDeleteChanges(workingAPC, previousApc);
|
|
379
|
-
console.info('checking deleteChanges');
|
|
380
372
|
for (const dItem of deleteChanges) {
|
|
381
373
|
const dItemId = dItem?.itemId;
|
|
382
|
-
|
|
374
|
+
scannedCount++;
|
|
383
375
|
if (!currentAssortmentItemIds.includes(dItemId) && !deleteIds.includes(dItemId)) {
|
|
384
|
-
|
|
376
|
+
addedCount++;
|
|
385
377
|
deleteIds.push(dItemId);
|
|
386
378
|
apcDeletes.push(dItem);
|
|
387
379
|
}
|
|
388
380
|
}
|
|
389
381
|
}
|
|
390
382
|
}
|
|
391
|
-
console.info('getDeleteChanges()
|
|
383
|
+
console.info('getDeleteChanges(): baselineItems: ' + currentAssortmentItemIds.length
|
|
384
|
+
+ ', scanned ' + scannedCount + ' historical delete changes, added ' + addedCount
|
|
385
|
+
+ ', deleteIds: ' + deleteIds.length);
|
|
392
386
|
console.info('getDeleteChanges()-deleteIds: ' + deleteIds);
|
|
393
387
|
}
|
|
394
388
|
return apcDeletes;
|
|
@@ -402,7 +396,6 @@ class BaseProcessPublishAssortment {
|
|
|
402
396
|
return itemIds;
|
|
403
397
|
}
|
|
404
398
|
async downloadDeleteChanges(apc) {
|
|
405
|
-
console.info('deleteDataDownloadLink-start');
|
|
406
399
|
try {
|
|
407
400
|
const link = apc?.deleteDataDownloadLink;
|
|
408
401
|
const response = await fetch(link);
|
|
@@ -410,19 +403,17 @@ class BaseProcessPublishAssortment {
|
|
|
410
403
|
return data;
|
|
411
404
|
}
|
|
412
405
|
catch (e) {
|
|
413
|
-
console.
|
|
406
|
+
console.error('Error deleteDataDownloadLink: ' + e.message);
|
|
414
407
|
}
|
|
415
408
|
return undefined;
|
|
416
409
|
}
|
|
417
410
|
async buildDeleteChanges(apc, previousApc) {
|
|
418
|
-
console.info('buildDeleteChanges()');
|
|
419
411
|
if (apc?.deleteDataDownloadLink) {
|
|
420
412
|
const deleteChanges = await this.downloadDeleteChanges(apc);
|
|
421
413
|
if (deleteChanges) {
|
|
422
414
|
return deleteChanges;
|
|
423
415
|
}
|
|
424
416
|
}
|
|
425
|
-
console.info('pulling down full APC');
|
|
426
417
|
apc = await this.downloadAssortmentPublishChange(apc?.assortmentId, apc?.id);
|
|
427
418
|
if (apc?.deleteDataDownloadLink) {
|
|
428
419
|
const deleteChanges = await this.downloadDeleteChanges(apc);
|
|
@@ -434,19 +425,18 @@ class BaseProcessPublishAssortment {
|
|
|
434
425
|
throw new Error(BaseProcessPublishAssortment.NOT_ABLE_TO_PROCESS_DELETE_CHANGES);
|
|
435
426
|
}
|
|
436
427
|
let previousBaseline;
|
|
437
|
-
console.info('check previousApc');
|
|
438
428
|
if (previousApc?.assortmentBaselineDownloadLink) {
|
|
439
429
|
previousBaseline = await this.downloadAssortmentBaseline(previousApc);
|
|
440
430
|
}
|
|
441
431
|
else {
|
|
442
|
-
console.info('previousApc pulling down full APC');
|
|
443
432
|
previousApc = await this.downloadAssortmentPublishChange(previousApc?.assortmentId, previousApc?.id);
|
|
444
433
|
previousBaseline = await this.downloadAssortmentBaseline(previousApc);
|
|
445
434
|
}
|
|
446
435
|
const deleteIds = apc?.detail?.deletes.map(dItem => dItem?.id);
|
|
447
436
|
//building deletes based on previous baseline; because some APCs don't have delete data
|
|
448
437
|
const deleteArray = previousBaseline?.assortmentItems.filter(aItem => deleteIds.includes(aItem?.itemId));
|
|
449
|
-
console.info('
|
|
438
|
+
console.info('buildDeleteChanges(): no deleteDataDownloadLink on apc ' + apc?.id
|
|
439
|
+
+ '; rebuilding ' + deleteArray.length + ' deletes from previous baseline');
|
|
450
440
|
return deleteArray;
|
|
451
441
|
}
|
|
452
442
|
async getItemFederatedIds( /*itemIds*/) {
|
|
@@ -484,7 +474,6 @@ class BaseProcessPublishAssortment {
|
|
|
484
474
|
return deleteItems;
|
|
485
475
|
}
|
|
486
476
|
getReleasedForDevelopmentItemAndFamilyIds(fullChange, deleteChanges) {
|
|
487
|
-
console.info('getReleasedForDevelopmentItemAndFamilyIds');
|
|
488
477
|
const releasedForDevelopmentItemIds = [];
|
|
489
478
|
const itemFamilySet = new Set();
|
|
490
479
|
const assortmentItemsArray = fullChange?.assortmentItems;
|
|
@@ -536,7 +525,6 @@ class BaseProcessPublishAssortment {
|
|
|
536
525
|
return !!lifecycleStage && !this.config.itemPreDevelopmentLifecycleStages.includes(lifecycleStage);
|
|
537
526
|
}
|
|
538
527
|
async processPublish(pcd, changeDetail, fullChange, deleteChanges) {
|
|
539
|
-
console.info('processPublish-start');
|
|
540
528
|
const event = {
|
|
541
529
|
assortmentId: pcd.assortmentId,
|
|
542
530
|
assortmentPublishChangeId: pcd.assortmentPublishChangeId
|
|
@@ -720,7 +708,6 @@ class BaseProcessPublishAssortment {
|
|
|
720
708
|
+ '-' + d.getUTCMilliseconds();
|
|
721
709
|
}
|
|
722
710
|
getItemFamilyChanges(pcd, changeDetail, assortmentItemFullChangeMap, assortmentItemDeleteMap) {
|
|
723
|
-
console.info('getItemFamilyChanges-start');
|
|
724
711
|
const itemFamilyChanges = new Map();
|
|
725
712
|
const { adds, deletes, updates, familyItemsRemoved } = changeDetail;
|
|
726
713
|
const addIds = adds.map(item => item.id);
|
|
@@ -785,8 +772,7 @@ class BaseProcessPublishAssortment {
|
|
|
785
772
|
}
|
|
786
773
|
else {
|
|
787
774
|
if (!item) {
|
|
788
|
-
console.error('Failed to find deleted item entity');
|
|
789
|
-
console.error(' itemFamilyId: ' + itemFamilyId + ' -itemId: ' + itemId);
|
|
775
|
+
console.error('Failed to find deleted item entity: itemFamilyId: ' + itemFamilyId + ', itemId: ' + itemId);
|
|
790
776
|
continue;
|
|
791
777
|
}
|
|
792
778
|
}
|
|
@@ -823,7 +809,6 @@ class BaseProcessPublishAssortment {
|
|
|
823
809
|
return itemFamilyChanges;
|
|
824
810
|
}
|
|
825
811
|
async getEventsForPublishChangeData(publishChangeData) {
|
|
826
|
-
console.info('getEventsForPublishChangeData-start');
|
|
827
812
|
const seasonalPayloads = [];
|
|
828
813
|
for (const itemFamilyChange of publishChangeData.itemFamilyChanges.values()) {
|
|
829
814
|
const events = await this.getEventsForItemFamilyChanges(itemFamilyChange, publishChangeData.assortmentId, publishChangeData.seasonFed, publishChangeData.itemToFederatedIdMapping);
|
|
@@ -831,6 +816,8 @@ class BaseProcessPublishAssortment {
|
|
|
831
816
|
seasonalPayloads.push(...events);
|
|
832
817
|
}
|
|
833
818
|
}
|
|
819
|
+
console.info('getEventsForPublishChangeData: itemFamilies: '
|
|
820
|
+
+ publishChangeData.itemFamilyChanges.size + ', payloads: ' + seasonalPayloads.length);
|
|
834
821
|
return seasonalPayloads;
|
|
835
822
|
}
|
|
836
823
|
/**Returns the events for a given ItemFamilyChanges object
|
|
@@ -850,7 +837,6 @@ class BaseProcessPublishAssortment {
|
|
|
850
837
|
* @returns
|
|
851
838
|
*/
|
|
852
839
|
async getEventsForItemFamilyChanges(itemFamilyChanges, assortmentId, seasonFed, itemToFederatedIdMapping) {
|
|
853
|
-
console.info('getEventsForItemFamilyChanges()');
|
|
854
840
|
const events = [];
|
|
855
841
|
const LCSSeason = Object.assign({}, seasonFed);
|
|
856
842
|
const assortment = await this.getAssortment(assortmentId);
|
|
@@ -175,18 +175,12 @@ class DataConverter {
|
|
|
175
175
|
}
|
|
176
176
|
async getObjectReferenceValue(prop, newData, inflateObjRef = false) {
|
|
177
177
|
const slug = prop['slug'];
|
|
178
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
179
|
-
console.debug('getObjectReferenceValue-prop: ' + slug);
|
|
180
|
-
}
|
|
181
178
|
let value = newData[slug];
|
|
182
179
|
const entityType = prop['referencedTypeRootSlug'];
|
|
183
180
|
const entityId = newData[slug + 'Id'];
|
|
184
181
|
if ((!value || typeof value === 'string') && inflateObjRef) {
|
|
185
182
|
if (entityId) {
|
|
186
183
|
if (this.objRefCache[entityId]) {
|
|
187
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
188
|
-
console.debug('cache hit: ' + entityId);
|
|
189
|
-
}
|
|
190
184
|
return this.objRefCache[entityId];
|
|
191
185
|
}
|
|
192
186
|
const criteria = {
|
|
@@ -432,9 +426,6 @@ class DataConverter {
|
|
|
432
426
|
return "";
|
|
433
427
|
}
|
|
434
428
|
if (this.objRefCache[ctx.cacheKey]) {
|
|
435
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
436
|
-
console.debug(`object reference cache hit: ${ctx.cacheKey}`);
|
|
437
|
-
}
|
|
438
429
|
return this.objRefCache[ctx.cacheKey];
|
|
439
430
|
}
|
|
440
431
|
const objectReferenceId = ctx.useIdentityService
|
|
@@ -634,9 +625,6 @@ class DataConverter {
|
|
|
634
625
|
}
|
|
635
626
|
let cacheUser = DataConverter.getFromStaticCache(nd.email);
|
|
636
627
|
if (cacheUser) {
|
|
637
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
638
|
-
console.debug('user cache hit: ' + nd.email);
|
|
639
|
-
}
|
|
640
628
|
await this.processGroupMemberCheck(prop, nd.email);
|
|
641
629
|
return cacheUser;
|
|
642
630
|
}
|
|
@@ -706,18 +694,12 @@ class DataConverter {
|
|
|
706
694
|
*/
|
|
707
695
|
async getUserListValue(prop, newData) {
|
|
708
696
|
const slug = prop['slug'];
|
|
709
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
710
|
-
console.debug('getUserListValue-prop: ' + slug);
|
|
711
|
-
}
|
|
712
697
|
const entityId = newData[slug + 'Id'];
|
|
713
698
|
if (!entityId) {
|
|
714
699
|
return {};
|
|
715
700
|
}
|
|
716
701
|
const cacheUser = DataConverter.getFromStaticCache(entityId);
|
|
717
702
|
if (cacheUser) {
|
|
718
|
-
if (app_framework_1.Logger.isDebugOn()) {
|
|
719
|
-
console.debug('user cache hit: ' + entityId);
|
|
720
|
-
}
|
|
721
703
|
return Object.assign({}, cacheUser);
|
|
722
704
|
}
|
|
723
705
|
const user = await this.getUserById(entityId);
|
package/package.json
CHANGED
|
@@ -1,66 +1,66 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@contrail/flexplm",
|
|
3
|
-
"version": "1.7.
|
|
4
|
-
"description": "Library used for integration with flexplm.",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"types": "lib/index.d.ts",
|
|
7
|
-
"bin": {
|
|
8
|
-
"flexplm-mapping": "lib/cli/index.js"
|
|
9
|
-
},
|
|
10
|
-
"files": [
|
|
11
|
-
"lib/**/*",
|
|
12
|
-
"scripts/copy-template.js"
|
|
13
|
-
],
|
|
14
|
-
"scripts": {
|
|
15
|
-
"build": "tsc; node scripts/copy-template.js",
|
|
16
|
-
"build:win": "tsc && node scripts/copy-template.js",
|
|
17
|
-
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
|
|
18
|
-
"lint": "tslint -p tsconfig.json",
|
|
19
|
-
"test": "jest",
|
|
20
|
-
"test-watch": "jest --watch",
|
|
21
|
-
"test-debug": "jest --runInBand",
|
|
22
|
-
"test-coverage": "jest --coverage"
|
|
23
|
-
},
|
|
24
|
-
"keywords": [],
|
|
25
|
-
"author": "VibeIQ",
|
|
26
|
-
"license": "ISC",
|
|
27
|
-
"devDependencies": {
|
|
28
|
-
"@types/jest": "^29.5.2",
|
|
29
|
-
"jest": "^29.5.0",
|
|
30
|
-
"prettier": "^1.19.1",
|
|
31
|
-
"ts-jest": "^29.1.1",
|
|
32
|
-
"tslint": "^5.11.0",
|
|
33
|
-
"tslint-config-prettier": "^1.18.0",
|
|
34
|
-
"typescript": "^4.0.0"
|
|
35
|
-
},
|
|
36
|
-
"peerDependencies": {
|
|
37
|
-
"typescript": ">=4.0.0"
|
|
38
|
-
},
|
|
39
|
-
"peerDependenciesMeta": {
|
|
40
|
-
"typescript": {
|
|
41
|
-
"optional": true
|
|
42
|
-
}
|
|
43
|
-
},
|
|
44
|
-
"jest": {
|
|
45
|
-
"moduleFileExtensions": [
|
|
46
|
-
"js",
|
|
47
|
-
"json",
|
|
48
|
-
"ts"
|
|
49
|
-
],
|
|
50
|
-
"rootDir": "src",
|
|
51
|
-
"testRegex": ".spec.ts$",
|
|
52
|
-
"transform": {
|
|
53
|
-
"^.+\\.(t|j)s$": "ts-jest"
|
|
54
|
-
},
|
|
55
|
-
"coverageDirectory": "../coverage",
|
|
56
|
-
"testEnvironment": "node"
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@contrail/app-framework": "^1.4.3",
|
|
60
|
-
"@contrail/sdk": "^1.5.10",
|
|
61
|
-
"@contrail/transform-data": "^1.3.2",
|
|
62
|
-
"@contrail/util": "^1.3.1",
|
|
63
|
-
"axios": "^1.4.0",
|
|
64
|
-
"p-limit": "^3.1.0"
|
|
65
|
-
}
|
|
66
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@contrail/flexplm",
|
|
3
|
+
"version": "1.7.4-alpha.2fb7e1f",
|
|
4
|
+
"description": "Library used for integration with flexplm.",
|
|
5
|
+
"main": "lib/index.js",
|
|
6
|
+
"types": "lib/index.d.ts",
|
|
7
|
+
"bin": {
|
|
8
|
+
"flexplm-mapping": "lib/cli/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"lib/**/*",
|
|
12
|
+
"scripts/copy-template.js"
|
|
13
|
+
],
|
|
14
|
+
"scripts": {
|
|
15
|
+
"build": "tsc; node scripts/copy-template.js",
|
|
16
|
+
"build:win": "tsc && node scripts/copy-template.js",
|
|
17
|
+
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
|
|
18
|
+
"lint": "tslint -p tsconfig.json",
|
|
19
|
+
"test": "jest",
|
|
20
|
+
"test-watch": "jest --watch",
|
|
21
|
+
"test-debug": "jest --runInBand",
|
|
22
|
+
"test-coverage": "jest --coverage"
|
|
23
|
+
},
|
|
24
|
+
"keywords": [],
|
|
25
|
+
"author": "VibeIQ",
|
|
26
|
+
"license": "ISC",
|
|
27
|
+
"devDependencies": {
|
|
28
|
+
"@types/jest": "^29.5.2",
|
|
29
|
+
"jest": "^29.5.0",
|
|
30
|
+
"prettier": "^1.19.1",
|
|
31
|
+
"ts-jest": "^29.1.1",
|
|
32
|
+
"tslint": "^5.11.0",
|
|
33
|
+
"tslint-config-prettier": "^1.18.0",
|
|
34
|
+
"typescript": "^4.0.0"
|
|
35
|
+
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"typescript": ">=4.0.0"
|
|
38
|
+
},
|
|
39
|
+
"peerDependenciesMeta": {
|
|
40
|
+
"typescript": {
|
|
41
|
+
"optional": true
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"jest": {
|
|
45
|
+
"moduleFileExtensions": [
|
|
46
|
+
"js",
|
|
47
|
+
"json",
|
|
48
|
+
"ts"
|
|
49
|
+
],
|
|
50
|
+
"rootDir": "src",
|
|
51
|
+
"testRegex": ".spec.ts$",
|
|
52
|
+
"transform": {
|
|
53
|
+
"^.+\\.(t|j)s$": "ts-jest"
|
|
54
|
+
},
|
|
55
|
+
"coverageDirectory": "../coverage",
|
|
56
|
+
"testEnvironment": "node"
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@contrail/app-framework": "^1.4.3",
|
|
60
|
+
"@contrail/sdk": "^1.5.10",
|
|
61
|
+
"@contrail/transform-data": "^1.3.2",
|
|
62
|
+
"@contrail/util": "^1.3.1",
|
|
63
|
+
"axios": "^1.4.0",
|
|
64
|
+
"p-limit": "^3.1.0"
|
|
65
|
+
}
|
|
66
|
+
}
|