This is a backend api of a restaurant search and review app.
- Languages: JavaScript with Node and Express
- Database: PostgreSQL
- Clone the repository
- Set up a local postgreSQL database with the formats and fields as specified in postgreSQLData.md
- Navigate to src
- Run "npm install"
- Add your unique database url to the .env file.
- Run "npm start"
- Test with postman or open up http://localhost:5000/api/v1/restaurants to get started!
default - /api/v1/restaurants example urls are assuming a port of 5000
-
/
- type: GET
- this searches for restaurants based on filters:
- name: returns restaurants that contain name in the restaurant name
- zipcode
- cuisine
- page
- with no parameters, it returns a homepage of the first 20 restaurants in the mongoDB database
- with full parameters
- calls RestaurantCtrl.apiGetRestaurants
-
/id/:id
- type: GET
- gets the reviews of a restaurant
- calls RestaurantCtrl.apiGetRestaurantById
- example http://localhost:5000/api/v1/restaurants/id/5eb3d668b31de5d588f42a35
-
/cuisines
- type: GET
- this gets a list of the distinct cuisines available
- calls RestaurantCtrl.apiGetRestaurantCuisines
- example http://localhost:5000/api/v1/restaurants/cuisines
-
/review
- type: POST
- posts a review for a restaurant
- body takes an object with the fields as shown in the example below
-
{ "restaurant_id": "5eb3d668b31de5d588f4292a", "text": "Always love the food here", "user_id": "6969", "name": "Messi" }
- adds a document to the reviews collection (which it creates if it doesn't exist)
- url http://localhost:5000/api/v1/restaurants/review
- type: PUT
- edits a review for a restaurant
- body takes an object with the fields as shown in the example below
-
{ "review_id": "2345eb3d668b31de5d588f4292a", "text": "The worst food in the world", "user_id": "6969", "name": "Messi" }
- url http://localhost:5000/api/v1/restaurants/review
- type: DELETE
- deletes a review for a restaurant
- url request takes id query for review id
- body takes an object with the fields as shown in the example below
-
{ "user_id": "6969", "name": "Messi" (optional) }
- type: POST