Simple RESTful API using HTTP/2 SPDY server for Node.JS with Clean Architecture design and implemented using Typescript language.
Teachers need a system where they can perform administrative functions for their students. Teachers and students are identified by their email addresses. Unit tests using mocha framework with chai assertion library. Test coverage report is generated with Istanbul library and SonarQube. Dependency check is done with OWASP dependency check CLI.
- Return text message from input prompt string by calling the API
- Return text message from input prompt string and an image file by calling the API
- Thanks to TypeORM, tables are automatically created when the application is run.
- Schema in
school.sql
- Obtain an API key from https://aistudio.google.com/apikey
- Add a
.env
file with the following content:
GEMINI_API_KEY=<api key>
npm install
- Generate self-signed cert for serving HTTP/2 over HTTPS.
- Edit
config/default.json
to configure the database connection parameters - To run in development mode with nodemon:
$ npm run dev
- To run in production mode:
$ npm start
- Default port number is
4433
using HTTPS scheme - To run the application listening on different port:
$ export PORT=4433 && npm start
GET https://localhost:4433/api/fibonacci?n=20
- Response:
{
"message":"Fibonacci(20): 6765"
}
GET https://localhost:4433/api/greetings
- Response:
{
"message": "Hello! It's 6/17/2020, 01:42:56 PM now."
}
GET https://localhost:4433/api/greetings?name=Mickey%20Mouse
- Response:
{
"message": "Hello Mickey Mouse! It's 6/17/2020, 01:43:30 PM now."
}
Head over to https://localhost:4433/gemini and enjoy!
{
"prompt": "Design a card game about dog breeds"
}
Prompt with an image: Use a POST request with form-data
which includes the following key-value pairs:
- Key:
image
File
, Value: Path of the image. - Key:
prompt
Text
, Value: The prompt string.
For example, I wanted to sell my Tango shoe and ask Gemini to generate a descript of the shoe for my to sell in the second-hand market. Image:
POST /api/register
{
"teachers": [
{
"email": "[email protected]",
"firstName": "One",
"lastName": "Teacher"
},
{
"email": "[email protected]",
"firstName": "Two",
"lastName": "Teacher"
}
],
"students": [
{
"email": "[email protected]",
"firstName": "One",
"lastName": "Student"
},
{
"email": "[email protected]",
"firstName": "Two",
"lastName": "Student"
}
]
}
POST /api/addstudents
{
"teacher": {
"email": "[email protected]"
},
"students":
[
"[email protected]",
"[email protected]"
]
}
POST /api/commonstudents
{
"teachers": [
"[email protected]",
"[email protected]"
]
}
GET /api/commonstudents?teacher=teacher1%40gmail.com&teacher=teacher2%40gmail.com
- Sample successful response:
{
"students" :
[
"[email protected]",
"[email protected]"
]
}
POST /api/suspend
{
"student" : "[email protected]"
}
POST /api/retrievefornotifications
- Sample request body (1):
{
"teacher": "[email protected]",
"notification": "Hello students! @[email protected] @[email protected]"
}
- Sample successful response to (1):
{
"recipients":
[
"[email protected]",
"[email protected]",
"[email protected]"
]
}
- Sample request body (2):
{
"teacher": "[email protected]",
"notification": "Hey everybody"
}
- Sample successful response to (2):
{
"recipients":
[
"[email protected]"
]
}
Logs available at /var/log/node.js/nodejsrestapi.log
- Edit
config/test.json
to configure the database connection parameters. - WARNING! All tables in the database configured for test will be emptied for testing purpose.
- Generates test_reports/mocha/test-results.xml
npm test
- Use Istanbul library with mocha to generate test coverage report.
- Generates text and html reports
npm run cover
- Sample output:
------------------------------|----------|----------|----------|----------|-------------------|
File | % Stmts | % Branch | % Funcs | % Lines | Uncovered Line #s |
------------------------------|----------|----------|----------|----------|-------------------|
All files | 87.38 | 63.32 | 97.52 | 87.06 | |
Node.JSRestAPI | 80 | 0 | 0 | 80 | |
app.js | 80 | 0 | 0 | 80 | 24,30,31,34,35 |
Node.JSRestAPI/BusinessLogic | 78.53 | 64.92 | 100 | 77.78 | |
commonstudents.js | 76.14 | 67.39 | 100 | 74.07 |... 07,108,109,110 |
greetings.js | 100 | 100 | 100 | 100 | |
notifications.js | 77.22 | 70.21 | 100 | 76.62 |... 93,94,96,97,98 |
registration.js | 81.25 | 63.64 | 100 | 80.8 |... 79,187,188,189 |
suspend.js | 69.05 | 50 | 100 | 69.05 |... 61,62,63,64,66 |
Node.JSRestAPI/lib | 78.57 | 50 | 100 | 78.57 | |
db.js | 78.57 | 50 | 100 | 78.57 | 17,18,23 |
Node.JSRestAPI/routes | 95.65 | 100 | 83.33 | 94.44 | |
api.js | 100 | 100 | 100 | 100 | |
index.js | 80 | 100 | 0 | 80 | 6 |
Node.JSRestAPI/tests | 98.62 | 100 | 98.9 | 98.62 | |
greetingsapi_tests.js | 90.91 | 100 | 87.5 | 90.91 | 15,16,17,18 |
teachersapi_tests.js | 100 | 100 | 100 | 100 | |
------------------------------|----------|----------|----------|----------|-------------------|
- Download OWASP dependency check CLI: https://jeremylong.github.io/DependencyCheck/dependency-check-cli/index.html
- Run the CLI:
dependency-check.bat --project "Node.JSRestAPI" -f XML -f HTML --scan .
- Install SonarQube according to https://docs.sonarqube.org/latest/setup/get-started-2-minutes/
- Start SonarQube server
- Create a new project from the dashboard localhost:9000
- Change the
serverUrl
andtoken
inanalyse.js
node analyse.js
- Go to the dashboard localhost:9000 to view the scan results.