A user system leveraging rest-hapi to bootstrap your app.
appy-backend is the server portion of the appy project. It provides a boilerplate user system that leverages the powerful rest-hapi API generator. Inspired by the frame user system, the goal of appy-backend is to provide an easy to use user API that is also capable of supporting a wide range of applications. appy-backend is a great resource for starting almost any app. By leveraging rest-hapi, adding new endpoints is as simple as defining a new model, and model associations are a snap. Bootstrapping your app has never been easier!
appy-backend implements a hapi framework server. appy-backend's RESTful API endpoints are generated through rest-hapi, which means models are based off of mongoose and data is stored in MongoDB.
View the swagger docs for the live demo:
Just Docker
OR
You need Node.js installed (>=12.14.1) and you'll need MongoDB installed and running.
Download from GitHub:
$ git clone https://github.com/JKHeadley/appy-backend.git
$ cd appy-backend
None required.
$ npm install
appy configuration follows frame's configuration flow:
Simply edit
config/index.js
. The configuration uses confidence which makes it easy to manage configuration settings across environments. Don't store secrets in this file or commit them to your repository.Instead, access secrets via environment variables. We use dotenv to help make setting local environment variables easy (not to be used in production).
Simply copy .env-docker-sample to .env-docker and edit as needed. Don't commit .env-docker to your repository.
Simply copy .env-sample to .env and edit as needed. Don't commit .env to your repository.
WARNING: This will clear all data in the MongoDB database defined in restHapiConfig.mongo.URI
(default mongodb://localhost/appy
).
If you would like to seed your database with some data, run:
$ sh seed_data.sh
$ npm run seed
NOTE: The password for all seed users is root
.
To quickly run the app locally, simply run:
$ sh run_server.sh
$ npm start
Once the app is running point your browser to http://localhost:8080/ to view the Swagger docs.
For detailed explanations on many of the topics covered in this readme, including authentication, authorization, and logging in and testing endpoints, please refer to the wiki pages.
Swagger documentation is automatically generated for all endpoints and can be viewed by pointing a browser at the server URL. By default this will be http://localhost:8080/. The swagger docs provide quick access to testing your endpoints along with model schema descriptions and query options.
There are three optional authentication strategies in appy and each make use of javascript web tokens (JWT) and the hapi-auth-jwt2 scheme. The three strategies are:
The strategy used is determined by the restHapiConfig.authStrategy
config property.
For a more in-depth description of these strategies, please view the wiki.
Authorization in appy is enforced via the hapi scope
endpoint property. Endpoints generated through rest-hapi come prepopulated with scope values. See the rest-hapi docs for more info.
User scope values are populated based on appy's permission system. User's gain permissions based on three associations:
Users must belong to at least one role and can belong to multiple groups. Each permission association carries with it a state
property that can be set to Included
, Excluded
, or Forbidden
. This property allows permissions to override each other based on priority. User permissions have the highest priority, followed by Group permissions and lastly Role permissions:
User->Group->Role
This allows easy and specific configuration of user endpoint access. In general, a user will gain the majority of it's permissions through it's role. Those permissions will be further defined by any groups the user belongs to. Finally a user might have a few specific permissions assigned directly to them. A user's scope final scope is a combination of the user's role, groups, and effective permissions. See below for an example:
User: 'test@manager.com'
Role: 'Admin'
Role Permissions:
[
{ name:'readUser', state:'Included' },
{ name:'updateUser', state:'Included' },
{ name:'addUserPermissions', state:'Included' },
{ name:'removeUserPermissions', state:'Included' }
]
User's Groups: ['Managers']
Group Permissions:
[
{ name:'updateUser', state:'Excluded' },
]
User Permissions:
[
{ name:'removeUserPermissions', state:'Excluded' },
]
Final User Scope:
['Admin','Managers','readUser','addUserPermissions']
For a more in-depth description of authorization within appy, please view the wiki
MIT
If you have any questions/issues/feature requests, please feel free to open an issue. We'd love to hear from you!
Please reference the contributing doc: https://github.com/JKHeadley/appy-backend/blob/master/CONTRIBUTING.md
We hope you enjoy appy-backend!