From 431d0f36dde0599c651a4b41797e5f4791c9f620 Mon Sep 17 00:00:00 2001 From: early Date: Tue, 10 Sep 2024 23:22:36 -0600 Subject: [PATCH] better static file management --- app/app.go | 31 +++++++++---------------------- go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 12 insertions(+), 25 deletions(-) diff --git a/app/app.go b/app/app.go index 7016c9e..41d98c3 100644 --- a/app/app.go +++ b/app/app.go @@ -12,6 +12,7 @@ import ( "os" "path" "path/filepath" + "slices" "strings" "sync" "sync/atomic" @@ -30,8 +31,8 @@ type App struct { Logger *slog.Logger - static map[string]http.Handler - explicitPages []*page.Page + static map[string]http.Handler + nonStaticFiles []string running atomic.Bool wg sync.WaitGroup @@ -246,7 +247,7 @@ func (app *App) Static(rootPath, rootDir string) error { func (app *App) Handle(expr string, handler http.Handler) { // Check page handlers against static if todayPage, ok := handler.(*page.Page); ok { - app.explicitPages = append(app.explicitPages, todayPage) + app.nonStaticFiles = append(app.nonStaticFiles, todayPage.FileDependencies()...) } app.ServeMux.Handle(expr, handler) } @@ -256,26 +257,11 @@ registerStaticHandlers: for expr, staticHandler := range app.static { // If the staticHandler is a *page.Page, if staticPage, ok := staticHandler.(*page.Page); ok { - // and the source file can be identified, - var staticPath string - if fopener, ok := staticPage.File().(include.FileOpener); !ok { - continue - } else { - staticPath = fopener.FileName() - } + // get the static file dependencies (should just be the static file) + staticFile := staticPage.FileDependencies()[0] // Make sure it isn't overridden by an explicitly handled *page.Page. - for _, expPage := range app.explicitPages { - var expPath string - if fopener, ok := expPage.File().(include.FileOpener); !ok { - continue - } else { - expPath = fopener.FileName() - } - - // If paths are equal, continue to the next static handler. - if staticPath == expPath { - continue registerStaticHandlers - } + if slices.Contains(app.nonStaticFiles, staticFile) { + continue registerStaticHandlers } } app.Handle(expr, staticHandler) @@ -290,6 +276,7 @@ func (app *App) initOnce() { } app.initLock.Lock() if app.ready.Load() { + app.initLock.Unlock() return } app.setDefaults() diff --git a/go.mod b/go.mod index cc559d2..18c43e4 100644 --- a/go.mod +++ b/go.mod @@ -2,4 +2,4 @@ module git.earlybird.gay/today-app go 1.22.4 -require git.earlybird.gay/today-engine v0.0.0-20240902192420-b42b76d1d4c5 +require git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f diff --git a/go.sum b/go.sum index 1d27a66..6423552 100644 --- a/go.sum +++ b/go.sum @@ -1,2 +1,2 @@ -git.earlybird.gay/today-engine v0.0.0-20240902192420-b42b76d1d4c5 h1:I+u8fVR315zuANZKWjDCgeHtJ2aSyS3xJHts/hDhFLc= -git.earlybird.gay/today-engine v0.0.0-20240902192420-b42b76d1d4c5/go.mod h1:9w8xpAPxs1QvT//ph/jgAuRIoWyqdi2QEifwsKWOKns= +git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f h1:vyQTIzkDUvqO3coZArw+jiERQ0xzLVjaZx6n6lIpOxQ= +git.earlybird.gay/today-engine v0.0.0-20240911045033-55d49a64189f/go.mod h1:9w8xpAPxs1QvT//ph/jgAuRIoWyqdi2QEifwsKWOKns= -- 2.39.5