/CodeChallenge8-repo2

SEISM Code Challenge private repository

Primary LanguageTypeScriptApache License 2.0Apache-2.0

CodeChallenge8-repo2

This is the SEISM Code Challenge private repository.

What you'll find here...

This repository contains the following documentation:

(Note that, when the API is running, its Swagger UI page is at http://localhost:3000/api/docs/.)

This repository contains the following software components:

  1. API code project - this is the API (back end server) component of the application
  2. UI code project - this is the UI (front end) component of the application
  3. Keycloak - Docker image to run Keycloak locally

How to install, build and run

This application can be run in multiple modes:

1. Keycloak environment

  1. Run MongoDB - see API documentation for details
  2. Run Keycloak - see Docker documentation for details
  3. Build and run the API component - see API documentation for details
  4. Build and run the UI component - see UI documentation for details

2. Dev environment (Keycloak disabled)

  1. Set a system environment variable KeycloakEnabled to false.
  2. Run MongoDB - see API documentation for details
  3. Build and run the API component - see API documentation for details
  4. Build and run the UI component - see UI documentation for details
    • Note: At step 5 of "Fork, build and run", instead of npm start use npm run start-noauth

3. Prod environment

This is for deployment to a cloud host and requires access to a Keycloak service (eg, provided by DevExchange group).

Architecture and design

This code challenge solution uses the MEAN software stack, namely:

  • MongoDB (database)
  • Express.js (to serve the API)
  • Angular (web application)
  • Node.js (to run the API)

In addition, Keycloak is used to provide straightforward OAuth functionality and role mapping. (It can also be configured to provide IDIR federated login.)

The architecture is based on the Angular tutorial, 'Tour of Heroes'.

The code is based on a previous, open-source government project, PRC (https://github.com/bcgov/nrts-prc-admin and https://github.com/bcgov/nrts-prc-api).

How everything fits together...

The typical user flow through the system is:

  1. user navigates to the app root URL
  2. app redirects user to Keycloak site
  3. user selects authentication using GitHub credentials (or user can enter a Keycloak username and password)
  4. if user has not previously registered, Keycloak adds a default user profile (with role=siesm_user)
  5. Keycloak redirects user to the app
  6. app front end (UI) displays species list page
    1. UI makes REST call to back end (API) to get data (note: bearer token is automatically added to request)
    2. API saves user profile to database
    3. API verifies bearer token (JWT)
    4. API retrieves species data from database
    5. API returns data to UI
    6. UI displays data
  7. UI makes additional REST calls to create/read/update/delete species data (if user has role=seism_admin)

See this page to configure admin role.