Skip to content

zoe-1/usergt

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

usergt

API

User management logic: create, destroy, read, authenticate, brute force attack protection, lockout. Depends on: Rethinkdb, Penseur

Brute force protection:

  • bcrypt password hashing

    Introduces a work factor, which determines how expensive the hash function will be. Because of this, bcrypt can keep up with Moore’s law. As computers get faster you can increase the work factor and the hash will get slower. See: How to safely store a password for more about storing and authenticating passwords with bcrypt.

  • Account Locking
    After ten failed attempts on an existing account, lock the users account for 24 hours.

User record validation

Implements Joi to validate userRecords are valid structure (create, authenticate). authenticate filters out invalid username and passwords to avoid the database read.

Basic RBAC (Role Based Accessed Controls)

User objects have a scope key. The scope key is an array of labels. For example, ['admin', 'user']. hapijs style.

Style Guide

Follows hapijs coding conventions.

Error Handling

Uses boom to build and return error objects.

Tests

100% coverage using lab & code](https://github.com/hapijs/code)

License

BSD-3-Clause

test

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%