68 lines
1.3 KiB
Go
68 lines
1.3 KiB
Go
package auth
|
|
|
|
import (
|
|
"errors"
|
|
"net/http"
|
|
|
|
"dynatron.me/x/stillbox/pkg/config"
|
|
"github.com/go-chi/jwtauth/v5"
|
|
)
|
|
|
|
type UserID int
|
|
|
|
func (u *UserID) Int32Ptr() *int32 {
|
|
if u == nil {
|
|
return nil
|
|
}
|
|
|
|
i := int32(*u)
|
|
|
|
return &i
|
|
}
|
|
|
|
// Authenticator performs API key and user JWT authentication.
|
|
type Authenticator interface {
|
|
jwtAuth
|
|
apiKeyAuth
|
|
}
|
|
|
|
type Auth struct {
|
|
jwt *jwtauth.JWTAuth
|
|
cfg config.Auth
|
|
}
|
|
|
|
// NewAuthenticator creates a new Authenticator with the provided config.
|
|
func NewAuthenticator(cfg config.Auth) *Auth {
|
|
a := &Auth{
|
|
cfg: cfg,
|
|
}
|
|
a.initJWT()
|
|
|
|
return a
|
|
}
|
|
|
|
func (a *Auth) HUP(cfg *config.Config) {
|
|
a.cfg = cfg.Auth
|
|
a.initJWT()
|
|
}
|
|
|
|
var (
|
|
ErrLoginFailed = errors.New("Login failed")
|
|
ErrInternal = errors.New("Internal server error")
|
|
ErrUnauthorized = errors.New("Unauthorized")
|
|
ErrBadRequest = errors.New("Bad request")
|
|
)
|
|
|
|
// ErrorResponse writes the error and appropriate HTTP response code.
|
|
func ErrorResponse(w http.ResponseWriter, err error) {
|
|
switch err {
|
|
case ErrLoginFailed, ErrUnauthorized:
|
|
http.Error(w, err.Error(), http.StatusUnauthorized)
|
|
case ErrBadRequest:
|
|
http.Error(w, err.Error(), http.StatusBadRequest)
|
|
case ErrInternal:
|
|
fallthrough
|
|
default:
|
|
http.Error(w, err.Error(), http.StatusInternalServerError)
|
|
}
|
|
}
|