arviteri / Footing

A foundation for developing APIs with Node.js and Express.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

 

   

UPDATE: A version of Footing which is designed for storing application data using MongoDB has been created. It can be found in the feature/mongodb-app branch. The default version stores application data with MySQL. A command line interface to create Footing projects is currently in the works. It can be found on the cli branch.


Footing is a foundation for developing APIs with Node.js and Express. The project is designed in a way to make it easy for developers to build secure APIs with minimal setup. Footing provides the ability to define public or private routes with or without CSRF protection.

Routes that are predefined and come with Footing include ones that allow registering users, authenticating users, and deleting users. Routes for testing CSRF and authentication functionality are also included.

Footing's purpose is to enable developers to create APIs without needing to implement an authentication system.

Index

What's Included?

Footing includes...

  • Environment variables for easy setup (provided by npm package dotenv).
  • An authentication system.
  • CSRF protection (provided by npm package csurf).
  • SQL Injection protection (for predefined routes only).
  • Integration tests for predefined routes.

The Authentication System

Routes that are private will require a Bearer token in the authentication header of the request. Upon a successful login request, an authentication token will be stored as a cookie, and also returned in the form of a JSON response. The token is in the form of a JWT, and it's secret is a unique ID that is stored in the user's session. The authentication system protects routes by first verifying that the token in the authentication header matches that of the cookie. Secondly, the system verifies the token with the secret that is stored in the user's session.

It's important to note that upon a successful login request, the user's session is regenerated and a new CSRF token will be returned. The CSRF token used to make the login request will no longer be valid.

What's Not Included?

The following list serves to warn users of what is not included. It does not serve as a comprehensive list of what is not included with Footing.

Footing does not include...

  • Email verification for authentication system.
  • Password restrictions for authentication system.
  • XSS protection (data sanitization) for any input.
  • SQL Injection prevention for routes that are defined by the developer.
  • Anything else not listed.

Requirements

Requirements for developing REST APIs with Footing include...

  • MySQL database (used for application data).
  • MongoDB database (used for managing sessions).
  • Node.js ( >= v8.11.1, it's recommended to be used with v10.15.1)

Disclaimer: Integration tests have been tested for Node.js v10.15.3. The project was originally developed using Node.js v8.11.1; however, the integration tests will fail on v8.11.1 due to the version of npm package supertest that v8.11.1 uses. That specific version of supertest has an issue making requests and receiving responses that include more than one cookie.

Getting Set Up

  1. Clone the repository and cd into the root of the project directory.
  2. Run npm install to install the dependencies.
  3. Duplicate the .env.dist file and rename it to .env
  4. Open the .env file and set the values for the environment variables (suggested/default values are included).
  5. Make sure that MySQL and MongoDB servers are running.
  6. (Optional) Run npm test to make sure the project is working correctly.
  7. Run npm start to start the server.

Usage

Environment Variables

To configure environment variables, duplicate the .env.dist file and rename it to .env. Environment variables are predefined with default values. Change them as needed. The variables are used for...

  • Defining the port to serve the application on.
  • Setting up a connection to a MySQL database.
  • Setting up a connection to a MongoDB database.
  • Deciding on salt rounds for hashing passwords.
  • Deciding on a secret for session data.

Environment variables included are...

  • PORT - Port the application will be served on.
  • MySQL_HOST - Host for MySQL connection.
  • MySQL_PORT - Port for MySQL connection. The default is 3306.
  • MySQL_USER - User for MySQL connection.
  • MySQL_PWD - Password for MySQL connection.
  • MySQL_DB - Database name for MySQL database.
  • MySQL_USERS_TBL - The name of the table that stores user entities in the MySQL database.
  • MongoDB_URI - The URI of the MongoDB database used for sessions.
  • BCRYPT_SALT_ROUNDS - Salt rounds for Bcrypt to hash passwords.
  • SESSION_SECRET - Secret for Express sessions.

Changing Default Routes

The routes that have already been defined are for...

  • User signup - /signup.
  • User login - /login.
  • Delete user - /delete_account.
  • Obtain CSRF token - /c/tkn.
  • Status - /status.
  • Testing routes that include CSRF protection that don't require authentication - /test/csrf.
  • Testing routes that don't include CSRF protection that require authentication - /test/auth.
  • Testing routes that include CSRF protection and require authentication - /test/auth_csrf.

The routes above are defined in the src/config/routes.js file. They are implemented in the src/routes/api/identification.js file and the src/routes/api/health.js file.

To change the default route endpoints, it is recommended that they are changed in the src/config/routes.js file and not in the implementation file. This is recommended because the integration tests rely on the src/config/routes.js file to test the correct routes.

Changing the route endpoints in the src/config/routes.js file will ensure that the integration tests will still work correctly.


Defining New Routes

To define new routes, create a new routing file in the src/routes/api/ directory. Footing has been designed to automatically require all files in that directory. The file should be set up as so...

/**
 * Your routing file
 */

module.exports = function(app, config, routes) {
	// Define routes here.
}

Each routing file is automatically passed the app, config and routes variables. This way, all routing files can access any global application variables.


To require requests to be authenticated, the route receiving the request will need to use the RequestAuthenticator function found in src/routes/middleware/auth_middleware.js as middleware. This function requires an instance of the AuthHandler class found in the src/handlers/auth_handler.js to be passed to it. See the example below.


/**
 * Your routing file
 */

const AuthHandler = require('../../handlers/auth_handler.js');
const RequestAuthenticator = require('../middleware/auth_middleware.js');

module.exports = function(app, config, routes) {

	const requestAuthenticator = RequestAuthenticator(new AuthHandler(config));

	// Define routes here.
	routes.protected.post('/example', requestAuthenticator, function(res, req) {
		/* ... */
	});
}

Unprotected routes (routes that do not include CSRF protection) are used by the router variables routes.unprotected. Protected routes (routes that include CSRF protection) are used by the router variables routes.protected.


Example of defining a new PUBLIC route without CSRF protection.

routes.unprotected.post('/public_without_CSRF', function(res, req) {
    return res.status(200).json({"200":"Unathenticated"});
});

Example of defining a new PUBLIC route with CSRF protection

routes.protected.post('/public_with_CSRF', function(res, req) {
		return res.status(200).json({"200":"Unathenticated"});
});

Example of defining a new PRIVATE route without CSRF protection

routes.unprotected.post('/auth_without_CSRF', requestAuthethenticator, function(res, req) {
    return res.status(200).json({"200":"Authenticated"});
});

Example of defining a new PRIVATE route with CSRF protection

routes.protected.post('/auth_with_CSRF', requestAuthethenticator, function(res, req) {
    return res.status(200).json({"200":"Authenticated"});
});

Making Requests

Obtaining a CSRF token: GET: http://localhost:port/c/tkn

User Signup:

POST: http://localhost:port/signup
{
	"email": "test@example.com",
	"password": "password",
	"confirmPassword": "password",
	"_csrf": "N2MbkPwA-3cJSavajIlsW_61OPZ_5uoQr6QU"
}

User Login:

POST: http://localhost:port/login
{
	"email": "test@example.com",
	"password": "password",
	"_csrf": "N2MbkPwA-3cJSavajIlsW_61OPZ_5uoQr6QU"
}

Private Route without CSRF protection:

POST: http://localhost:port/test/auth
HEADER: Authorization - Bearer {jwtAuthTokenValueHere}

Private Route with CSRF protection:

POST: http://localhost:port/test/auth
HEADER: Authorization - Bearer {jwtAuthTokenValueHere}
{
	"_csrf": "N2MbkPwA-3cJSavajIlsW_61OPZ_5uoQr6QU"
}

Adding XSS Protection

Due to the amount of npm packages that offer data sanitization, and the lack of regulation/validity that is available for such packages, Footing does not offer XSS protection/data sanitization functions. However, comments are available in suggested locations for sanitizing input data. These comments are located in the src/controllers/user_controller.js file.

It is recommended to implement a middleware function that sanitizes all input data for all requests.

Developer

The developer doc can be found in /docs.

About

A foundation for developing APIs with Node.js and Express.

License:MIT License


Languages

Language:JavaScript 100.0%