NOTE: This repo only contains the back-end of our project. The interface used can be found at Perfect-Personnel-Placement/frontend.
The Serverless Training planner is a serverless mobile app that Revature managers can use to look at important information regarding clientele demands and batch output for the company. This service visualizes all current batches planned along with any associated information. It also visualizes that batch output alongside the client demand for associates. Managers may input information for clients, their demands, and batches which consist of a curriculum composed of skills, the number of associates, a trainer, and the dates for the batch. This service helps ease the management of supply and demand for the company and is an organizational aid.
- AWS SAM
- AWS CloudFormation
- AWS Lambda
- AWS API Gateway
- AWS S3
- AWS CodePipeline
- AWS RDS
- PostgreSQL
- NodeJS
- Jest
See STARTUP.md (in the current folder) for instructions on how to get the application up and running. Once running, use according to the instructions below.
Potential improvements have been noted in IMPROVE.md (in the current folder).
The following API calls can be made. The list below applies to ALL endpoints:
- A
:
in front of a portion of the path means to replace that section with your desired value. - Unless otherwise indicated, no body should be included.
- All request/response bodies must be in JSON.
- Any dates must be sent as a string in
ISO 8601 format.
For example, Friday 6 August 2021 would be sent as
'2021-08-06'
.
Code | Meaning | Usage |
---|---|---|
200 | OK | Should be returned on everything but POST requests |
201 | Created | Should only be returned on POST requests) |
400 | Bad Request | Will be returned if there is an error with your syntax, an error in the types you used in the body of the message, or if you violated a database constraint (such as a foreign key relationship) |
500 | Internal Server Error | Will be returned if the database is unreachable |
Any code returned not in this list indicates that something has gone wrong.
GET
to/batch
will get all batchesPOST
to/batch
will create a new batch (will be unconfirmed); requires the following body:{ "batchSize": number, "curriculumId": number, "endDate": string, "startDate": string, "trainerId": number | null, "clientId": number | null }
PUT
to/batch
will update an existing batch; requires the following body:{ "batchSize": number, "batchId": number, "curriculumId": number, "endDate": string, "startDate": string, "trainerId": number | null, "clientId": number | null }
GET
to/batch/curriculum/:curriculumId
will get all batches with the specified curriculumGET
to/batch/id/:batchId
will get the batch with the specified IDPATCH
to/batch/id/:batchId
will confirm a batch. (Note: Make sure a trainer has been assigned to a batch first. ThePUT
to/batch
request can be used for this if necessary.)DELETE
to/batch/id/:batchId
will delete the specified batchGET
to/batch/trainer/:trainerId
will get all the batches assigned to a specified trainer
GET
to/client
will get all clientsPOST
to/client
will create a new client; requires the following body:{ "clientName": string }
GET
to/client/id/:clientId
will get a specific client by idGET
to/client/name/:clientName
will get a specific client by name
GET
to/curriculum
will get all curriculaPOST
to/curriculum
will create a new curriculum; requires the following body:{ "createdby": string, "createdon": string (in ISO 8601 format -- see above), "curriculumname": string, "skillIdArr": number[] }
GET
to/curriculum/id/:curriculumId
will get a specific curriculumDELETE
to/curriculum/id/:curriculumId
will delete a specific curriculum
GET
to/demand
will get all demandsPOST
to/demand
will create a new demand; requires the following body:{ "clientid": number, "curriculumid": number, "needby": string, "quantitydemanded": number }
GET
to/demand/client/:clientId
will get all demand from a specific clientGET
to/demand/curriculum/:curriculumId
will get all demand for a specific curriculumGET
to/demand/curriculum/:curriculumId/:startDate/:endDate
will get all demand for a specific curriculum within the specified date rangeGET
to/demand/date/:startDate/:endDate
will get all demand within the specified date rangeGET
to/demand/id/:demandId
will get a specific demand
GET
to/skill
will get all skillsPOST
to/skill
will create a new skill; requires the following body:{ "skillName": string }
GET
to/skill/id/:skillId
will get a specific skill by idDELETE
to/skill/id/:skillId
will delete a specific skillGET
to/skill/name/:skillName
will get a specific skill by name
GET
to/trainer
will get all trainersPOST
to/trainer
will create a new trainer; requires the following body:{ "email": string, "trainerfirst": string, "trainerlast": string }
PUT
to/trainer
will update a trainer's information; requires the following body:{ "trainerid": number, "email": string, "trainerfirst": string, "trainerlast": string, "curriculaIdArr": number[] }
GET
to/trainer/id/:trainerId
will get the information about a specific trainerDELETE
to/trainer/id/:trainerId
will delete a specific trainerGET
to/trainer/firstname/:trainerFirstName
will get all trainers with the requested first nameGET
to/trainer/lastname/:trainerLastName
will get all trainers with the requested last name