Product API

Purpose

The product API is the second component of the back-end service. It is responsible for all the business logic in the product.

Security Middleware

The product API is a stateless API. In essence this means that the API will not remember if a client is signed in or not. It will simply take in any API request handle it the same way based on the payload and return immediately. In order to tell the API that a client is authorized to do what its requesting there needs to be a layer of security. This is where the authorization token comes in. For this implementation JWTs are being made use of. The token is issued to users who are signed in by the authorization APi. A piece of middleware on the back-end will verify the token’s validity before processing the request at the proper endpoint.

Endpoints

/device/

Device endpoint is responsible for individual devices.

It has a single acceptable request type which is a GET request. This request takes in a unique device name and returns device information.

/owns/

Endpoint is responsible for returning ownership relations between users and their owned devices.

It has a single acceptable request type of GET. This request takes in the type of client which can be user or device. It returns a list of all the ownership relationships involving the requesting user or device.

/delivery/

Delivery is responsible for all of the delivery PIN operations.

It has three HTTP request types available for usage. GET, POST, and DELETE.

GET takes in a delivery ID and will return device name, and the delivery pin.

POST takes in a device ID and delivery PIN and creates a new delivery for that device with the new pin.

DELETE takes in a delivery ID and removes this from usage.

/verify/

Verify is the endpoint that is used exclusively by the device. It is of course acceptable to call from anything but is used for the device to react upon the response to open or not.

There is one acceptable call type which is a POST request. The caller sends a device name and the pin it’s trying to verify. It then returns to the caller if the pin requested is valid or not as well as what type of pin it is if it was valid. I.e. if it was a master pin or delivery pin. If the pin is valid it will send an email notification to the user’s email address. If the pin is a valid delivery pin it will automatically delete it from the database keeping the pin as a one time pin.

/user/

User is used to send and receive user information.

There are two acceptable request types: GET and POST.

Upon a GET request the client sends a user name and receives back the email address.

Upon a POST request the client sends a user name and email address to be registered. This is called upon sign up so that the product database has a copy of the user state.

/deliveries/

Deliveries is used to retrieve the relationship between a device and registered deliveries. Since this is a one to many relationship only the device name is needed to retrieve unique to it deliveries. There is only GET requests to this endpoint.

Client needs to send a device name and will receive a list of deliveries with their delivery IDs, and list of PINs. This will be used by the chrome extension to allow users to see all their PINs for a each of their devices.