cristighr1995 / Holiholic

A trip planner and travel guide application which offers activity suggestions and personalized day plans based on user’s preferences and profile.
Apache License 2.0
2 stars 0 forks source link

[HH-11][PLANNER] Update planner database #11

Closed cristighr1995 closed 5 years ago

cristighr1995 commented 5 years ago

To keep the database of places, restaurants and distances up to date we need to download this information and store it in the system.

TODO

Update weather


We can do this with multiple HTTP POST requests at the link: http://localhost:8090/updatePlanner

Update restaurants

Request body example

{
    "city": "bucharest",
    "accessKey": "0cc175b9c0f1b6a831c399e269772661",
    "operation": "updateRestaurants"
}

Update distances

Request body example

{
    "city": "bucharest",
    "accessKey": "0cc175b9c0f1b6a831c399e269772661",
    "operation": "updateDistances",
    "modeOfTravel": "driving"
}