-
Notifications
You must be signed in to change notification settings - Fork 0
/
live-server.js
504 lines (408 loc) · 15.7 KB
/
live-server.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
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
const express = require('express');
const cors = require('cors');
const path = require('path');
require('dotenv').config();
const { Duffel } = require('@duffel/api');
const bodyParser = require('body-parser');
const app = express();
app.use(cors()); // Enable CORS for all routes
app.use(express.json());
app.use(bodyParser.json());
const PORT = process.env.PORT || 8080; // Define the port
app.listen(PORT, () => console.log(`Server running on port ${PORT}`));
const base_url = 'https://api.content.tripadvisor.com/api/v1';
const duffel = new Duffel({
token: process.env.DUFFEL_API_KEY_ENV || '',
debug: { verbose: true },
});
// Trip Advisor Endpoint to fetch places data with category parameter
app.get('/api/nearby/places', async (req, res) => {
const { lat, lng, category } = req.query;
try {
// Fetch hotels data from the TripAdvisor API with category parameter
const response = await fetch(`${base_url}/location/nearby_search?latLong=${lat},${lng}&category=${category}&language=en&key=${process.env.TRIPADVISOR_API_KEY_ENV}`);
const data = await response.json();
res.json(data); // Return the JSON data to the client
console.log('Nearby Trip Advisor data:',data);
} catch (error) {
console.error('Error fetching hotels:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
app.get('/api/location/details', async (req, res) => {
const { location_Id } = req.query;
try {
// Fetch details data from the specified endpoint
const response = await fetch(`${base_url}/location/${location_Id}/details?language=en&key=${process.env.TRIPADVISOR_API_KEY_ENV}`);
const data = await response.json();
res.json(data); // Return the JSON data to the client
console.log('Server Location Id Trip Advisor details:' + data);
} catch (error) {
console.error('Error fetching details:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
app.get('/api/location/details/ancestors', async (req, res) => {
const { location_Id } = req.query;
try {
// Fetch details data from the specified endpoint
const response = await fetch(`${base_url}/location/${location_Id}/details?language=en&key=${process.env.TRIPADVISOR_API_KEY_ENV}`);
const data = await response.json();
res.json(data); // Return the JSON data to the client
console.log('Server Location Id Trip Advisor details:' + data);
} catch (error) {
console.error('Error fetching details:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
app.get('/api/reviews', async (req, res) => {
const { location_Id } = req.query;
try {
// Fetch reviews data from the TripAdvisor API
const response = await fetch(`${base_url}/location/${location_Id}/reviews?language=en&key=${process.env.TRIPADVISOR_API_KEY_ENV}`);
const data = await response.json();
res.json(data); // Return the JSON data to the client
console.log('Server Reviews data', data);
} catch (error) {
console.error('Error fetching reviews:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
app.get('/api/photos', async (req, res) => {
const { location_Id} = req.query;
try {
// Fetch reviews data from the TripAdvisor API
const response = await fetch(`${base_url}/location/${location_Id}/photos?language=en&key=${process.env.TRIPADVISOR_API_KEY_ENV}`);
const data = await response.json();
console.log('Server Photos data: ' + data);
res.json(data); // Return the JSON data to the client
} catch (error) {
console.error('Error fetching reviews:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
//Payment Intent
app.post('/api/payment_intents', async (req, res) => {
try {
const postData = req.body; // Access the data sent from the client
// Check if postData is valid
if (!postData) {
throw new Error('Invalid POST data');
}
// Forward the POST request to the external API using fetch
const response = await fetch(`${process.env.DUFFEL_API_ENDPOINT}/payments/payment_intents`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1'
},
body: JSON.stringify(postData)
});
if (!response.ok) {
throw new Error('Error forwarding request');
}
const responseData = await response.json();
res.json(responseData);
} catch (error) {
console.error('Error forwarding request:', error.message);
let errorMessage = 'Error forwarding request';
let statusCode = 500;
if (error instanceof Error && error.name === 'AbortError') {
errorMessage = `Fetch error: ${error.message}`;
statusCode = 502; // Bad Gateway
}
res.status(statusCode).json({ error: errorMessage });
}
});
//Create
app.post('/api/create_order', async (req, res) => {
try {
const postData = req.body; // Access the data sent from the client
// Check if postData is valid
if (!postData) {
throw new Error('Invalid POST data');
}
console.log(`Server:${process.env.DUFFEL_API_ENDPOINT}`)
// Forward the POST request to the external API using fetch
const response = await fetch(`https://api.duffel.com/air/orders`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1'
},
body: JSON.stringify(postData)
});
if (!response.ok) {
throw new Error('Error forwarding request');
}
const responseData = await response.json();
res.json(responseData);
} catch (error) {
console.error('Error forwarding request:', error.message);
let errorMessage = 'Error forwarding request';
let statusCode = 500;
if (error instanceof Error && error.name === 'AbortError') {
errorMessage = `Fetch error: ${error.message}`;
statusCode = 502; // Bad Gateway
}
res.status(statusCode).json({ error: errorMessage });
}
});
//Use this if the Module fails This is the Manual way to the direct Endpoint using the default manual file
app.post('/api/offer_requests', async (req, res) => {
try {
const postData = req.body; // Access the data sent from the client
// Check if postData is valid
if (!postData) {
throw new Error('Invalid POST data');
}
console.log(`Server:${process.env.DUFFEL_API_ENDPOINT}`)
// Forward the POST request to the external API using fetch
const response = await fetch(`${process.env.DUFFEL_API_ENDPOINT}/air/offer_requests`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1'
},
body: JSON.stringify(postData)
});
if (!response.ok) {
throw new Error('Error forwarding request');
}
const responseData = await response.json();
res.json(responseData);
} catch (error) {
console.error('Error forwarding request:', error.message);
res.status(500).json({ error: 'Error forwarding request' });
}
});
//Duffel Update passenger
app.patch('/api/update/passenger', async (req, res) => {
try {
const { offerId, passengerId, newData } = req.body;
// Check if postData is valid
if (!offerId || !passengerId || !newData) {
throw new Error('Invalid PATCH data');
}
// Make the PATCH request to the Duffel API
const response = await fetch(`https://api.duffel.com/air/offers/${offerId}/passengers/${passengerId}`, {
method: 'PATCH',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1',
},
body: JSON.stringify(newData),
});
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const updatedPassenger = await response.json();
console.log('Updated Passenger:', updatedPassenger); // Log the updated passenger data
res.json(updatedPassenger);
} catch (error) {
console.error('Error updating passenger details:', error); // Log the error
res.status(500).json({ error: 'Error updating passenger details' });
}
});
app.get('/api/get_offer', async (req, res) => {
try {
const offerId = req.query.offerId; // Access the offerId from query parameters
// Check if offerId is valid
if (!offerId) {
throw new Error('Invalid offerId');
}
console.log(`Server: ${process.env.DUFFEL_API_ENDPOINT}`);
// Forward the GET request to the external API using fetch
const response = await fetch(`${process.env.DUFFEL_API_ENDPOINT}/air/offers/${offerId}`, {
method: 'GET',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1'
},
});
if (!response.ok) {
throw new Error('Error forwarding request');
}
const responseData = await response.json();
res.json(responseData);
} catch (error) {
console.error('Error forwarding request:', error.message);
res.status(500).json({ error: 'Error forwarding request' });
}
});
//Create Order
// Create Order
app.post('/api/create_order', async (req, res) => {
try {
const postData = req.body; // Access the data sent from the client
// Check if postData is valid
if (!postData) {
throw new Error('Invalid POST data');
}
console.log(`Server: ${process.env.DUFFEL_API_ENDPOINT}`);
// Forward the POST request to the external API using fetch
const response = await fetch(`https://api.duffel.com/air/orders`, {
method: 'POST',
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
'Authorization': `Bearer ${process.env.DUFFEL_API_KEY_ENV}`,
'Accept-Encoding': 'gzip',
'Duffel-Version': 'v1'
},
body: JSON.stringify(postData)
});
if (!response.ok) {
throw new Error('Error forwarding request');
}
const responseData = await response.json();
res.json(responseData);
console.log('Response server data: ', responseData)
} catch (error) {
console.error('Error forwarding request:', error.message, "Data failed:", responseData);
let errorMessage = 'Error forwarding request';
let statusCode = 500;
if (error instanceof FetchError) {
errorMessage = `Fetch error: ${error.message}`;
statusCode = 502; // Bad Gateway
}
res.status(statusCode).json({ error: errorMessage });
}
});
// Request to retrieve an offer ID using the native Duffel import
app.post('/api/duffel/offer_requests', async (req, res) => {
try {
const postData = req.body;
// Check if postData is valid
if (!postData) {
throw new Error('Invalid POST data');
}
// Forward the POST request to the Duffel API
const offerRequestResponse = await duffel.offerRequests.create(postData);
console.log('Server duffel response:', offerRequestResponse); // Log the Duffel API response
res.json(offerRequestResponse.data);
} catch (error) {
console.error('Error creating offer request:', error); // Log the error
res.status(500).json({ error: 'Error creating offer request' });
}
});
// Add the following import statement
const googleApiKey = process.env.REACT_APP_GOOGLE_MAPS_API_KEY;
// Inside your existing Express server setup...
app.get('/api/google/places', async (req, res) => {
const { input } = req.query;
https://maps.googleapis.com/maps/api/place/nearbysearch/json?key=AIzaSyBM4gd5q5nfHIXPEgq91qQg8nPuNFA5zMA&name=sequence
try {
const response = await fetch(`https://maps.googleapis.com/maps/api/place/findplacefromtext/json?input=${input}&inputtype=textquery&key=${googleApiKey}`);
if (!response.ok) {
throw new Error(`Failed to fetch places: ${response.statusText}`);
}
const data = await response.json();
res.json(data); // Return the JSON data to the client
} catch (error) {
console.error('Error fetching Google Places:', error);
res.status(500).json({ error: 'Internal server error' });
}
});
// Serve the React app from the build directory
app.use(express.static(path.join(__dirname, 'build')));
// All other requests will be served the React app
app.get('*', (req, res) => {
res.sendFile(path.join(__dirname, 'build', 'index.html'));
});
// Endpoint to handle RAPID API
// app.get('/api/flights', async (req, res) => {
// try {
// const {
// DepartureDateTime
// //ArrivalDateTime
// // DepartureAirport,
// // ArrivalAirport,
// // FlightType,.
// //FlightType,
// //Limit
// } = req.query;
// // Construct query parameters for the external API
// const queryParams = new URLSearchParams({
// DepartureDateTime
// //ArrivalDateTime
// // DepartureAirport,
// // ArrivalAirport,
// //FlightType,
// //Limit
// }).toString();
// // Forward the GET request to the external API using fetch
// const version = 'v2';
// const url = `https://flight-info-api.p.rapidapi.com/schedules?${queryParams}&version=${version}`;
// const response = await fetch(url, {
// headers: {
// 'X-RapidAPI-Key': process.env.RAPID_API_KEY_ENV, // Your RapidAPI key
// 'X-RapidAPI-Host': 'flight-info-api.p.rapidapi.com'
// }
// });
// if (!response.ok) {
// throw new Error('Error forwarding request');
// }
// const responseData = await response.json();
// res.json(responseData);
// } catch (error) {
// console.error('Error forwarding request:', error.message);
// res.status(500).json({ error: 'Error forwarding request' });
// }
// });
// app.get('/api/flights/oag', async (req, res) => {
// try {
// const {
// DepartureDateTime,
// ArrivalDateTime,
// DepartureAirport,
// ArrivalAirport,
// FlightType,
// Limit
// } = req.query;
// // Construct query parameters for the external API
// const queryParams = new URLSearchParams({
// DepartureDateTime,
// ArrivalDateTime,
// DepartureAirport,
// ArrivalAirport,
// FlightType,
// Limit
// }).toString();
// // Forward the GET request to the external API using fetch
// const version = 'v2';
// const url = `https://flight-info-api.p.rapidapi.com/schedules?${queryParams}&version=${version}`;
// const response = await fetch(url, {
// headers: {
// 'X-RapidAPI-Key': process.env.OAG_API_KEY_ENV, // Your RapidAPI key
// 'X-RapidAPI-Host': 'flight-info-api.p.rapidapi.com'
// }
// });
// if (!response.ok) {
// throw new Error('Error forwarding request');
// }
// const responseData = await response.json();
// res.json(responseData);
// } catch (error) {
// console.error('Error forwarding request:', error.message);
// res.status(500).json({ error: 'Error forwarding request' });
// }
// });
//Example calls
// http://localhost:5000/api/nearby/hotels?lat=37.7749&lng=-122.4194
// Raw https://api.content.tripadvisor.com/api/v1/location/nearby_search?latLong=40.75886291350166%2C-73.98120403289795&category=hotels&language=en&key=key