48 lines
1.4 KiB
Go
48 lines
1.4 KiB
Go
package admin
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"arimelody-web/global"
|
|
"arimelody-web/model"
|
|
"arimelody-web/controller"
|
|
)
|
|
|
|
func serveTrack() http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
slices := strings.Split(r.URL.Path[1:], "/")
|
|
id := slices[0]
|
|
track, err := controller.GetTrack(global.DB, id)
|
|
if err != nil {
|
|
fmt.Printf("Error rendering admin track page for %s: %s\n", id, err)
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
if track == nil {
|
|
http.NotFound(w, r)
|
|
return
|
|
}
|
|
|
|
releases, err := controller.GetTrackReleases(global.DB, track.ID, true)
|
|
if err != nil {
|
|
fmt.Printf("FATAL: Failed to pull releases for %s: %s\n", id, err)
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
type Track struct {
|
|
*model.Track
|
|
Releases []*model.Release
|
|
}
|
|
|
|
err = pages["track"].Execute(w, Track{ Track: track, Releases: releases })
|
|
if err != nil {
|
|
fmt.Printf("Error rendering admin track page for %s: %s\n", id, err)
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
}
|
|
})
|
|
}
|
|
|