Files
drive/apps/backend/internal/auth/middleware.go

202 lines
5.7 KiB
Go

package auth
import (
"errors"
"log/slog"
"strings"
"time"
"github.com/get-drexa/drexa/internal/httperr"
"github.com/get-drexa/drexa/internal/reqctx"
"github.com/get-drexa/drexa/internal/user"
"github.com/gofiber/fiber/v2"
"github.com/uptrace/bun"
)
var errUnauthorized = errors.New("unauthorized")
// authAttempt is the normalized result of parsing and (optionally) authenticating
// a request.
//
// It intentionally separates:
// - whether the request used cookie-based auth (SetCookies == true), which enables
// setting/refreshing HTTP-only cookies, from
// - what credentials were available (RefreshToken), and
// - the authenticated principal (AuthResult).
//
// This is shared by:
// - NewAuthMiddleware (strict): rejects unauthenticated requests with 401.
// - NewOptionalAuthMiddleware (best-effort): proceeds as anonymous on auth failure,
// and clears auth cookies when the failure came from cookies to avoid repeated
// failing auth attempts on public endpoints.
type authAttempt struct {
// AuthResult is populated when access token authentication succeeds.
AuthResult *AccessTokenAuthentication
// SetCookies is true when the request used cookie-based auth (no Authorization header).
// When true, the middleware may set/refresh cookies on successful auth or refresh flows.
SetCookies bool
// RefreshToken is the refresh token extracted from cookies when SetCookies is true.
// It is used for auto-refreshing near-expiry access tokens.
RefreshToken string
}
func authenticateRequest(c *fiber.Ctx, s *Service, db *bun.DB, cookieConfig CookieConfig) (*authAttempt, error) {
var at string
var rt string
var setCookies bool
authHeader := c.Get("Authorization")
if authHeader != "" {
parts := strings.Split(authHeader, " ")
if len(parts) != 2 || parts[0] != "Bearer" {
return nil, errUnauthorized
}
at = parts[1]
setCookies = false
} else {
cookies := authCookies(c)
at = cookies[cookieKeyAccessToken]
rt = cookies[cookieKeyRefreshToken]
setCookies = true
}
if at == "" && rt == "" {
return nil, errUnauthorized
}
if at == "" {
// if there is no access token, attempt to get new access token using the refresh token.
tx, err := db.BeginTx(c.Context(), nil)
if err != nil {
return nil, err
}
defer tx.Rollback()
newTokens, err := s.RefreshAccessToken(c.Context(), tx, rt)
if err != nil {
return nil, errUnauthorized
}
if err := tx.Commit(); err != nil {
return nil, err
}
SetAuthCookies(c, newTokens.AccessToken, newTokens.RefreshToken, cookieConfig)
at = newTokens.AccessToken
rt = newTokens.RefreshToken
}
authResult, err := s.AuthenticateWithAccessToken(c.Context(), db, at)
if err != nil {
var e *InvalidAccessTokenError
if errors.As(err, &e) {
return nil, errUnauthorized
}
var nf *user.NotFoundError
if errors.As(err, &nf) {
return nil, errUnauthorized
}
return nil, err
}
return &authAttempt{
AuthResult: authResult,
SetCookies: setCookies,
RefreshToken: rt,
}, nil
}
func maybeAutoRefresh(c *fiber.Ctx, s *Service, db *bun.DB, cookieConfig CookieConfig, attempt *authAttempt) {
if attempt == nil || attempt.AuthResult == nil {
return
}
if !attempt.SetCookies || attempt.RefreshToken == "" {
return
}
if time.Until(attempt.AuthResult.Claims.ExpiresAt.Time) >= 5*time.Minute {
return
}
tx, txErr := db.BeginTx(c.Context(), nil)
if txErr != nil {
return
}
defer tx.Rollback()
newTokens, err := s.RefreshAccessToken(c.Context(), tx, attempt.RefreshToken)
if err != nil {
slog.Debug("auto-refresh failed", "error", err)
return
}
if err := tx.Commit(); err != nil {
return
}
SetAuthCookies(c, newTokens.AccessToken, newTokens.RefreshToken, cookieConfig)
}
// NewAuthMiddleware creates a middleware that authenticates requests via Bearer token or cookies.
// To obtain the authenticated user in subsequent handlers, see reqctx.AuthenticatedUser.
func NewAuthMiddleware(s *Service, db *bun.DB, cookieConfig CookieConfig) fiber.Handler {
return func(c *fiber.Ctx) error {
attempt, err := authenticateRequest(c, s, db, cookieConfig)
if err != nil {
if errors.Is(err, errUnauthorized) {
return c.SendStatus(fiber.StatusUnauthorized)
}
return httperr.Internal(err)
}
reqctx.SetAuthenticatedUser(c, attempt.AuthResult.User)
maybeAutoRefresh(c, s, db, cookieConfig, attempt)
return c.Next()
}
}
// NewOptionalAuthMiddleware attempts to authenticate a request if it contains auth
// credentials (Authorization header or auth cookies).
//
// Unlike NewAuthMiddleware, this middleware never rejects the request with 401. If
// authentication fails, it proceeds as an anonymous request.
//
// This is useful for endpoints that are publicly accessible but can also behave
// differently for authenticated callers (e.g. share consumption routes that may
// resolve additional permissions for a specific account when credentials are
// present).
//
// Usage:
//
// router.Use(auth.NewOptionalAuthMiddleware(authService, db, cookieConfig))
func NewOptionalAuthMiddleware(s *Service, db *bun.DB, cookieConfig CookieConfig) fiber.Handler {
return func(c *fiber.Ctx) error {
authHeader := c.Get("Authorization")
hasAuthHeader := authHeader != ""
hasAuthCookies := c.Cookies(cookieKeyAccessToken) != "" || c.Cookies(cookieKeyRefreshToken) != ""
if !hasAuthHeader && !hasAuthCookies {
return c.Next()
}
attempt, err := authenticateRequest(c, s, db, cookieConfig)
if err != nil {
if errors.Is(err, errUnauthorized) {
if !hasAuthHeader && hasAuthCookies {
ClearAuthCookies(c, cookieConfig)
}
return c.Next()
}
return httperr.Internal(err)
}
reqctx.SetAuthenticatedUser(c, attempt.AuthResult.User)
maybeAutoRefresh(c, s, db, cookieConfig, attempt)
return c.Next()
}
}