mirror of
https://github.com/volatiletech/authboss.git
synced 2024-11-24 08:42:17 +02:00
63 lines
1.5 KiB
Go
63 lines
1.5 KiB
Go
package authboss
|
|
|
|
import "fmt"
|
|
|
|
// AttributeErr represents a failure to retrieve a critical
|
|
// piece of data from the storer.
|
|
type AttributeErr struct {
|
|
Name string
|
|
WantKind DataType
|
|
GotKind string
|
|
}
|
|
|
|
func MakeAttributeErr(name string, kind DataType, val interface{}) AttributeErr {
|
|
return AttributeErr{
|
|
Name: name,
|
|
WantKind: kind,
|
|
GotKind: fmt.Sprintf("%T", val),
|
|
}
|
|
}
|
|
|
|
func (a AttributeErr) Error() string {
|
|
if len(a.GotKind) == 0 {
|
|
return fmt.Sprintf("Failed to retrieve database attribute: %s", a.Name)
|
|
}
|
|
|
|
return fmt.Sprintf("Failed to retrieve database attribute, type was wrong: %s (want: %v, got: %s)", a.Name, a.WantKind, a.GotKind)
|
|
}
|
|
|
|
// ClientDataErr represents a failure to retrieve a critical
|
|
// piece of client information such as a cookie or session value.
|
|
type ClientDataErr struct {
|
|
Name string
|
|
}
|
|
|
|
func (c ClientDataErr) Error() string {
|
|
return fmt.Sprintf("Failed to retrieve client attribute: %s (%v)", c.Name)
|
|
}
|
|
|
|
// ErrAndRedirect represents a general error whose response should
|
|
// be to redirect.
|
|
type ErrAndRedirect struct {
|
|
Err error
|
|
Endpoint string
|
|
FlashSuccess string
|
|
FlashError string
|
|
}
|
|
|
|
func (e ErrAndRedirect) Error() string {
|
|
return fmt.Sprintf("Error: %v, Redirecting to: %s", e.Error, e.Endpoint)
|
|
}
|
|
|
|
// RenderErr represents an error that occured during rendering
|
|
// of a template.
|
|
type RenderErr struct {
|
|
TemplateName string
|
|
Data interface{}
|
|
Err error
|
|
}
|
|
|
|
func (r RenderErr) Error() string {
|
|
return fmt.Sprintf("Error rendering template %q (%#v): %v", r.TemplateName, r.Data, r.Err)
|
|
}
|