-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathserver.js
42 lines (35 loc) · 1.42 KB
/
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
const express = require('express');
const { scrapeFlights } = require('./scraping-final');
const app = express();
app.use(express.json());
// Endpoint para buscar passagens
app.post('/search-flights', async (req, res) => {
const { client, number, textMessage, origin, destination, departureDate } = req.body;
// Validação básica dos dados recebidos
if (!client || !number || !textMessage || !origin || !destination || !departureDate) {
return res.status(400).json({
error: 'Os campos client, number, textMessage, origin, destination e departureDate são obrigatórios.',
});
}
// Converter a data para o formato YYYY-MM-DD
const [day, month, year] = departureDate.split('/');
const formattedDate = `${year}-${month}-${day}`;
try {
const result = await scrapeFlights({ origin, destination, departureDate: formattedDate });
// Retornar o texto diretamente no campo "results"
return res.json({
client,
number,
textMessage,
results: result.result, // Acessa diretamente o texto do retorno
});
} catch (error) {
console.error('Erro durante a execução do endpoint:', error);
return res.status(500).json({ error: 'Erro durante o scraping. Tente novamente mais tarde.' });
}
});
// Iniciar o servidor
const PORT = process.env.PORT || 3000;
app.listen(PORT, () => {
console.log(`Servidor rodando na porta ${PORT}`);
});