@contrail/flexplm 1.0.16 → 1.0.18
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/lib/entity-processor/base-entity-processor.d.ts +30 -30
- package/lib/entity-processor/base-entity-processor.js +143 -143
- package/lib/flexplm-request.d.ts +3 -3
- package/lib/flexplm-request.js +34 -34
- package/lib/flexplm-utils.d.ts +5 -5
- package/lib/flexplm-utils.js +33 -33
- package/lib/index.d.ts +19 -15
- package/lib/index.js +35 -31
- package/lib/interfaces/interfaces.d.ts +91 -91
- package/lib/interfaces/interfaces.js +2 -2
- package/lib/interfaces/item-family-changes.d.ts +19 -19
- package/lib/interfaces/item-family-changes.js +49 -49
- package/lib/interfaces/publish-change-data.d.ts +17 -17
- package/lib/interfaces/publish-change-data.js +30 -30
- package/lib/publish/base-process-publish-assortment-callback.d.ts +8 -8
- package/lib/publish/base-process-publish-assortment-callback.js +19 -19
- package/lib/publish/base-process-publish-assortment.d.ts +57 -57
- package/lib/publish/base-process-publish-assortment.js +570 -563
- package/lib/publish/mockData.d.ts +774 -774
- package/lib/publish/mockData.js +3033 -3033
- package/lib/util/config-defaults.d.ts +6 -6
- package/lib/util/config-defaults.js +71 -71
- package/lib/util/data-converter.d.ts +22 -22
- package/lib/util/data-converter.js +318 -318
- package/lib/util/federation.d.ts +15 -15
- package/lib/util/federation.js +149 -149
- package/lib/util/flexplm-connect.d.ts +16 -16
- package/lib/util/flexplm-connect.js +130 -130
- package/lib/util/logger-config.d.ts +1 -1
- package/lib/util/logger-config.js +26 -26
- package/lib/util/map-util-spec-mockData.d.ts +0 -0
- package/lib/util/map-util-spec-mockData.js +203 -0
- package/lib/util/map-utils.d.ts +4 -3
- package/lib/util/map-utils.js +28 -20
- package/lib/util/mockData.d.ts +39 -39
- package/lib/util/mockData.js +100 -100
- package/lib/util/thumbnail-util.d.ts +15 -15
- package/lib/util/thumbnail-util.js +112 -112
- package/lib/util/type-conversion-utils-spec-mockData.d.ts +0 -0
- package/lib/util/type-conversion-utils-spec-mockData.js +205 -0
- package/lib/util/type-conversion-utils.d.ts +10 -0
- package/lib/util/type-conversion-utils.js +100 -0
- package/lib/util/type-defaults.d.ts +9 -0
- package/lib/util/type-defaults.js +117 -0
- package/lib/util/type-utils.d.ts +12 -12
- package/lib/util/type-utils.js +101 -101
- package/package.json +47 -46
package/lib/util/federation.d.ts
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { FederationRecord } from '../interfaces/interfaces';
|
|
2
|
-
export declare class Federation {
|
|
3
|
-
private CHUNK_SIZE;
|
|
4
|
-
getFederatedMappedRefId(entityType: string, entityId: string): Promise<string>;
|
|
5
|
-
createFederatedRecord(eventBody: any): Promise<any>;
|
|
6
|
-
getFederationRecordFromMappedRefId(mappedRefId: string): Promise<FederationRecord>;
|
|
7
|
-
static getEntityId(fedRecord: FederationRecord): {
|
|
8
|
-
entityType: string;
|
|
9
|
-
entityId: string;
|
|
10
|
-
};
|
|
11
|
-
getEntityFromMappedRefId(mappedRefId: string): Promise<any>;
|
|
12
|
-
getFederationRecordsFromIds(ids: string[]): Promise<FederationRecord[]>;
|
|
13
|
-
getFederationRecordsFromIdsBulk(ids: string[]): Promise<FederationRecord[]>;
|
|
14
|
-
splitIntoChunksByLen(arr: any, len: any): any[];
|
|
15
|
-
}
|
|
1
|
+
import { FederationRecord } from '../interfaces/interfaces';
|
|
2
|
+
export declare class Federation {
|
|
3
|
+
private CHUNK_SIZE;
|
|
4
|
+
getFederatedMappedRefId(entityType: string, entityId: string): Promise<string>;
|
|
5
|
+
createFederatedRecord(eventBody: any): Promise<any>;
|
|
6
|
+
getFederationRecordFromMappedRefId(mappedRefId: string): Promise<FederationRecord>;
|
|
7
|
+
static getEntityId(fedRecord: FederationRecord): {
|
|
8
|
+
entityType: string;
|
|
9
|
+
entityId: string;
|
|
10
|
+
};
|
|
11
|
+
getEntityFromMappedRefId(mappedRefId: string): Promise<any>;
|
|
12
|
+
getFederationRecordsFromIds(ids: string[]): Promise<FederationRecord[]>;
|
|
13
|
+
getFederationRecordsFromIdsBulk(ids: string[]): Promise<FederationRecord[]>;
|
|
14
|
+
splitIntoChunksByLen(arr: any, len: any): any[];
|
|
15
|
+
}
|
package/lib/util/federation.js
CHANGED
|
@@ -1,149 +1,149 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
-
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
-
};
|
|
5
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.Federation = void 0;
|
|
7
|
-
const sdk_1 = require("@contrail/sdk");
|
|
8
|
-
const p_limit_1 = __importDefault(require("p-limit"));
|
|
9
|
-
const limit = (0, p_limit_1.default)(30);
|
|
10
|
-
const FED_CONFIG = {
|
|
11
|
-
appIdentifier: '@vibeiq/flexplm-connector',
|
|
12
|
-
federationSchema: 'DEFAULT'
|
|
13
|
-
};
|
|
14
|
-
class Federation {
|
|
15
|
-
constructor() {
|
|
16
|
-
this.CHUNK_SIZE = 50;
|
|
17
|
-
}
|
|
18
|
-
async getFederatedMappedRefId(entityType, entityId) {
|
|
19
|
-
const criteria = {
|
|
20
|
-
reference: entityType + ':' + entityId,
|
|
21
|
-
appIdentifier: FED_CONFIG.appIdentifier,
|
|
22
|
-
federationSchema: FED_CONFIG.federationSchema
|
|
23
|
-
};
|
|
24
|
-
console.log('getFederatedMappedRefId: ' + JSON.stringify(criteria));
|
|
25
|
-
const fedRecords = await new sdk_1.Entities().get({
|
|
26
|
-
entityName: 'federation',
|
|
27
|
-
criteria
|
|
28
|
-
});
|
|
29
|
-
const federatedId = (fedRecords[0])
|
|
30
|
-
? fedRecords[0]['mappedReference']
|
|
31
|
-
: '';
|
|
32
|
-
return federatedId;
|
|
33
|
-
}
|
|
34
|
-
async createFederatedRecord(eventBody) {
|
|
35
|
-
const itemResults = eventBody.payload;
|
|
36
|
-
for (let i = 0; i < itemResults.length; i++) {
|
|
37
|
-
if (!itemResults[i].federatedId) {
|
|
38
|
-
continue;
|
|
39
|
-
}
|
|
40
|
-
const payload = {
|
|
41
|
-
appIdentifier: FED_CONFIG.appIdentifier,
|
|
42
|
-
reference: itemResults[i].entityReference,
|
|
43
|
-
mappedReference: itemResults[i].federatedId,
|
|
44
|
-
federationSchema: FED_CONFIG.federationSchema
|
|
45
|
-
};
|
|
46
|
-
try {
|
|
47
|
-
const results = await new sdk_1.Entities().create({ entityName: 'federation', object: payload });
|
|
48
|
-
return results;
|
|
49
|
-
}
|
|
50
|
-
catch (error) {
|
|
51
|
-
console.log('createFederatedRecord-error: ', error);
|
|
52
|
-
throw new Error('Error creating federation record: ' + error.message);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
}
|
|
56
|
-
async getFederationRecordFromMappedRefId(mappedRefId) {
|
|
57
|
-
const criteria = {
|
|
58
|
-
appIdentifier: FED_CONFIG.appIdentifier,
|
|
59
|
-
mappedReference: mappedRefId,
|
|
60
|
-
federationSchema: FED_CONFIG.federationSchema
|
|
61
|
-
};
|
|
62
|
-
try {
|
|
63
|
-
const fedRecords = await new sdk_1.Entities().get({
|
|
64
|
-
entityName: 'federation',
|
|
65
|
-
criteria
|
|
66
|
-
});
|
|
67
|
-
return (fedRecords && fedRecords[0]) ? fedRecords[0] : undefined;
|
|
68
|
-
}
|
|
69
|
-
catch (e) {
|
|
70
|
-
console.log('getFederationData-error: ' + e.message);
|
|
71
|
-
}
|
|
72
|
-
return undefined;
|
|
73
|
-
}
|
|
74
|
-
static getEntityId(fedRecord) {
|
|
75
|
-
const entityString = fedRecord['reference'];
|
|
76
|
-
const entitySplit = entityString.split(':');
|
|
77
|
-
const entityType = entitySplit[0];
|
|
78
|
-
const entityId = entitySplit[1];
|
|
79
|
-
return { entityType, entityId };
|
|
80
|
-
}
|
|
81
|
-
async getEntityFromMappedRefId(mappedRefId) {
|
|
82
|
-
const fedRecord = await this.getFederationRecordFromMappedRefId(mappedRefId);
|
|
83
|
-
console.log('fedRecord: ' + JSON.stringify(fedRecord));
|
|
84
|
-
if (!fedRecord) {
|
|
85
|
-
console.log('Federation Record doesnt exist. Cant get entity!');
|
|
86
|
-
return;
|
|
87
|
-
}
|
|
88
|
-
const { entityType, entityId } = Federation.getEntityId(fedRecord);
|
|
89
|
-
const criteria = {
|
|
90
|
-
id: entityId
|
|
91
|
-
};
|
|
92
|
-
const entities = await new sdk_1.Entities().get({
|
|
93
|
-
entityName: entityType,
|
|
94
|
-
criteria
|
|
95
|
-
});
|
|
96
|
-
const entity = (entities && entities[0]) ? entities[0] : undefined;
|
|
97
|
-
return entity;
|
|
98
|
-
}
|
|
99
|
-
async getFederationRecordsFromIds(ids) {
|
|
100
|
-
const fedRecords = [];
|
|
101
|
-
for (let i = 0; i < ids.length; i++) {
|
|
102
|
-
const criteria = {
|
|
103
|
-
reference: ids[i],
|
|
104
|
-
appIdentifier: FED_CONFIG.appIdentifier,
|
|
105
|
-
federationSchema: FED_CONFIG.federationSchema
|
|
106
|
-
};
|
|
107
|
-
const recs = await new sdk_1.Entities().get({
|
|
108
|
-
entityName: 'federation',
|
|
109
|
-
criteria
|
|
110
|
-
});
|
|
111
|
-
if (recs[0]) {
|
|
112
|
-
fedRecords.push(recs[0]);
|
|
113
|
-
}
|
|
114
|
-
}
|
|
115
|
-
return fedRecords;
|
|
116
|
-
}
|
|
117
|
-
async getFederationRecordsFromIdsBulk(ids) {
|
|
118
|
-
const chunks = this.splitIntoChunksByLen(ids, this.CHUNK_SIZE);
|
|
119
|
-
const fedRecords = [];
|
|
120
|
-
const federatedPromises = [];
|
|
121
|
-
const entities = new sdk_1.Entities();
|
|
122
|
-
for (const chunk of chunks) {
|
|
123
|
-
const fedPromise = limit(async () => {
|
|
124
|
-
const criteria = {
|
|
125
|
-
references: chunk,
|
|
126
|
-
appIdentifier: FED_CONFIG.appIdentifier,
|
|
127
|
-
federationSchema: FED_CONFIG.federationSchema
|
|
128
|
-
};
|
|
129
|
-
const records = await entities.get({
|
|
130
|
-
entityName: 'federation',
|
|
131
|
-
criteria
|
|
132
|
-
});
|
|
133
|
-
fedRecords.push(...records);
|
|
134
|
-
});
|
|
135
|
-
federatedPromises.push(fedPromise);
|
|
136
|
-
}
|
|
137
|
-
await Promise.all(federatedPromises);
|
|
138
|
-
return fedRecords;
|
|
139
|
-
}
|
|
140
|
-
splitIntoChunksByLen(arr, len) {
|
|
141
|
-
const chunks = [], n = arr?.length;
|
|
142
|
-
let i = 0;
|
|
143
|
-
while (i < n) {
|
|
144
|
-
chunks.push(arr.slice(i, i += len));
|
|
145
|
-
}
|
|
146
|
-
return chunks;
|
|
147
|
-
}
|
|
148
|
-
}
|
|
149
|
-
exports.Federation = Federation;
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Federation = void 0;
|
|
7
|
+
const sdk_1 = require("@contrail/sdk");
|
|
8
|
+
const p_limit_1 = __importDefault(require("p-limit"));
|
|
9
|
+
const limit = (0, p_limit_1.default)(30);
|
|
10
|
+
const FED_CONFIG = {
|
|
11
|
+
appIdentifier: '@vibeiq/flexplm-connector',
|
|
12
|
+
federationSchema: 'DEFAULT'
|
|
13
|
+
};
|
|
14
|
+
class Federation {
|
|
15
|
+
constructor() {
|
|
16
|
+
this.CHUNK_SIZE = 50;
|
|
17
|
+
}
|
|
18
|
+
async getFederatedMappedRefId(entityType, entityId) {
|
|
19
|
+
const criteria = {
|
|
20
|
+
reference: entityType + ':' + entityId,
|
|
21
|
+
appIdentifier: FED_CONFIG.appIdentifier,
|
|
22
|
+
federationSchema: FED_CONFIG.federationSchema
|
|
23
|
+
};
|
|
24
|
+
console.log('getFederatedMappedRefId: ' + JSON.stringify(criteria));
|
|
25
|
+
const fedRecords = await new sdk_1.Entities().get({
|
|
26
|
+
entityName: 'federation',
|
|
27
|
+
criteria
|
|
28
|
+
});
|
|
29
|
+
const federatedId = (fedRecords[0])
|
|
30
|
+
? fedRecords[0]['mappedReference']
|
|
31
|
+
: '';
|
|
32
|
+
return federatedId;
|
|
33
|
+
}
|
|
34
|
+
async createFederatedRecord(eventBody) {
|
|
35
|
+
const itemResults = eventBody.payload;
|
|
36
|
+
for (let i = 0; i < itemResults.length; i++) {
|
|
37
|
+
if (!itemResults[i].federatedId) {
|
|
38
|
+
continue;
|
|
39
|
+
}
|
|
40
|
+
const payload = {
|
|
41
|
+
appIdentifier: FED_CONFIG.appIdentifier,
|
|
42
|
+
reference: itemResults[i].entityReference,
|
|
43
|
+
mappedReference: itemResults[i].federatedId,
|
|
44
|
+
federationSchema: FED_CONFIG.federationSchema
|
|
45
|
+
};
|
|
46
|
+
try {
|
|
47
|
+
const results = await new sdk_1.Entities().create({ entityName: 'federation', object: payload });
|
|
48
|
+
return results;
|
|
49
|
+
}
|
|
50
|
+
catch (error) {
|
|
51
|
+
console.log('createFederatedRecord-error: ', error);
|
|
52
|
+
throw new Error('Error creating federation record: ' + error.message);
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
async getFederationRecordFromMappedRefId(mappedRefId) {
|
|
57
|
+
const criteria = {
|
|
58
|
+
appIdentifier: FED_CONFIG.appIdentifier,
|
|
59
|
+
mappedReference: mappedRefId,
|
|
60
|
+
federationSchema: FED_CONFIG.federationSchema
|
|
61
|
+
};
|
|
62
|
+
try {
|
|
63
|
+
const fedRecords = await new sdk_1.Entities().get({
|
|
64
|
+
entityName: 'federation',
|
|
65
|
+
criteria
|
|
66
|
+
});
|
|
67
|
+
return (fedRecords && fedRecords[0]) ? fedRecords[0] : undefined;
|
|
68
|
+
}
|
|
69
|
+
catch (e) {
|
|
70
|
+
console.log('getFederationData-error: ' + e.message);
|
|
71
|
+
}
|
|
72
|
+
return undefined;
|
|
73
|
+
}
|
|
74
|
+
static getEntityId(fedRecord) {
|
|
75
|
+
const entityString = fedRecord['reference'];
|
|
76
|
+
const entitySplit = entityString.split(':');
|
|
77
|
+
const entityType = entitySplit[0];
|
|
78
|
+
const entityId = entitySplit[1];
|
|
79
|
+
return { entityType, entityId };
|
|
80
|
+
}
|
|
81
|
+
async getEntityFromMappedRefId(mappedRefId) {
|
|
82
|
+
const fedRecord = await this.getFederationRecordFromMappedRefId(mappedRefId);
|
|
83
|
+
console.log('fedRecord: ' + JSON.stringify(fedRecord));
|
|
84
|
+
if (!fedRecord) {
|
|
85
|
+
console.log('Federation Record doesnt exist. Cant get entity!');
|
|
86
|
+
return;
|
|
87
|
+
}
|
|
88
|
+
const { entityType, entityId } = Federation.getEntityId(fedRecord);
|
|
89
|
+
const criteria = {
|
|
90
|
+
id: entityId
|
|
91
|
+
};
|
|
92
|
+
const entities = await new sdk_1.Entities().get({
|
|
93
|
+
entityName: entityType,
|
|
94
|
+
criteria
|
|
95
|
+
});
|
|
96
|
+
const entity = (entities && entities[0]) ? entities[0] : undefined;
|
|
97
|
+
return entity;
|
|
98
|
+
}
|
|
99
|
+
async getFederationRecordsFromIds(ids) {
|
|
100
|
+
const fedRecords = [];
|
|
101
|
+
for (let i = 0; i < ids.length; i++) {
|
|
102
|
+
const criteria = {
|
|
103
|
+
reference: ids[i],
|
|
104
|
+
appIdentifier: FED_CONFIG.appIdentifier,
|
|
105
|
+
federationSchema: FED_CONFIG.federationSchema
|
|
106
|
+
};
|
|
107
|
+
const recs = await new sdk_1.Entities().get({
|
|
108
|
+
entityName: 'federation',
|
|
109
|
+
criteria
|
|
110
|
+
});
|
|
111
|
+
if (recs[0]) {
|
|
112
|
+
fedRecords.push(recs[0]);
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
return fedRecords;
|
|
116
|
+
}
|
|
117
|
+
async getFederationRecordsFromIdsBulk(ids) {
|
|
118
|
+
const chunks = this.splitIntoChunksByLen(ids, this.CHUNK_SIZE);
|
|
119
|
+
const fedRecords = [];
|
|
120
|
+
const federatedPromises = [];
|
|
121
|
+
const entities = new sdk_1.Entities();
|
|
122
|
+
for (const chunk of chunks) {
|
|
123
|
+
const fedPromise = limit(async () => {
|
|
124
|
+
const criteria = {
|
|
125
|
+
references: chunk,
|
|
126
|
+
appIdentifier: FED_CONFIG.appIdentifier,
|
|
127
|
+
federationSchema: FED_CONFIG.federationSchema
|
|
128
|
+
};
|
|
129
|
+
const records = await entities.get({
|
|
130
|
+
entityName: 'federation',
|
|
131
|
+
criteria
|
|
132
|
+
});
|
|
133
|
+
fedRecords.push(...records);
|
|
134
|
+
});
|
|
135
|
+
federatedPromises.push(fedPromise);
|
|
136
|
+
}
|
|
137
|
+
await Promise.all(federatedPromises);
|
|
138
|
+
return fedRecords;
|
|
139
|
+
}
|
|
140
|
+
splitIntoChunksByLen(arr, len) {
|
|
141
|
+
const chunks = [], n = arr?.length;
|
|
142
|
+
let i = 0;
|
|
143
|
+
while (i < n) {
|
|
144
|
+
chunks.push(arr.slice(i, i += len));
|
|
145
|
+
}
|
|
146
|
+
return chunks;
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
exports.Federation = Federation;
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { FCConfig, FlexPLMResponseData, PayloadType } from '../interfaces/interfaces';
|
|
2
|
-
export declare class FlexPLMConnect {
|
|
3
|
-
private config;
|
|
4
|
-
private vibeEventEndpoint;
|
|
5
|
-
payloadSendAsArray: boolean;
|
|
6
|
-
constructor(_config: FCConfig, endPoint?: any, payloadAsArray?: any);
|
|
7
|
-
private getRequestOptions;
|
|
8
|
-
getCSRF(): Promise<{
|
|
9
|
-
nonce_key: any;
|
|
10
|
-
nonce: any;
|
|
11
|
-
}>;
|
|
12
|
-
sendRequest(csrf: any, payload: any): Promise<Response>;
|
|
13
|
-
protected processRequest(payload: any): Promise<FlexPLMResponseData>;
|
|
14
|
-
sendToFlexPLM(payload: PayloadType): Promise<FlexPLMResponseData>;
|
|
15
|
-
sendMultipleToFlexPLM(payload: PayloadType[]): Promise<FlexPLMResponseData>;
|
|
16
|
-
}
|
|
1
|
+
import { FCConfig, FlexPLMResponseData, PayloadType } from '../interfaces/interfaces';
|
|
2
|
+
export declare class FlexPLMConnect {
|
|
3
|
+
private config;
|
|
4
|
+
private vibeEventEndpoint;
|
|
5
|
+
payloadSendAsArray: boolean;
|
|
6
|
+
constructor(_config: FCConfig, endPoint?: any, payloadAsArray?: any);
|
|
7
|
+
private getRequestOptions;
|
|
8
|
+
getCSRF(): Promise<{
|
|
9
|
+
nonce_key: any;
|
|
10
|
+
nonce: any;
|
|
11
|
+
}>;
|
|
12
|
+
sendRequest(csrf: any, payload: any): Promise<Response>;
|
|
13
|
+
protected processRequest(payload: any): Promise<FlexPLMResponseData>;
|
|
14
|
+
sendToFlexPLM(payload: PayloadType): Promise<FlexPLMResponseData>;
|
|
15
|
+
sendMultipleToFlexPLM(payload: PayloadType[]): Promise<FlexPLMResponseData>;
|
|
16
|
+
}
|
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.FlexPLMConnect = void 0;
|
|
4
|
-
const app_framework_1 = require("@contrail/app-framework");
|
|
5
|
-
class FlexPLMConnect {
|
|
6
|
-
constructor(_config, endPoint = undefined, payloadAsArray = undefined) {
|
|
7
|
-
this.vibeEventEndpoint = '';
|
|
8
|
-
this.payloadSendAsArray = true;
|
|
9
|
-
this.config = _config;
|
|
10
|
-
this.vibeEventEndpoint = (endPoint)
|
|
11
|
-
? endPoint
|
|
12
|
-
: this.config.vibeEventEndpoint;
|
|
13
|
-
this.payloadSendAsArray = (payloadAsArray != undefined)
|
|
14
|
-
? payloadAsArray
|
|
15
|
-
: this.config['payloadDefaultAsArray'];
|
|
16
|
-
}
|
|
17
|
-
getRequestOptions(method) {
|
|
18
|
-
const csrfOptions = {
|
|
19
|
-
method,
|
|
20
|
-
headers: {
|
|
21
|
-
'Content-Type': 'application/json',
|
|
22
|
-
PLM_ENV: this.config.plmEnviornment,
|
|
23
|
-
Authorization: 'Basic ' + Buffer.from(`${this.config.userName()}:${this.config.password()}`, 'binary').toString('base64')
|
|
24
|
-
}
|
|
25
|
-
};
|
|
26
|
-
if (app_framework_1.Logger.isInfoOn()) {
|
|
27
|
-
const logOptions = JSON.parse(JSON.stringify(csrfOptions));
|
|
28
|
-
logOptions['headers']['Authorization'] = logOptions?.headers?.Authorization.substring(0, 9);
|
|
29
|
-
console.info('csrfOptions: ' + JSON.stringify(logOptions));
|
|
30
|
-
}
|
|
31
|
-
return csrfOptions;
|
|
32
|
-
}
|
|
33
|
-
async getCSRF() {
|
|
34
|
-
const urlContext = this.config.urlContext;
|
|
35
|
-
const csrfEndpoint = this.config.csrfEndpoint;
|
|
36
|
-
const csrfURL = this.config.apiHost + urlContext + csrfEndpoint;
|
|
37
|
-
console.info('csrfURL: ' + csrfURL);
|
|
38
|
-
const csrfOptions = this.getRequestOptions('GET');
|
|
39
|
-
const response = await fetch(csrfURL, csrfOptions);
|
|
40
|
-
if (response.status >= 300) {
|
|
41
|
-
const message = 'Error connecting to FlexPLM:status: ' + response.status;
|
|
42
|
-
console.error(message);
|
|
43
|
-
console.error(await response.text());
|
|
44
|
-
throw new Error(message);
|
|
45
|
-
}
|
|
46
|
-
try {
|
|
47
|
-
const body = await response.json();
|
|
48
|
-
const nonce_key = body.items[0].attributes.nonce_key;
|
|
49
|
-
const nonce = body.items[0].attributes.nonce;
|
|
50
|
-
console.info('nonce_key: ' + nonce_key);
|
|
51
|
-
console.info('nonce: ' + nonce);
|
|
52
|
-
return {
|
|
53
|
-
nonce_key,
|
|
54
|
-
nonce
|
|
55
|
-
};
|
|
56
|
-
}
|
|
57
|
-
catch (e) {
|
|
58
|
-
const message = 'Error connecting to FlexPLM: ' + e.message;
|
|
59
|
-
console.error(message);
|
|
60
|
-
console.error(await response.text());
|
|
61
|
-
throw new Error(message);
|
|
62
|
-
}
|
|
63
|
-
}
|
|
64
|
-
async sendRequest(csrf, payload) {
|
|
65
|
-
if (this.payloadSendAsArray && !Array.isArray(payload)) {
|
|
66
|
-
payload = [payload];
|
|
67
|
-
}
|
|
68
|
-
const xferOptions = this.getRequestOptions('POST');
|
|
69
|
-
xferOptions['body'] = JSON.stringify(payload);
|
|
70
|
-
xferOptions.headers[csrf.nonce_key] = csrf.nonce;
|
|
71
|
-
const urlContext = this.config.urlContext;
|
|
72
|
-
const vibeEventsURL = this.config.apiHost + urlContext + '/servlet/rest' + this.vibeEventEndpoint;
|
|
73
|
-
if (app_framework_1.Logger.isInfoOn()) {
|
|
74
|
-
console.info('Request:');
|
|
75
|
-
console.info('vibeEventsURL: ' + vibeEventsURL);
|
|
76
|
-
const logOptions = JSON.parse(JSON.stringify(xferOptions));
|
|
77
|
-
logOptions['headers']['Authorization'] = logOptions?.headers?.Authorization.substring(0, 9);
|
|
78
|
-
console.info('csrfOptions: ' + JSON.stringify(logOptions));
|
|
79
|
-
console.info('Making call to xfer data to FlexPLM');
|
|
80
|
-
}
|
|
81
|
-
const eventResponse = await fetch(vibeEventsURL, xferOptions);
|
|
82
|
-
return eventResponse;
|
|
83
|
-
}
|
|
84
|
-
async processRequest(payload) {
|
|
85
|
-
if (!payload) {
|
|
86
|
-
const message = 'No payload to send to FlexPLM';
|
|
87
|
-
console.error(message);
|
|
88
|
-
throw new Error(message);
|
|
89
|
-
}
|
|
90
|
-
if (app_framework_1.Logger.isInfoOn()) {
|
|
91
|
-
console.info('payload: ' + JSON.stringify(payload));
|
|
92
|
-
}
|
|
93
|
-
const csrf = await this.getCSRF();
|
|
94
|
-
if (!csrf) {
|
|
95
|
-
const message = 'Failed to get CSRF nonce';
|
|
96
|
-
console.error(message);
|
|
97
|
-
throw new Error(message);
|
|
98
|
-
}
|
|
99
|
-
const response = await this.sendRequest(csrf, payload);
|
|
100
|
-
const status = response.status;
|
|
101
|
-
if (status >= 300) {
|
|
102
|
-
const message = 'Error sending data to FlexPLM:status: ' + response.status;
|
|
103
|
-
console.error(message);
|
|
104
|
-
console.error(await response.text());
|
|
105
|
-
throw new Error(message);
|
|
106
|
-
}
|
|
107
|
-
try {
|
|
108
|
-
const data = await response.json();
|
|
109
|
-
const res = {
|
|
110
|
-
status,
|
|
111
|
-
data
|
|
112
|
-
};
|
|
113
|
-
console.log('eventResponse.status: ' + status);
|
|
114
|
-
return res;
|
|
115
|
-
}
|
|
116
|
-
catch (e) {
|
|
117
|
-
const message = 'Error getting json data from FlexPLM: ' + e.message;
|
|
118
|
-
console.error(message);
|
|
119
|
-
console.error(await response.text());
|
|
120
|
-
throw new Error(message);
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
async sendToFlexPLM(payload) {
|
|
124
|
-
return await this.processRequest(payload);
|
|
125
|
-
}
|
|
126
|
-
async sendMultipleToFlexPLM(payload) {
|
|
127
|
-
return await this.processRequest(payload);
|
|
128
|
-
}
|
|
129
|
-
}
|
|
130
|
-
exports.FlexPLMConnect = FlexPLMConnect;
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.FlexPLMConnect = void 0;
|
|
4
|
+
const app_framework_1 = require("@contrail/app-framework");
|
|
5
|
+
class FlexPLMConnect {
|
|
6
|
+
constructor(_config, endPoint = undefined, payloadAsArray = undefined) {
|
|
7
|
+
this.vibeEventEndpoint = '';
|
|
8
|
+
this.payloadSendAsArray = true;
|
|
9
|
+
this.config = _config;
|
|
10
|
+
this.vibeEventEndpoint = (endPoint)
|
|
11
|
+
? endPoint
|
|
12
|
+
: this.config.vibeEventEndpoint;
|
|
13
|
+
this.payloadSendAsArray = (payloadAsArray != undefined)
|
|
14
|
+
? payloadAsArray
|
|
15
|
+
: this.config['payloadDefaultAsArray'];
|
|
16
|
+
}
|
|
17
|
+
getRequestOptions(method) {
|
|
18
|
+
const csrfOptions = {
|
|
19
|
+
method,
|
|
20
|
+
headers: {
|
|
21
|
+
'Content-Type': 'application/json',
|
|
22
|
+
PLM_ENV: this.config.plmEnviornment,
|
|
23
|
+
Authorization: 'Basic ' + Buffer.from(`${this.config.userName()}:${this.config.password()}`, 'binary').toString('base64')
|
|
24
|
+
}
|
|
25
|
+
};
|
|
26
|
+
if (app_framework_1.Logger.isInfoOn()) {
|
|
27
|
+
const logOptions = JSON.parse(JSON.stringify(csrfOptions));
|
|
28
|
+
logOptions['headers']['Authorization'] = logOptions?.headers?.Authorization.substring(0, 9);
|
|
29
|
+
console.info('csrfOptions: ' + JSON.stringify(logOptions));
|
|
30
|
+
}
|
|
31
|
+
return csrfOptions;
|
|
32
|
+
}
|
|
33
|
+
async getCSRF() {
|
|
34
|
+
const urlContext = this.config.urlContext;
|
|
35
|
+
const csrfEndpoint = this.config.csrfEndpoint;
|
|
36
|
+
const csrfURL = this.config.apiHost + urlContext + csrfEndpoint;
|
|
37
|
+
console.info('csrfURL: ' + csrfURL);
|
|
38
|
+
const csrfOptions = this.getRequestOptions('GET');
|
|
39
|
+
const response = await fetch(csrfURL, csrfOptions);
|
|
40
|
+
if (response.status >= 300) {
|
|
41
|
+
const message = 'Error connecting to FlexPLM:status: ' + response.status;
|
|
42
|
+
console.error(message);
|
|
43
|
+
console.error(await response.text());
|
|
44
|
+
throw new Error(message);
|
|
45
|
+
}
|
|
46
|
+
try {
|
|
47
|
+
const body = await response.json();
|
|
48
|
+
const nonce_key = body.items[0].attributes.nonce_key;
|
|
49
|
+
const nonce = body.items[0].attributes.nonce;
|
|
50
|
+
console.info('nonce_key: ' + nonce_key);
|
|
51
|
+
console.info('nonce: ' + nonce);
|
|
52
|
+
return {
|
|
53
|
+
nonce_key,
|
|
54
|
+
nonce
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
catch (e) {
|
|
58
|
+
const message = 'Error connecting to FlexPLM: ' + e.message;
|
|
59
|
+
console.error(message);
|
|
60
|
+
console.error(await response.text());
|
|
61
|
+
throw new Error(message);
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
async sendRequest(csrf, payload) {
|
|
65
|
+
if (this.payloadSendAsArray && !Array.isArray(payload)) {
|
|
66
|
+
payload = [payload];
|
|
67
|
+
}
|
|
68
|
+
const xferOptions = this.getRequestOptions('POST');
|
|
69
|
+
xferOptions['body'] = JSON.stringify(payload);
|
|
70
|
+
xferOptions.headers[csrf.nonce_key] = csrf.nonce;
|
|
71
|
+
const urlContext = this.config.urlContext;
|
|
72
|
+
const vibeEventsURL = this.config.apiHost + urlContext + '/servlet/rest' + this.vibeEventEndpoint;
|
|
73
|
+
if (app_framework_1.Logger.isInfoOn()) {
|
|
74
|
+
console.info('Request:');
|
|
75
|
+
console.info('vibeEventsURL: ' + vibeEventsURL);
|
|
76
|
+
const logOptions = JSON.parse(JSON.stringify(xferOptions));
|
|
77
|
+
logOptions['headers']['Authorization'] = logOptions?.headers?.Authorization.substring(0, 9);
|
|
78
|
+
console.info('csrfOptions: ' + JSON.stringify(logOptions));
|
|
79
|
+
console.info('Making call to xfer data to FlexPLM');
|
|
80
|
+
}
|
|
81
|
+
const eventResponse = await fetch(vibeEventsURL, xferOptions);
|
|
82
|
+
return eventResponse;
|
|
83
|
+
}
|
|
84
|
+
async processRequest(payload) {
|
|
85
|
+
if (!payload) {
|
|
86
|
+
const message = 'No payload to send to FlexPLM';
|
|
87
|
+
console.error(message);
|
|
88
|
+
throw new Error(message);
|
|
89
|
+
}
|
|
90
|
+
if (app_framework_1.Logger.isInfoOn()) {
|
|
91
|
+
console.info('payload: ' + JSON.stringify(payload));
|
|
92
|
+
}
|
|
93
|
+
const csrf = await this.getCSRF();
|
|
94
|
+
if (!csrf) {
|
|
95
|
+
const message = 'Failed to get CSRF nonce';
|
|
96
|
+
console.error(message);
|
|
97
|
+
throw new Error(message);
|
|
98
|
+
}
|
|
99
|
+
const response = await this.sendRequest(csrf, payload);
|
|
100
|
+
const status = response.status;
|
|
101
|
+
if (status >= 300) {
|
|
102
|
+
const message = 'Error sending data to FlexPLM:status: ' + response.status;
|
|
103
|
+
console.error(message);
|
|
104
|
+
console.error(await response.text());
|
|
105
|
+
throw new Error(message);
|
|
106
|
+
}
|
|
107
|
+
try {
|
|
108
|
+
const data = await response.json();
|
|
109
|
+
const res = {
|
|
110
|
+
status,
|
|
111
|
+
data
|
|
112
|
+
};
|
|
113
|
+
console.log('eventResponse.status: ' + status);
|
|
114
|
+
return res;
|
|
115
|
+
}
|
|
116
|
+
catch (e) {
|
|
117
|
+
const message = 'Error getting json data from FlexPLM: ' + e.message;
|
|
118
|
+
console.error(message);
|
|
119
|
+
console.error(await response.text());
|
|
120
|
+
throw new Error(message);
|
|
121
|
+
}
|
|
122
|
+
}
|
|
123
|
+
async sendToFlexPLM(payload) {
|
|
124
|
+
return await this.processRequest(payload);
|
|
125
|
+
}
|
|
126
|
+
async sendMultipleToFlexPLM(payload) {
|
|
127
|
+
return await this.processRequest(payload);
|
|
128
|
+
}
|
|
129
|
+
}
|
|
130
|
+
exports.FlexPLMConnect = FlexPLMConnect;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function setLoggerConfig(appConfig: any): Promise<void>;
|
|
1
|
+
export declare function setLoggerConfig(appConfig: any): Promise<void>;
|