Introduce an `AdminViewBox` handler and route that allows administrators to view any box directly. If the box is password-protected, the handler bypasses the protection by setting an unlock cookie with an unlock token and logs the bypass event. Additionally, add CSS and JS foundations for a file context menu and preview actions in the file browser UI.
48 lines
1.5 KiB
Go
48 lines
1.5 KiB
Go
package handlers
|
|
|
|
import (
|
|
"log/slog"
|
|
"net/http"
|
|
|
|
"warpbox.dev/backend/libs/config"
|
|
"warpbox.dev/backend/libs/services"
|
|
"warpbox.dev/backend/libs/web"
|
|
)
|
|
|
|
type App struct {
|
|
cfg config.Config
|
|
logger *slog.Logger
|
|
renderer *web.Renderer
|
|
uploadService *services.UploadService
|
|
}
|
|
|
|
func NewApp(cfg config.Config, logger *slog.Logger, renderer *web.Renderer, uploadService *services.UploadService) *App {
|
|
return &App{
|
|
cfg: cfg,
|
|
logger: logger,
|
|
renderer: renderer,
|
|
uploadService: uploadService,
|
|
}
|
|
}
|
|
|
|
func (a *App) RegisterRoutes(mux *http.ServeMux) {
|
|
mux.HandleFunc("GET /", a.Home)
|
|
mux.HandleFunc("GET /admin/login", a.AdminLogin)
|
|
mux.HandleFunc("POST /admin/login", a.AdminLoginPost)
|
|
mux.HandleFunc("POST /admin/logout", a.AdminLogout)
|
|
mux.HandleFunc("GET /admin", a.AdminDashboard)
|
|
mux.HandleFunc("GET /admin/files", a.AdminFiles)
|
|
mux.HandleFunc("GET /admin/boxes/{boxID}/view", a.AdminViewBox)
|
|
mux.HandleFunc("POST /admin/boxes/{boxID}/delete", a.AdminDeleteBox)
|
|
mux.HandleFunc("GET /d/{boxID}", a.DownloadPage)
|
|
mux.HandleFunc("POST /d/{boxID}/unlock", a.UnlockBox)
|
|
mux.HandleFunc("GET /d/{boxID}/zip", a.DownloadZip)
|
|
mux.HandleFunc("GET /d/{boxID}/f/{fileID}", a.DownloadFile)
|
|
mux.HandleFunc("GET /d/{boxID}/f/{fileID}/download", a.DownloadFileContent)
|
|
mux.HandleFunc("GET /d/{boxID}/thumb/{fileID}", a.Thumbnail)
|
|
mux.HandleFunc("GET /healthz", a.Health)
|
|
mux.HandleFunc("GET /api/v1/health", a.Health)
|
|
mux.HandleFunc("POST /api/v1/upload", a.Upload)
|
|
mux.Handle("GET /static/", a.Static())
|
|
}
|