"os"
"path"
"path/filepath"
+ "slices"
"strings"
"sync"
"sync/atomic"
Logger *slog.Logger
- static map[string]http.Handler
- explicitPages []*page.Page
+ static map[string]http.Handler
+ nonStaticFiles []string
running atomic.Bool
wg sync.WaitGroup
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)
}
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)
}
app.initLock.Lock()
if app.ready.Load() {
+ app.initLock.Unlock()
return
}
app.setDefaults()