54 lines
1.6 KiB
Go
54 lines
1.6 KiB
Go
package admin
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
|
|
"arimelody-web/model"
|
|
"arimelody-web/controller"
|
|
)
|
|
|
|
func serveArtist(app *model.AppState) http.Handler {
|
|
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
slices := strings.Split(r.URL.Path[1:], "/")
|
|
id := slices[0]
|
|
artist, err := controller.GetArtist(app.DB, id)
|
|
if err != nil {
|
|
if artist == nil {
|
|
http.NotFound(w, r)
|
|
return
|
|
}
|
|
fmt.Printf("Error rendering admin artist page for %s: %s\n", id, err)
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
|
return
|
|
}
|
|
|
|
credits, err := controller.GetArtistCredits(app.DB, artist.ID, true)
|
|
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
|
|
}
|
|
|
|
type ArtistResponse struct {
|
|
Account *model.Account
|
|
Artist *model.Artist
|
|
Credits []*model.Credit
|
|
}
|
|
|
|
account := r.Context().Value("account").(*model.Account)
|
|
|
|
err = pages["artist"].Execute(w, ArtistResponse{
|
|
Account: account,
|
|
Artist: artist,
|
|
Credits: credits,
|
|
})
|
|
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)
|
|
}
|
|
})
|
|
}
|
|
|