Skip to content

Commit

Permalink
[bugfix] Fix bug where admin panel could not be accessed at /admin (#…
Browse files Browse the repository at this point in the history
…427)

* clarify comments

* tidy up static serving + add /admin redirect
  • Loading branch information
tsmethurst authored Mar 13, 2022
1 parent e306233 commit 4b4c935
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 11 deletions.
4 changes: 2 additions & 2 deletions internal/router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ type Router interface {
AttachMiddleware(handler gin.HandlerFunc)
// Attach 404 NoRoute handler
AttachNoRouteHandler(handler gin.HandlerFunc)
// Add Gin StaticFile handler
// Add Gin StaticFS handler
AttachStaticFS(relativePath string, fs http.FileSystem)
// Start the router
Start()
Expand All @@ -62,7 +62,7 @@ type router struct {
certManager *autocert.Manager
}

// Add Gin StaticFile handler
// Add Gin StaticFS handler
func (r *router) AttachStaticFS(relativePath string, fs http.FileSystem) {
r.engine.StaticFS(relativePath, fs)
}
Expand Down
23 changes: 14 additions & 9 deletions internal/web/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ package web
import (
"fmt"
"net/http"
"os"
"path/filepath"

"github.com/gin-gonic/gin"
Expand Down Expand Up @@ -88,18 +87,24 @@ func (m *Module) NotFoundHandler(c *gin.Context) {

// Route satisfies the RESTAPIModule interface
func (m *Module) Route(s router.Router) error {
// serve static files from /assets
cwd, err := os.Getwd()
// serve static files from assets dir at /assets
assetBaseDir := viper.GetString(config.Keys.WebAssetBaseDir)
if assetBaseDir == "" {
return fmt.Errorf("%s cannot be empty and must be a relative or absolute path", config.Keys.WebAssetBaseDir)
}
assetPath, err := filepath.Abs(assetBaseDir)
if err != nil {
return fmt.Errorf("error getting current working directory: %s", err)
return fmt.Errorf("error getting absolute path of %s: %s", assetBaseDir, err)
}
assetBaseDir := viper.GetString(config.Keys.WebAssetBaseDir)
assetPath := filepath.Join(cwd, assetBaseDir)
s.AttachStaticFS("/assets", fileSystem{http.Dir(assetPath)})

// Admin panel route, if it exists
adminPath := filepath.Join(cwd, assetBaseDir, "/admin")
s.AttachStaticFS("/admin", fileSystem{http.Dir(adminPath)})
// serve admin panel from within assets dir at /admin/
// and redirect /admin to /admin/
adminPath := filepath.Join(assetPath, "admin")
s.AttachStaticFS("/admin/", fileSystem{http.Dir(adminPath)})
s.AttachHandler(http.MethodGet, "/admin", func(c *gin.Context) {
c.Redirect(http.StatusMovedPermanently, "/admin/")
})

// serve front-page
s.AttachHandler(http.MethodGet, "/", m.baseHandler)
Expand Down

0 comments on commit 4b4c935

Please sign in to comment.