@vertikalx/vtx-backend-client 1.0.0-dev-daniel.109 → 1.0.0-dev-daniel.111

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertikalx/vtx-backend-client",
3
- "version": "1.0.0-dev-daniel.109",
3
+ "version": "1.0.0-dev-daniel.111",
4
4
  "description": "GraphQL API generated client for VTX",
5
5
  "types": "src/index.d.ts",
6
6
  "main": "src/index.js",
@@ -1,4 +1,10 @@
1
+ export interface BackendError {
2
+ httpStatus: number;
3
+ code: number;
4
+ message: string;
5
+ }
1
6
  export interface ITypedBackendResponse<T> {
2
7
  data?: T;
3
- errors?: any[];
8
+ error?: BackendError;
9
+ rawErrors?: any[];
4
10
  }
@@ -2,6 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.buildResponse = buildResponse;
4
4
  exports.buildErrorResponse = buildErrorResponse;
5
+ const vtx_core_common_1 = require("@vertikalx/vtx-core-common");
5
6
  function buildResponse(response, rootProperty, checker) {
6
7
  const retValue = {};
7
8
  console.log("=========== BEGIN buildResponse =============");
@@ -14,25 +15,35 @@ function buildResponse(response, rootProperty, checker) {
14
15
  }
15
16
  catch (casterr) {
16
17
  console.log('Error trying to cast to return type');
17
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
18
+ retValue.error = {
19
+ httpStatus: 500,
20
+ code: vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.code,
21
+ message: "Error: Obtained incorrect data from Backend"
22
+ };
23
+ retValue.rawErrors = [
24
+ {
25
+ data: response,
26
+ error: casterr
27
+ }
28
+ ];
18
29
  }
19
30
  }
20
31
  else if (response?.errors) {
21
32
  console.log('checker 2');
22
33
  if (Array.isArray(response.errors)) {
23
- retValue.errors = response.errors;
34
+ retValue.rawErrors = response.errors;
24
35
  }
25
36
  else {
26
- retValue.errors = [response.errors];
37
+ retValue.rawErrors = [response.errors];
27
38
  }
28
39
  }
29
40
  else if (response?.error) {
30
41
  console.log('checker 3');
31
42
  if (Array.isArray(response.error)) {
32
- retValue.errors = response.error;
43
+ retValue.rawErrors = response.error;
33
44
  }
34
45
  else {
35
- retValue.errors = [response.error];
46
+ retValue.rawErrors = [response.error];
36
47
  }
37
48
  }
38
49
  else if (checker(response?.data)) {
@@ -42,12 +53,27 @@ function buildResponse(response, rootProperty, checker) {
42
53
  }
43
54
  catch (casterr) {
44
55
  console.log('Error trying to cast to return type');
45
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
56
+ retValue.error = {
57
+ httpStatus: 500,
58
+ code: vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.code,
59
+ message: "Error: Obtained incorrect data from Backend"
60
+ };
61
+ retValue.rawErrors = [
62
+ {
63
+ data: response.data,
64
+ error: casterr
65
+ }
66
+ ];
46
67
  }
47
68
  }
48
69
  else {
49
70
  console.log('checker 5');
50
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
71
+ retValue.error = {
72
+ httpStatus: 500,
73
+ code: vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.code,
74
+ message: "Error: Obtained incorrect data from Backend"
75
+ };
76
+ retValue.rawErrors = ['Error: Obtained incorrect data from Backend'];
51
77
  }
52
78
  console.log('buildResponse retValue:');
53
79
  console.log(JSON.stringify(retValue, null, 2));
@@ -60,23 +86,48 @@ function buildErrorResponse(error) {
60
86
  const retValue = {};
61
87
  if (error.errors) {
62
88
  if (Array.isArray(error.errors)) {
63
- retValue.errors = error.errors;
89
+ retValue.rawErrors = error.errors;
64
90
  }
65
91
  else {
66
- retValue.errors = [error.errors];
92
+ retValue.rawErrors = [error.errors];
67
93
  }
68
94
  }
69
95
  else {
70
96
  if (Array.isArray(error)) {
71
- retValue.errors = error;
97
+ retValue.rawErrors = error;
72
98
  }
73
99
  else {
74
- retValue.errors = [error];
100
+ retValue.rawErrors = [error];
75
101
  }
76
102
  }
103
+ retValue.error = extractError(retValue.rawErrors);
77
104
  console.log("=========== BEGIN buildErrorResponse returned =============");
78
105
  console.log(JSON.stringify(retValue, null, 2));
79
106
  console.log("=========== END buildErrorResponse returned =============");
80
107
  return retValue;
81
108
  }
109
+ function extractError(rawErrors) {
110
+ let retValue = {
111
+ httpStatus: 500,
112
+ code: vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.code,
113
+ message: vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.description
114
+ };
115
+ if (!rawErrors || rawErrors.length <= 0) {
116
+ return retValue;
117
+ }
118
+ let theError = rawErrors.find(e => {
119
+ if (e.extensions && e.extensions.type === "VtxError") {
120
+ return true;
121
+ }
122
+ return false;
123
+ });
124
+ if (theError) {
125
+ retValue = {
126
+ httpStatus: theError?.extensions?.httpStatus ?? 500,
127
+ code: theError?.extensions?.vtxError?.code ?? vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.code,
128
+ message: theError?.extensions?.vtxError?.description ?? vtx_core_common_1.VTX_ERRORS.VTX_SERVER_ERROR.description
129
+ };
130
+ }
131
+ return retValue;
132
+ }
82
133
  //# sourceMappingURL=response-builder.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"response-builder.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/api/response-builder.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"response-builder.js","sourceRoot":"","sources":["../../../../../libs/vtx-backend-client/src/api/response-builder.ts"],"names":[],"mappings":"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"}
@@ -6,6 +6,7 @@ const client_1 = require("../client");
6
6
  const api_call_headers_1 = require("./api-call-headers");
7
7
  const response_builder_1 = require("./response-builder");
8
8
  const domains_1 = require("./domains");
9
+ const vtx_core_common_1 = require("@vertikalx/vtx-core-common");
9
10
  class VTXBaseAPI {
10
11
  constructor(headers, backendUrl) {
11
12
  this.headers = headers ?? api_call_headers_1.DEFAULT_HEADERS;
@@ -74,48 +75,17 @@ class VTXBaseAPI {
74
75
  }
75
76
  },
76
77
  });
78
+ console.log('findUserByEmail Response:');
77
79
  console.log(JSON.stringify(response, null, 2));
78
- if (response?.findUserByEmail?._id) {
79
- try {
80
- retValue.data = response.findUserByEmail;
81
- }
82
- catch (casterr) {
83
- console.log('Error trying to cast to User');
84
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
85
- }
86
- }
87
- else if (response?.errors) {
88
- if (Array.isArray(response.errors)) {
89
- retValue.errors = response.errors;
90
- }
91
- else {
92
- retValue.errors = [response.errors];
93
- }
94
- }
95
- else if (response?.error) {
96
- if (Array.isArray(response.error)) {
97
- retValue.errors = response.error;
98
- }
99
- else {
100
- retValue.errors = [response.error];
101
- }
102
- }
103
- else {
104
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
105
- }
80
+ retValue = (0, response_builder_1.buildResponse)(response, 'findUserByEmail', (r) => {
81
+ const isResponseOk = true && response?.findUserByEmail?._id;
82
+ return isResponseOk;
83
+ });
106
84
  }
107
85
  catch (err1) {
108
- try {
109
- console.log('ERROR trying to call server');
110
- console.log(JSON.stringify(err1, null, 2));
111
- }
112
- catch (ex) { }
113
- if (Array.isArray(err1)) {
114
- retValue.errors = err1;
115
- }
116
- else {
117
- retValue.errors = [err1];
118
- }
86
+ console.log('findUserByEmail err1:');
87
+ console.log(err1);
88
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
119
89
  }
120
90
  return retValue;
121
91
  }
@@ -136,45 +106,17 @@ class VTXBaseAPI {
136
106
  refreshToken: true,
137
107
  },
138
108
  });
109
+ console.log('loginUserFromEmail Response:');
139
110
  console.log(JSON.stringify(response, null, 2));
140
- if (response?.loginUserFromEmail?.actualToken) {
141
- try {
142
- retValue.data =
143
- response.loginUserFromEmail;
144
- }
145
- catch (casterr) {
146
- console.log('Error trying to cast to UserToken:');
147
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
148
- }
149
- }
150
- else if (response?.errors) {
151
- if (Array.isArray(response.errors)) {
152
- retValue.errors = response.errors;
153
- }
154
- else {
155
- retValue.errors = [response.errors];
156
- }
157
- }
158
- else if (response?.error) {
159
- if (Array.isArray(response.error)) {
160
- retValue.errors = response.error;
161
- }
162
- else {
163
- retValue.errors = [response.error];
164
- }
165
- }
166
- else {
167
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
168
- }
111
+ retValue = (0, response_builder_1.buildResponse)(response, 'loginUserFromEmail', (r) => {
112
+ const isResponseOk = true && response?.loginUserFromEmail?.actualToken;
113
+ return isResponseOk;
114
+ });
169
115
  }
170
116
  catch (err1) {
171
- console.log(JSON.stringify(err1, null, 2));
172
- if (Array.isArray(err1)) {
173
- retValue.errors = err1;
174
- }
175
- else {
176
- retValue.errors = [err1];
177
- }
117
+ console.log('loginUserFromEmail err1:');
118
+ console.log(err1);
119
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
178
120
  }
179
121
  return retValue;
180
122
  }
@@ -203,53 +145,17 @@ class VTXBaseAPI {
203
145
  }
204
146
  }
205
147
  });
148
+ console.log('createUserAndLogin Response:');
206
149
  console.log(JSON.stringify(response, null, 2));
207
- if (response?.createUserAndLogin?._id) {
208
- try {
209
- retValue.data = response.createUserAndLogin;
210
- }
211
- catch (casterr) {
212
- console.log('Error trying to cast to UserToken:');
213
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
214
- }
215
- }
216
- else if (response?.errors) {
217
- if (Array.isArray(response.errors)) {
218
- retValue.errors = response.errors;
219
- }
220
- else {
221
- retValue.errors = [response.errors];
222
- }
223
- }
224
- else if (response?.error) {
225
- if (Array.isArray(response.error)) {
226
- retValue.errors = response.error;
227
- }
228
- else {
229
- retValue.errors = [response.error];
230
- }
231
- }
232
- else if (response?.data?._id) {
233
- try {
234
- retValue.data = response?.data;
235
- }
236
- catch (casterr) {
237
- console.log('Error trying to cast to UserWithToken:');
238
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
239
- }
240
- }
241
- else {
242
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
243
- }
150
+ retValue = (0, response_builder_1.buildResponse)(response, 'createUserAndLogin', (r) => {
151
+ const isResponseOk = true && response?.createUserAndLogin?._id;
152
+ return isResponseOk;
153
+ });
244
154
  }
245
155
  catch (err1) {
246
- console.log(JSON.stringify(err1, null, 2));
247
- if (Array.isArray(err1)) {
248
- retValue.errors = err1;
249
- }
250
- else {
251
- retValue.errors = [err1];
252
- }
156
+ console.log('createUserAndLogin err1:');
157
+ console.log(err1);
158
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
253
159
  }
254
160
  return retValue;
255
161
  }
@@ -273,53 +179,17 @@ class VTXBaseAPI {
273
179
  countryName: true
274
180
  }
275
181
  });
182
+ console.log('registerAthlete Response:');
276
183
  console.log(JSON.stringify(response, null, 2));
277
- if (response?.registerAthlete?._id) {
278
- try {
279
- retValue.data = response?.registerAthlete;
280
- }
281
- catch (casterr) {
282
- console.log('Error trying to cast to Athlete:');
283
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
284
- }
285
- }
286
- else if (response?.errors) {
287
- if (Array.isArray(response.errors)) {
288
- retValue.errors = response.errors;
289
- }
290
- else {
291
- retValue.errors = [response.errors];
292
- }
293
- }
294
- else if (response?.error) {
295
- if (Array.isArray(response.error)) {
296
- retValue.errors = response.error;
297
- }
298
- else {
299
- retValue.errors = [response.error];
300
- }
301
- }
302
- else if (response?.data?._id) {
303
- try {
304
- retValue.data = response?.data;
305
- }
306
- catch (casterr) {
307
- console.log('Error trying to cast to Athlete:');
308
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
309
- }
310
- }
311
- else {
312
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
313
- }
184
+ retValue = (0, response_builder_1.buildResponse)(response, 'registerAthlete', (r) => {
185
+ const isResponseOk = true && response?.registerAthlete?._id;
186
+ return isResponseOk;
187
+ });
314
188
  }
315
189
  catch (err1) {
316
- console.log(JSON.stringify(err1, null, 2));
317
- if (Array.isArray(err1)) {
318
- retValue.errors = err1;
319
- }
320
- else {
321
- retValue.errors = [err1];
322
- }
190
+ console.log('registerAthlete err1:');
191
+ console.log(err1);
192
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
323
193
  }
324
194
  return retValue;
325
195
  }
@@ -399,49 +269,17 @@ class VTXBaseAPI {
399
269
  }
400
270
  });
401
271
  }
402
- if (response?.getBrandByName?._id) {
403
- try {
404
- retValue.data = response?.getBrandByName;
405
- }
406
- catch (casterr) {
407
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
408
- }
409
- }
410
- else if (response?.errors) {
411
- if (Array.isArray(response.errors)) {
412
- retValue.errors = response.errors;
413
- }
414
- else {
415
- retValue.errors = [response.errors];
416
- }
417
- }
418
- else if (response?.error) {
419
- if (Array.isArray(response.error)) {
420
- retValue.errors = response.error;
421
- }
422
- else {
423
- retValue.errors = [response.error];
424
- }
425
- }
426
- else if (response?.data?._id) {
427
- try {
428
- retValue.data = response?.data;
429
- }
430
- catch (casterr) {
431
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
432
- }
433
- }
434
- else {
435
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
436
- }
272
+ console.log('getBrandByName Response:');
273
+ console.log(JSON.stringify(response, null, 2));
274
+ retValue = (0, response_builder_1.buildResponse)(response, 'getBrandByName', (r) => {
275
+ const isResponseOk = true && response?.getBrandByName?._id;
276
+ return isResponseOk;
277
+ });
437
278
  }
438
279
  catch (err1) {
439
- if (Array.isArray(err1)) {
440
- retValue.errors = err1;
441
- }
442
- else {
443
- retValue.errors = [err1];
444
- }
280
+ console.log('getBrandByName err1:');
281
+ console.log(err1);
282
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
445
283
  }
446
284
  return retValue;
447
285
  }
@@ -461,54 +299,17 @@ class VTXBaseAPI {
461
299
  ...fields
462
300
  }
463
301
  });
464
- console.log('Create Brand Response:');
302
+ console.log('createBrand Response:');
465
303
  console.log(JSON.stringify(response, null, 2));
466
- if (response?.createBrand?._id) {
467
- try {
468
- retValue.data = response?.createBrand;
469
- }
470
- catch (casterr) {
471
- console.log('Error trying to cast to Brand:');
472
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
473
- }
474
- }
475
- else if (response?.errors) {
476
- if (Array.isArray(response.errors)) {
477
- retValue.errors = response.errors;
478
- }
479
- else {
480
- retValue.errors = [response.errors];
481
- }
482
- }
483
- else if (response?.error) {
484
- if (Array.isArray(response.error)) {
485
- retValue.errors = response.error;
486
- }
487
- else {
488
- retValue.errors = [response.error];
489
- }
490
- }
491
- else if (response?.data?._id) {
492
- try {
493
- retValue.data = response?.data;
494
- }
495
- catch (casterr) {
496
- console.log('Error trying to cast to Brand:');
497
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
498
- }
499
- }
500
- else {
501
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
502
- }
304
+ retValue = (0, response_builder_1.buildResponse)(response, 'createBrand', (r) => {
305
+ const isResponseOk = true && response?.createBrand?._id;
306
+ return isResponseOk;
307
+ });
503
308
  }
504
309
  catch (err1) {
505
- console.log(JSON.stringify(err1, null, 2));
506
- if (Array.isArray(err1)) {
507
- retValue.errors = err1;
508
- }
509
- else {
510
- retValue.errors = [err1];
511
- }
310
+ console.log('createBrand err1:');
311
+ console.log(err1);
312
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
512
313
  }
513
314
  return retValue;
514
315
  }
@@ -528,54 +329,17 @@ class VTXBaseAPI {
528
329
  ...fields
529
330
  }
530
331
  });
531
- console.log('Create Sponsorship Response:');
332
+ console.log('createSponsorship Response:');
532
333
  console.log(JSON.stringify(response, null, 2));
533
- if (response?.createSponsorship?._id) {
534
- try {
535
- retValue.data = response?.createSponsorship;
536
- }
537
- catch (casterr) {
538
- console.log('Error trying to cast to Sponsorship:');
539
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
540
- }
541
- }
542
- else if (response?.errors) {
543
- if (Array.isArray(response.errors)) {
544
- retValue.errors = response.errors;
545
- }
546
- else {
547
- retValue.errors = [response.errors];
548
- }
549
- }
550
- else if (response?.error) {
551
- if (Array.isArray(response.error)) {
552
- retValue.errors = response.error;
553
- }
554
- else {
555
- retValue.errors = [response.error];
556
- }
557
- }
558
- else if (response?.data?._id) {
559
- try {
560
- retValue.data = response?.data;
561
- }
562
- catch (casterr) {
563
- console.log('Error trying to cast to Sponsorship:');
564
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
565
- }
566
- }
567
- else {
568
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
569
- }
334
+ retValue = (0, response_builder_1.buildResponse)(response, 'createSponsorship', (r) => {
335
+ const isResponseOk = true && response?.createSponsorship?._id;
336
+ return isResponseOk;
337
+ });
570
338
  }
571
339
  catch (err1) {
572
- console.log(JSON.stringify(err1, null, 2));
573
- if (Array.isArray(err1)) {
574
- retValue.errors = err1;
575
- }
576
- else {
577
- retValue.errors = [err1];
578
- }
340
+ console.log('createSponsorship err1:');
341
+ console.log(err1);
342
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
579
343
  }
580
344
  return retValue;
581
345
  }
@@ -606,27 +370,15 @@ class VTXBaseAPI {
606
370
  });
607
371
  console.log('getUploadUrl Response:');
608
372
  console.log(JSON.stringify(response, null, 2));
609
- if (response?.getUploadUrl?.key) {
610
- try {
611
- retValue.data = response?.getUploadUrl;
612
- }
613
- catch (casterr) {
614
- console.log('Error trying to cast to AWSS3UploadUrl:');
615
- retValue.errors = ['Error: Obtained incorrect data from Backend'];
616
- }
617
- }
618
- else {
619
- retValue.errors = ["Unable to generate correct upload URL"];
620
- }
373
+ retValue = (0, response_builder_1.buildResponse)(response, 'getUploadUrl', (r) => {
374
+ const isResponseOk = true && ((response?.getUploadUrl?.uploadUrl !== undefined) && (response?.getUploadUrl?.uploadUrl !== null));
375
+ return isResponseOk;
376
+ });
621
377
  }
622
378
  catch (err1) {
623
- console.log(JSON.stringify(err1, null, 2));
624
- if (Array.isArray(err1)) {
625
- retValue.errors = err1;
626
- }
627
- else {
628
- retValue.errors = [err1];
629
- }
379
+ console.log('createSponsorship err1:');
380
+ console.log(err1);
381
+ retValue = (0, response_builder_1.buildErrorResponse)(err1);
630
382
  }
631
383
  return retValue;
632
384
  }
@@ -877,7 +629,11 @@ class VTXBaseAPI {
877
629
  async getTenantSponsorshipsFromUri(tenantUri, token) {
878
630
  if ((!tenantUri) || (tenantUri.trim() === "")) {
879
631
  return {
880
- errors: ["INVALID Tenant URI: " + tenantUri]
632
+ error: {
633
+ httpStatus: 400,
634
+ code: vtx_core_common_1.VTX_ERRORS.INVALID_TENANT_URI.code,
635
+ message: vtx_core_common_1.VTX_ERRORS.INVALID_TENANT_URI.description
636
+ }
881
637
  };
882
638
  }
883
639
  const credential = token.domains.find(c => {
@@ -890,13 +646,21 @@ class VTXBaseAPI {
890
646
  });
891
647
  if (!credential) {
892
648
  return {
893
- errors: ["Tenant in domain SPONSOR not found in domains with URI " + tenantUri]
649
+ error: {
650
+ httpStatus: 400,
651
+ code: vtx_core_common_1.VTX_ERRORS.INVALID_TENANT_URI_FOR_SPONSOR.code,
652
+ message: "Tenant in domain SPONSOR not found in domains with URI " + tenantUri
653
+ }
894
654
  };
895
655
  }
896
656
  const tenantId = credential.tenant?._id ?? null;
897
657
  if ((!tenantId) || (tenantId == "ALL")) {
898
658
  return {
899
- errors: ["INVALID Tenant ID: " + tenantId]
659
+ error: {
660
+ httpStatus: 400,
661
+ code: vtx_core_common_1.VTX_ERRORS.INVALID_TENANT_ID.code,
662
+ message: vtx_core_common_1.VTX_ERRORS.INVALID_TENANT_ID.description
663
+ }
900
664
  };
901
665
  }
902
666
  return this.getTenantSponsorships(tenantId);