|
|
|
@ -1,21 +1,61 @@ |
|
|
|
import fastify from 'fastify'; |
|
|
|
// see axios doc on how to use it
|
|
|
|
import axios from 'axios'; |
|
|
|
|
|
|
|
const app = fastify({ logger: true }); |
|
|
|
|
|
|
|
app.get('/', async (req, res) => { |
|
|
|
async function catApi() { |
|
|
|
try { |
|
|
|
const response = await axios({ |
|
|
|
url: 'https://cat-fact.herokuapp.com/facts/random?amount=3', |
|
|
|
method: 'GET', |
|
|
|
}); |
|
|
|
return response.data; |
|
|
|
} catch (err) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
async function holidayApi(countryCode) { |
|
|
|
try { |
|
|
|
const response = await axios({ |
|
|
|
url: `https://date.nager.at/api/v2/PublicHolidays/2021/${countryCode}`, |
|
|
|
method: 'GET', |
|
|
|
}); |
|
|
|
return response.data; |
|
|
|
} catch (err) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
async function foxApi() { |
|
|
|
try { |
|
|
|
const response = await axios({ |
|
|
|
url: 'https://randomfox.ca/floof/', |
|
|
|
method: 'GET', |
|
|
|
}); |
|
|
|
return response.data.image; |
|
|
|
} catch (err) { |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
app.post('/', async (req, res) => { |
|
|
|
const catsFact = await catApi(); |
|
|
|
const foxPicture = await foxApi(); |
|
|
|
const countryCode = req.body.countryCode; |
|
|
|
const holidays = await holidayApi(countryCode); |
|
|
|
|
|
|
|
return { |
|
|
|
message: `Welcome to Node Babel with ${ |
|
|
|
req.body?.testValue ?? 'no testValue' |
|
|
|
}`,
|
|
|
|
foxPicture: foxPicture, |
|
|
|
catFacts: catsFact.map((cat) => cat.text), |
|
|
|
holidays: holidays, |
|
|
|
}; |
|
|
|
}); |
|
|
|
|
|
|
|
// Run the server!
|
|
|
|
const start = async () => { |
|
|
|
try { |
|
|
|
await app.listen(5000); |
|
|
|
await app.listen(7800); |
|
|
|
} catch (err) { |
|
|
|
app.log.error(err); |
|
|
|
process.exit(1); |
|
|
|
|