mirror of
https://github.com/volatiletech/authboss.git
synced 2024-11-28 08:58:38 +02:00
30 lines
1.1 KiB
Go
30 lines
1.1 KiB
Go
// Package defaults houses default implementations for the very many
|
|
// interfaces that authboss has. It's a goal of the defaults package
|
|
// to provide the core where authboss implements the shell.
|
|
//
|
|
// It's simultaneously supposed to be possible to take as many or
|
|
// as few of these implementations as you desire, allowing you to
|
|
// reimplement where necessary, but reuse where possible.
|
|
package defaults
|
|
|
|
import (
|
|
"os"
|
|
|
|
"github.com/volatiletech/authboss"
|
|
)
|
|
|
|
// SetCore creates instances of all the default pieces
|
|
// with the exception of ViewRenderer which should be already set
|
|
// before calling this method.
|
|
func SetCore(config *authboss.Config, useUsername bool) {
|
|
logger := NewLogger(os.Stdout)
|
|
|
|
config.Core.Router = NewRouter()
|
|
config.Core.ErrorHandler = NewErrorHandler(logger)
|
|
config.Core.Responder = NewResponder(config.Core.ViewRenderer)
|
|
config.Core.Redirector = NewRedirector(config.Core.ViewRenderer, RedirectFormValueName)
|
|
config.Core.BodyReader = NewHTTPFormReader(useUsername)
|
|
config.Core.Mailer = NewLogMailer(os.Stdout)
|
|
config.Core.Logger = logger
|
|
}
|