-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
485 lines (471 loc) · 13.4 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
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
const R = require('ramda');
const Promise = require('bluebird');
const assert = require('assert');
const moment = require('moment');
const jwt = require('jsonwebtoken');
const wildcardMatch = require('./utils/wildcardMatch');
const { translateProduct } = require('./resolvers/product');
const { translateAvailability } = require('./resolvers/availability');
const { translateBooking } = require('./resolvers/booking');
const { translateRate } = require('./resolvers/rate');
const endpoint = null;
const CONCURRENCY = 3; // is this ok ?
const isNilOrEmpty = R.either(R.isNil, R.isEmpty);
const getHeaders = ({
apiKey,
resellerId,
}) => ({
Authorization: `Bearer ${apiKey}`,
'Content-Type': 'application/json',
'Octo-Capabilities': resellerId
? 'octo/pricing,octo/pickups,app/tourconnectai'
: 'octo/pricing,octo/pickups',
...resellerId ? { onBehalfOf_resellerId: resellerId } : {},
});
class Plugin {
constructor(params) { // we get the env variables from here
Object.entries(params).forEach(([attr, value]) => {
this[attr] = value;
});
this.tokenTemplate = () => ({
apiKey: {
type: 'text',
regExp: /^[0-9a-z]{64}$/,
description: 'the Api Key provided from Zaui, should be in uuid format',
},
resellerId: {
type: 'text',
regExp: /^\d+$/,
description: 'the Reseller Id provided from Zaui, should be in uuid format',
},
supplierShortName: {
type: 'text',
regExp: /^\w+$/,
description: 'company short name in Zaui',
},
supplierId: {
type: 'text',
regExp: /^\d+$/,
description: 'supplier Id in Zaui',
},
});
this.errorPathsAxiosErrors = () => ([ // axios triggered errors
['response', 'data', 'details'],
['response', 'data', 'errorMessage'],
]);
this.errorPathsAxiosAny = () => ([]); // 200's that should be errors
}
async validateToken({
axios,
token: {
apiKey,
supplierId,
},
}) {
const url = `${endpoint || this.endpoint}/suppliers/${supplierId}/products`;
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
try {
const products = R.path(['data'], await axios({
method: 'get',
url,
headers,
}));
return Array.isArray(products) && products.length > 0;
} catch (err) {
return false;
}
}
async searchProducts({
axios,
token: {
apiKey,
supplierId,
},
payload,
typeDefsAndQueries: {
productTypeDefs,
productQuery,
},
}) {
let url = `${endpoint || this.endpoint}/suppliers/${supplierId}/products`;
if (!isNilOrEmpty(payload)) {
if (payload.productId) {
url = `${url}/${payload.productId}`;
}
}
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
let results = R.pathOr([], ['data'], await axios({
method: 'get',
url,
headers,
}));
if (!Array.isArray(results)) results = [results];
let products = await Promise.map(results, async product => {
return translateProduct({
rootValue: product,
typeDefs: productTypeDefs,
query: productQuery,
});
});
// dynamic extra filtering
if (!isNilOrEmpty(payload)) {
const extraFilters = R.omit(['productId'], payload);
if (Object.keys(extraFilters).length > 0) {
products = products.filter(
product => Object.entries(extraFilters).every(
([key, value]) => {
if (typeof value === 'string') return wildcardMatch(value, product[key]);
return true;
},
),
);
}
}
return ({ products });
}
async searchQuote({
token: {
apiKey,
supplierId,
},
payload: {
productIds,
optionIds,
},
}) {
return { quote: [] };
}
async searchAvailability({
axios,
token: {
apiKey,
supplierId,
},
payload: {
productIds,
optionIds,
units,
startDate,
dateFormat,
currency,
},
typeDefsAndQueries: {
availTypeDefs,
availQuery,
},
}) {
assert(this.jwtKey, 'JWT secret should be set');
assert(
productIds.length === optionIds.length,
'mismatched productIds/options length',
);
assert(
optionIds.length === units.length,
'mismatched options/units length',
);
assert(productIds.every(Boolean), 'some invalid productId(s)');
assert(optionIds.every(Boolean), 'some invalid optionId(s)');
const localDateStart = moment(startDate, dateFormat).format('YYYY-MM-DD');
const localDateEnd = moment(startDate, dateFormat).format('YYYY-MM-DD');
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
const url = `${endpoint || this.endpoint}/suppliers/${supplierId}/availability`;
let availability = (
await Promise.map(productIds, async (productId, ix) => {
const data = {
productId,
optionId: optionIds[ix],
localDateStart,
localDateEnd,
units: units[ix].map(u => ({ id: u.unitId, quantity: u.quantity })),
};
if (currency) data.currency = currency;
// not sending units, zaui only returns pricing and capacity for the units requested
// we will do some match and filtering later
const availWithoutUnits = R.path(['data'], await axios({
method: 'post',
url,
data: R.omit(['units'], data),
headers,
})).filter(avail => avail.vacancies);
const availWithUnits = R.path(['data'], await axios({
method: 'post',
url,
data,
headers,
})).filter(avail => avail.vacancies);
return availWithUnits.map(avail => {
const foundMatch = availWithoutUnits.find(a => a.id === avail.id);
if (!foundMatch) return avail;
return {
...avail,
unitPricing: foundMatch.unitPricing,
}
});
}, { concurrency: CONCURRENCY })
);
availability = await Promise.map(availability,
(avails, ix) => {
return Promise.map(avails,
avail => translateAvailability({
typeDefs: availTypeDefs,
query: availQuery,
rootValue: avail,
variableValues: {
productId: productIds[ix],
optionId: optionIds[ix],
currency,
unitsWithQuantity: units[ix],
jwtKey: this.jwtKey,
},
}),
);
},
);
return { availability };
}
async availabilityCalendar({
axios,
token: {
apiKey,
supplierId,
},
payload: {
productIds,
optionIds,
units,
startDate,
endDate,
currency,
dateFormat,
},
typeDefsAndQueries: {
availTypeDefs,
availQuery,
},
}) {
assert(this.jwtKey, 'JWT secret should be set');
assert(
productIds.length === optionIds.length,
'mismatched productIds/options length',
);
assert(
optionIds.length === units.length,
'mismatched options/units length',
);
assert(productIds.every(Boolean), 'some invalid productId(s)');
assert(optionIds.every(Boolean), 'some invalid optionId(s)');
const localDateStart = moment(startDate, dateFormat).format('YYYY-MM-DD');
const localDateEnd = moment(endDate, dateFormat).format('YYYY-MM-DD');
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
const url = `${endpoint || this.endpoint}/suppliers/${supplierId}/availability`;
const availability = (
await Promise.map(productIds, async (productId, ix) => {
const data = {
productId,
optionId: optionIds[ix],
localDateStart,
localDateEnd,
// units is required here to get the total pricing for the calendar
units: units[ix].map(u => ({ id: u.unitId, quantity: u.quantity })),
};
if (currency) data.currency = currency;
const result = await axios({
method: 'post',
url,
data,
headers,
});
return Promise.map(result.data.filter(avail => avail.vacancies), avail => translateAvailability({
rootValue: avail,
typeDefs: availTypeDefs,
query: availQuery,
}))
}, { concurrency: CONCURRENCY })
);
return { availability };
}
async createBooking({
axios,
token: {
apiKey,
supplierId,
resellerId,
supplierShortName,
},
payload: {
availabilityKey,
holder,
notes,
reference,
settlementMethod,
rebookingId,
},
typeDefsAndQueries: {
bookingTypeDefs,
bookingQuery,
},
}) {
assert(availabilityKey, 'an availability code is required !');
assert(R.path(['name'], holder), 'a holder\' first name is required');
assert(R.path(['surname'], holder), 'a holder\' surname is required');
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
resellerId,
});
const urlForCreateBooking = `${endpoint || this.endpoint}/suppliers/${supplierId}/bookings${rebookingId ? `/${rebookingId}` : ''}`;
const dataFromAvailKey = await jwt.verify(availabilityKey, this.jwtKey);
const dataForConfirmBooking = {
contact: {
fullName: `${holder.name} ${holder.surname}`,
emailAddress: R.path(['emailAddress'], holder),
phoneNumber: R.pathOr('', ['phone'], holder),
locales: R.pathOr(null, ['locales'], holder),
country: R.pathOr('', ['country'], holder),
},
notes,
resellerReference: resellerId ? reference : 'PLACEHOLDER',
settlementMethod,
};
let booking = R.path(['data'], await axios({
method: rebookingId ? 'patch' : 'post',
url: urlForCreateBooking,
data: {
settlementMethod,
...dataFromAvailKey,
notes,
...(rebookingId ? dataForConfirmBooking : {})
},
headers,
}));
if (!rebookingId) {
booking = R.path(['data'], await axios({
method: 'post',
url: `${endpoint || this.endpoint}/suppliers/${supplierId}/bookings/${booking.uuid}/confirm`,
data: dataForConfirmBooking,
headers,
}));
}
return ({
booking: await translateBooking({
rootValue: { ...booking, supplierShortName },
typeDefs: bookingTypeDefs,
query: bookingQuery,
})
});
}
async cancelBooking({
axios,
token: {
apiKey,
supplierId,
supplierShortName,
},
payload: {
bookingId,
id,
reason,
},
typeDefsAndQueries: {
bookingTypeDefs,
bookingQuery,
},
}) {
assert(!isNilOrEmpty(bookingId) || !isNilOrEmpty(id), 'Invalid booking id');
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
const url = `${endpoint || this.endpoint}/suppliers/${supplierId}/bookings/${bookingId || id}/cancel`;
const booking = R.path(['data'], await axios({
method: 'delete',
url,
data: { reason },
headers,
}));
return ({
cancellation: await translateBooking({
rootValue: { ...booking, supplierShortName },
typeDefs: bookingTypeDefs,
query: bookingQuery,
})
});
}
async searchBooking({
axios,
token: {
apiKey,
supplierId,
supplierShortName,
},
payload: {
bookingId,
travelDateStart,
travelDateEnd,
dateFormat,
},
typeDefsAndQueries: {
bookingTypeDefs,
bookingQuery,
},
}) {
assert(
!isNilOrEmpty(bookingId)
|| !(
isNilOrEmpty(travelDateStart) && isNilOrEmpty(travelDateEnd) && isNilOrEmpty(dateFormat)
),
'at least one parameter is required',
);
const headers = getHeaders({
apiKey: apiKey || this.apiKey,
});
const searchByUrl = async url => {
try {
return R.path(['data'], await axios({
method: 'get',
url,
headers,
}));
} catch (err) {
return [];
}
};
const bookings = await (async () => {
let url;
if (!isNilOrEmpty(bookingId)) {
return Promise.all([
searchByUrl(`${endpoint || this.endpoint}/suppliers/${supplierId}/bookings/${bookingId}`),
searchByUrl(`${endpoint || this.endpoint}/suppliers/${supplierId}/bookings?resellerReference=${bookingId}`),
searchByUrl(`${endpoint || this.endpoint}/suppliers/${supplierId}/bookings?supplierReference=${bookingId}`),
]);
}
if (!isNilOrEmpty(travelDateStart)) {
const localDateStart = moment(travelDateStart, dateFormat).format('YYYY-MM-DD');
const localDateEnd = moment(travelDateEnd, dateFormat).format('YYYY-MM-DD');
url = `${endpoint || this.endpoint}/suppliers/${supplierId}/bookings?localDateStart=${encodeURIComponent(localDateStart)}&localDateEnd=${encodeURIComponent(localDateEnd)}`;
return R.path(['data'], await axios({
method: 'get',
url,
headers,
}));
}
return [];
})();
return ({
bookings: await Promise.map(R.unnest(bookings), async booking => {
return translateBooking({
rootValue: { ...booking, supplierShortName },
typeDefs: bookingTypeDefs,
query: bookingQuery,
});
})
});
}
}
module.exports = Plugin;