portal/api/middleware/s5.go

129 lines
3.0 KiB
Go
Raw Normal View History

package middleware
2024-01-17 13:16:03 +00:00
import (
"context"
2024-01-17 13:16:03 +00:00
"fmt"
"git.lumeweb.com/LumeWeb/portal/interfaces"
"github.com/golang-jwt/jwt/v5"
"go.sia.tech/jape"
"net/http"
"strings"
)
const (
S5AuthUserIDKey = "userID"
S5AuthCookieName = "s5-auth-token"
S5AuthQueryParam = "auth_token"
)
func findAuthToken(r *http.Request) string {
authHeader := r.Header.Get("Authorization")
if authHeader == "" {
return ""
}
authHeader = strings.TrimPrefix(authHeader, "Bearer ")
if authHeader != "" {
return authHeader
}
for _, cookie := range r.Cookies() {
if cookie.Name == S5AuthCookieName {
return cookie.Value
}
}
return r.FormValue(S5AuthQueryParam)
}
2024-01-17 13:16:03 +00:00
func AuthMiddleware(handler jape.Handler, portal interfaces.Portal) jape.Handler {
return jape.Adapt(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
authToken := findAuthToken(r)
if authToken == "" {
http.Error(w, "Invalid JWT", http.StatusUnauthorized)
2024-01-17 13:16:03 +00:00
return
}
token, err := jwt.Parse(authToken, func(token *jwt.Token) (interface{}, error) {
2024-01-17 13:16:03 +00:00
if _, ok := token.Method.(*jwt.SigningMethodEd25519); !ok {
return nil, fmt.Errorf("unexpected signing method: %v", token.Header["alg"])
}
2024-01-17 13:53:10 +00:00
publicKey := portal.Identity().Public()
2024-01-17 13:16:03 +00:00
return publicKey, nil
})
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
if claim, ok := token.Claims.(jwt.MapClaims); ok && token.Valid {
2024-01-17 14:02:13 +00:00
subject, ok := claim["sub"]
2024-01-17 13:57:45 +00:00
if !ok {
http.Error(w, "Invalid User ID", http.StatusBadRequest)
return
}
2024-01-17 14:02:13 +00:00
var userID uint64
switch v := subject.(type) {
case uint64:
userID = v
case float64:
userID = uint64(v)
default:
// Handle the case where userID is of an unexpected type
http.Error(w, "Invalid User ID", http.StatusBadRequest)
return
}
exists, _ := portal.Accounts().AccountExists(userID)
if !exists {
http.Error(w, "Invalid User ID", http.StatusBadRequest)
return
}
ctx := context.WithValue(r.Context(), S5AuthUserIDKey, userID)
r = r.WithContext(ctx)
2024-01-17 13:16:03 +00:00
h.ServeHTTP(w, r)
} else {
http.Error(w, "Invalid JWT", http.StatusUnauthorized)
}
})
})(handler)
}
2024-01-19 22:06:41 +00:00
func BuildS5TusApi(portal interfaces.Portal) jape.Handler {
// Wrapper function for AuthMiddleware to fit the MiddlewareFunc signature
authMiddlewareFunc := func(h jape.Handler) jape.Handler {
return AuthMiddleware(h, portal)
}
// Create a jape.Handler for your tusHandler
tusJapeHandler := func(c jape.Context) {
tusHandler := portal.Storage().Tus()
tusHandler.ServeHTTP(c.ResponseWriter, c.Request)
}
protocolMiddleware := jape.Adapt(func(h http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
ctx := context.WithValue(r.Context(), "protocol", "s5")
h.ServeHTTP(w, r.WithContext(ctx))
})
})
// Apply the middlewares to the tusJapeHandler
tusHandler := ApplyMiddlewares(tusJapeHandler, authMiddlewareFunc, protocolMiddleware)
2024-01-19 22:06:41 +00:00
return tusHandler
}