Giter Site home page Giter Site logo

bisbis10's Introduction

Restaurant Management System

Overview

The bisbis10 restaurant management system is a backend service designed to handle various operations related to restaurants, their dishes, and ratings. The system aims to provide a comprehensive platform for managing restaurant data, including details about the restaurants, their cuisines, dishes, and customer ratings.

Functionality

The system provides the following APIs:

  • Restaurants API: Manages restaurant data.
  • Ratings API: Manages customer ratings for restaurants.
  • Dishes API: Manages the dishes offered by each restaurant.

Technical Aspects

The system is built using Java Spring Boot, leveraging its robust framework for creating RESTful APIs. Data persistence can be managed using an in-memory database like H2 for simplicity, or a more robust solution like PostgreSQL for production.

Homework Task

Candidates are expected to design and implement the above APIs, adhering to RESTful principles.

APIs

Restaurants APIs

API Description Endpoint Request Body Response Status Response Body
Get all restaurants GET /restaurants 200 OK [{"id": "1","name": "Taizu","averageRating" : 4.83,"isKosher" : false,"cuisines": ["Asian","Mexican","Indian"]}]
Get restaurants by cuisine GET /restaurants?cuisine={cuisine} 200 OK [{"id": "1","name": "Taizu","averageRating" : 4.83,"isKosher" : false,"cuisines": ["Asian","Mexican","Indian"]}]
Get restaurant GET /restaurants/{id} 200 OK {"id": "1","name": "Taizu","averageRating" : 4.83,"isKosher" : false,"cuisines": ["Asian","Mexican","Indian"],"dishes": [{"id": "1","name": "Noodles","description": "Amazing one","price": 59}]}
Add a restaurant POST /restaurants {"name": "Taizu","isKosher": false,"cuisines": ["Asian","Mexican","Indian"]} 201 CREATED
Update a restaurant PUT /restaurants/{id} {"cuisines": ["Asian"]} 200 OK
Delete a restaurant DELETE /restaurants/{id} 204 No Content

Ratings APIs

API Description Endpoint Request Body Response Status Response Body
Add a restaurant rating POST /ratings {"restaurantId": 2, "rating":3.3} 200 OK

Order APIs

API Description Endpoint Request Body Response Status Response Body
Order POST /order {"restaurantId": 2, "orderItems":[{"dishId":12,"amount":1},{"dishId":14,"amount":1} ]} ] 200 OK {orderId:"ef401fc8-d545-424b-928d-4789cd47bb6e"}

Dishes APIs

API Description Endpoint Request Body Response Status Response Body
Add a dish POST /restaurants/{id}/dishes {"name":"Shakshuka","description":"Great one","price": 34} 201 CREATED
Update a dish PUT /restaurants/{id}/dishes/{dishId} {"description":"Great one","price": 34} 200 OK
Delete a dish DELETE /restaurants/{id}/dishes/{dishId} 204 No Content
Get dishes by a restaurant GET /restaurants/{id}/dishes 200 OK [{"id":"1","name":"Humus","description":"Good one","price": 48}]

Jump Start

For your convenience, compose.yml includes Postgresql DB, the app is already pointing to this connection. In addition, you have the schema and data SQL files that can setup your DB schema and init data.

Prerequisite

  1. Java SDK - https://www.oracle.com/java/technologies/downloads/#java21
  2. Java IDE - https://www.jetbrains.com/idea/download or any other IDE
  3. Docker - https://www.docker.com/products/docker-desktop/

Instructions

  1. Fork this repo to your GitHub account.
  2. Clone it to your local machine.
  3. You may use the compose.yml file to spin up a local PostgreSQL Docker container
  4. Complete the task.
  5. On completion, send your repo link to the [email protected] email, (a snapshot will be taken from your repo once you submit the homework). please do not update your repo after you submit the homework.

bisbis10's People

Contributors

dvirshaty avatar tdp-israel avatar

Watchers

shira balali avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.