mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
62 lines
1.6 KiB
Go
62 lines
1.6 KiB
Go
package auth
|
|
|
|
import (
|
|
"context"
|
|
"crypto/md5"
|
|
"encoding/hex"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"github.com/amir20/dozzle/internal/container"
|
|
"github.com/rs/zerolog/log"
|
|
)
|
|
|
|
type contextKey string
|
|
|
|
const remoteUser contextKey = "remoteUser"
|
|
|
|
type proxyAuthContext struct {
|
|
headerUser string
|
|
headerEmail string
|
|
headerName string
|
|
headerFilter string
|
|
}
|
|
|
|
func hashEmail(email string) string {
|
|
email = strings.TrimSpace(email)
|
|
email = strings.ToLower(email)
|
|
hash := md5.Sum([]byte(email))
|
|
|
|
return hex.EncodeToString(hash[:])
|
|
}
|
|
|
|
func NewForwardProxyAuth(userHeader, emailHeader, nameHeader, filterHeader string) *proxyAuthContext {
|
|
return &proxyAuthContext{
|
|
headerUser: userHeader,
|
|
headerEmail: emailHeader,
|
|
headerName: nameHeader,
|
|
headerFilter: filterHeader,
|
|
}
|
|
}
|
|
|
|
func (p *proxyAuthContext) AuthMiddleware(next http.Handler) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
if r.Header.Get(p.headerUser) != "" {
|
|
containerFilter, err := container.ParseContainerFilter(r.Header.Get(p.headerFilter))
|
|
if err != nil {
|
|
log.Fatal().Str("filter", r.Header.Get(p.headerFilter)).Msg("Failed to parse container filter")
|
|
}
|
|
user := newUser(r.Header.Get(p.headerUser), r.Header.Get(p.headerEmail), r.Header.Get(p.headerName), containerFilter)
|
|
ctx := context.WithValue(r.Context(), remoteUser, user)
|
|
next.ServeHTTP(w, r.WithContext(ctx))
|
|
} else {
|
|
next.ServeHTTP(w, r)
|
|
}
|
|
})
|
|
}
|
|
|
|
func (p *proxyAuthContext) CreateToken(username, password string) (string, error) {
|
|
log.Fatal().Msg("CreateToken not implemented in proxy auth")
|
|
return "", nil
|
|
}
|