0.1.0 - First pass at the app

This commit is contained in:
2026-04-28 15:26:55 -06:00
parent 73aff92505
commit 7420e2b890
17 changed files with 254 additions and 25 deletions
+44 -1
View File
@@ -1,25 +1,68 @@
package main
import (
"compress/gzip"
"embed"
"io"
"log"
"net/http"
"strings"
"github.com/joho/godotenv"
"sprintpadawan/api"
"sprintpadawan/lib"
)
type gzipResponseWriter struct {
io.Writer
http.ResponseWriter
}
func (w gzipResponseWriter) Write(b []byte) (int, error) {
return w.Writer.Write(b)
}
func gzipMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
if !strings.Contains(r.Header.Get("Accept-Encoding"), "gzip") {
next.ServeHTTP(w, r)
return
}
w.Header().Set("Content-Encoding", "gzip")
w.Header().Set("Vary", "Accept-Encoding")
gz := gzip.NewWriter(w)
defer gz.Close()
gzw := gzipResponseWriter{Writer: gz, ResponseWriter: w}
next.ServeHTTP(gzw, r)
})
}
func cacheMiddleware(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "public, max-age=31536000")
next.ServeHTTP(w, r)
})
}
//go:embed static templates
var embeddedFiles embed.FS
func main() {
// load .env file if it exists
_ = godotenv.Load()
lib.InitDB()
api.InitTemplates(embeddedFiles)
mux := http.NewServeMux()
// serve static assets
mux.Handle("/static/", http.FileServer(http.FS(embeddedFiles)))
staticHandler := http.FileServer(http.FS(embeddedFiles))
mux.Handle("/static/", cacheMiddleware(gzipMiddleware(staticHandler)))
api.SetupRoutes(mux)