Skip to content

Latest commit

 

History

History
203 lines (154 loc) · 3.11 KB

README.md

File metadata and controls

203 lines (154 loc) · 3.11 KB

Assignment 2 for CMPE273 under Sithu Aung at SJSU Spring '17.

Abstract

You will be building a pizza ordering system using AWS Lambda for handling business logic, API Gateway for REST interface, and DynamoDB for data persistence.

Requirements

I. Pizza Menu CRUD APIs

You need to implement these REST endpoints to manage menu for any pizza store.

  1. POST /menu

Request

{
    "menu_id": "UUID-generated-by-client",
    "store_name": "Pizza Hut",
    "selection": [
        "Cheese",
        "Pepperoni"
    ],
    "size": [
        "Slide", "Small", "Medium", "Large", "X-Large"
    ],
    "price": [
        "3.50", "7.00", "10.00", "15.00", "20.00"
    ],
    "store_hours": {
        "Mon": "10am-10pm",
        "Tue": "10am-10pm",
        "Wed": "10am-10pm",
        "Thu": "10am-10pm",
        "Fri": "10am-10pm",
        "Sat": "11am-12pm",
        "Sun": "11am-12pm"
    }
}

Response

200 OK
  1. DELETE /menu/{menu-id}

Response

200 OK
  1. GET /menu/{menu-id}

Response

{
    "menu_id": "xxxxxxxxx",
    "store_name": "Pizza Hut",
    "selection": [ 
        "Cheese",
        "Pepperoni"
    ],
    "size": [
        "Slide", "Small", "Medium", "Large", "X-Large"
    ],
    "sequence": [
        "selection",
        "size"
    ],
    "price": [
        "3.50", "7.00", "10.00", "15.00", "20.00"
    ],
    "store_hours": {
        "Mon": "10am-10pm",
        "Tue": "10am-10pm",
        "Wed": "10am-10pm",
        "Thu": "10am-10pm",
        "Fri": "10am-10pm",
        "Sat": "11am-12pm",
        "Sun": "11am-12pm"
    }
}
  1. PUT /menu/{menu-id}

Update the existing menu to add the "Vegetable" option.

Response

{
    "menu_id": "xxxxxxxxx",
    "selection": { 
        "Cheese",
        "Pepperoni",
        "Vegetable"
    }   
}

Response

200 OK

II. Pizza Order Processing APIs

In this part II, you need to implement these REST endpoints to take orders from customers.

NOTE: customer management feature is not required.

  1. POST /order

Request

{   
    "menu_id": "xxxxxxxx",
    "order_id": "uuid_generated_by_client",
    "customer_name": "John Smith",
    "customer_email": "[email protected]"
}

Response

200 OK

{
    "Message": "Hi {customer_name}, please choose one of these selection:  1. Cheese, 2. Pepperoni, 3.Vegetable"
}
  1. PUT /order/{order_id}

Request

{   
    "input": "1"
}

Response

200 OK

{
    "Message": "Which size do you want? 1. Slide, 2. Small, 3. Medium, 4. Large, 5. X-Large"
}
  1. PUT /order/{order_id}

Request

{   
    "input": "4"
}

Response

200 OK

{
    "Message": "Your order costs $15.00. We will email you when the order is ready. Thank you!"
}

3. GET /order/{order-id}

_Request_

```sh
{   
    "menu_id": "xxxxxxxx",
    "order_id": "uuid_generated_by_client",
    "customer_name": "John Smith",
    "customer_email": "[email protected]"
    "order_status": "processing"
    "order": {
        "selection": "Cheese",
        "size": "Large",
        "costs": "15.00",
        "order_time": "mm-dd-yyyy@hh:mm:ss"
    }
}