1
0
mirror of https://github.com/volatiletech/authboss.git synced 2025-01-06 03:54:17 +02:00
The boss of http auth.
Go to file
Aaron 92b3172a3e Add a lot of module related stuff.
- Leave a failing test to make hate not love.
2015-01-05 00:18:41 -08:00
auth Added styles to modules. Stylized login module. Added tester 2015-01-04 20:41:20 -08:00
confirm Add module directories and readme. 2015-01-03 08:58:09 -08:00
expire Add module directories and readme. 2015-01-03 08:58:09 -08:00
lock Add module directories and readme. 2015-01-03 08:58:09 -08:00
recover Add module directories and readme. 2015-01-03 08:58:09 -08:00
register Add module directories and readme. 2015-01-03 08:58:09 -08:00
remember Add module directories and readme. 2015-01-03 08:58:09 -08:00
tester Added styles to modules. Stylized login module. Added tester 2015-01-04 20:41:20 -08:00
validate Add module directories and readme. 2015-01-03 08:58:09 -08:00
.gitignore started work on auth module. redefined how configuration is going to work and where core is going to reside 2015-01-04 10:33:53 -08:00
authboss_test.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
authboss.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
config.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
LICENSE Updated copyright information. 2015-01-03 08:59:12 -08:00
module_test.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
module.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
README.md Update README. 2015-01-03 08:54:48 -08:00
storer_test.go Add a lot of module related stuff. 2015-01-05 00:18:41 -08:00
storer.go Add some more infrastructure. 2015-01-03 12:03:57 -08:00

Authboss

Authboss is a modular authentication system for the web. It tries to remove as much boilerplate and "hard things" as possible so that each time you start a new web project in Go, you can plug it in, configure and be off to the races without having to think about the hard questions like how to store Remember Me tokens, or passwords.

Modules

Each module can be turned on simply by importing it and the side-effects take care of the rest. However each module has storage requirements and configuration that's required.

Name Import Path Description
Core gopkg.in/authboss.v0 The necessities for authentication, module system etc.
Register gopkg.in/authboss.v0/register Provides a registration section for users.
Confirm gopkg.in/authboss.v0/confirm Sends an e-mail verification before allowing users to log in.
Recover gopkg.in/authboss.v0/recover Allows for password resets via e-mail.
Remember gopkg.in/authboss.v0/remember Half-authed accounts using a generated token.
Lock gopkg.in/authboss.v0/lock Locks user accounts after N authentication failures in M time.
Expire gopkg.in/authboss.v0/expire Expires user sessions after a certain period of time.
Validate gopkg.in/authboss.v0/validate Username, Email and Password format validations.