Files
ratrapage_T-WEB/Express/barAndCafe/src/openTripMaps.ts
Clement bab32023fb
Some checks failed
Build Docker Image Front / run (pull_request) Successful in 24s
Build Docker Image Back / run (pull_request) Successful in 1m3s
JsDocs / coverage (pull_request) Successful in 37s
Test and coverage / coverage (pull_request) Failing after 1m28s
implement city route for OTM
2024-05-13 23:13:12 +02:00

72 lines
1.7 KiB
TypeScript

import axios from 'axios';
import express from "express"
import * as dotenv from "dotenv";
dotenv.config({path: '../../.env'})
const key = process.env.OPEN_TRIP_MAPS_KEY
const optionsDrink = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/radius',
params: {
radius: '1000',
lon: '-1.43333',
lat: '46.66667',
apikey: key,
kinds: 'bars,cafes,pubs,biergartens'
},
headers: {'Content-Type': 'application/json'}
};
const optionsCity = {
method: 'GET',
url: 'https://api.opentripmap.com/0.1/en/places/geoname',
params: {
name: 'Paris',
apikey: key
},
headers: {'Content-Type': 'application/json'}
};
/**
* Handle GET request for city search route ('/otm/city').
* @param {express.Request} req - HTTP Request object.
* @param {express.Response} res - HTTP Response object.
*/
export async function getCity(req: express.Request, res: express.Response) {
const cityName = req.query["name"]
const radius = req.query["radius"]
if(!key){
res.status(401).send("Missing OTM key")
return
}
if(!cityName){
res.status(400).send("Missing Argument name")
return
}
if(radius){
optionsDrink.params.radius = radius as string
}
optionsCity.params.name = cityName as string
try {
const { data } = await axios.request(optionsCity);
optionsDrink.params.lat = data.lat
optionsDrink.params.lon = data.lon
} catch (error) {
console.error(error);
}
try {
const { data } = await axios.request(optionsDrink);
res.send(data);
} catch (error) {
console.error(error);
}
}