2024-08-02 21:48:26 +00:00
|
|
|
package api
|
|
|
|
|
|
|
|
import (
|
2024-09-01 03:43:32 +00:00
|
|
|
"fmt"
|
2024-08-02 21:48:26 +00:00
|
|
|
"net/http"
|
2024-09-01 03:43:32 +00:00
|
|
|
"strings"
|
2024-08-02 21:48:26 +00:00
|
|
|
|
2024-09-03 07:07:45 +00:00
|
|
|
"arimelody-web/admin"
|
|
|
|
"arimelody-web/global"
|
2024-11-01 19:33:26 +00:00
|
|
|
"arimelody-web/controller"
|
2024-08-02 21:48:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func Handler() http.Handler {
|
|
|
|
mux := http.NewServeMux()
|
|
|
|
|
2024-09-22 23:57:23 +00:00
|
|
|
// ACCOUNT ENDPOINTS
|
|
|
|
|
|
|
|
mux.Handle("/v1/login", handleLogin())
|
|
|
|
mux.Handle("/v1/register", handleAccountRegistration())
|
|
|
|
mux.Handle("/v1/delete-account", handleDeleteAccount())
|
|
|
|
|
2024-08-03 22:24:15 +00:00
|
|
|
// ARTIST ENDPOINTS
|
|
|
|
|
|
|
|
mux.Handle("/v1/artist/", http.StripPrefix("/v1/artist", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2024-09-01 03:43:32 +00:00
|
|
|
var artistID = strings.Split(r.URL.Path[1:], "/")[0]
|
2024-11-01 19:33:26 +00:00
|
|
|
artist, err := controller.GetArtist(global.DB, artistID)
|
2024-09-01 03:43:32 +00:00
|
|
|
if err != nil {
|
2024-09-01 23:15:23 +00:00
|
|
|
if strings.Contains(err.Error(), "no rows") {
|
|
|
|
http.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
2024-09-01 03:43:32 +00:00
|
|
|
fmt.Printf("FATAL: Error while retrieving artist %s: %s\n", artistID, err)
|
2024-09-01 23:15:23 +00:00
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
2024-09-01 03:43:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-08-03 22:24:15 +00:00
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
|
|
|
// GET /api/v1/artist/{id}
|
2024-09-01 03:43:32 +00:00
|
|
|
ServeArtist(artist).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
case http.MethodPut:
|
|
|
|
// PUT /api/v1/artist/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(UpdateArtist(artist)).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
case http.MethodDelete:
|
|
|
|
// DELETE /api/v1/artist/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(DeleteArtist(artist)).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
})))
|
2024-08-02 21:48:26 +00:00
|
|
|
mux.Handle("/v1/artist", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
2024-08-03 22:24:15 +00:00
|
|
|
// GET /api/v1/artist
|
2024-08-02 21:48:26 +00:00
|
|
|
ServeAllArtists().ServeHTTP(w, r)
|
|
|
|
case http.MethodPost:
|
2024-08-03 22:24:15 +00:00
|
|
|
// POST /api/v1/artist (admin)
|
2024-08-02 21:48:26 +00:00
|
|
|
admin.MustAuthorise(CreateArtist()).ServeHTTP(w, r)
|
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
}))
|
2024-08-02 23:27:30 +00:00
|
|
|
|
2024-08-03 22:24:15 +00:00
|
|
|
// RELEASE ENDPOINTS
|
|
|
|
|
2024-08-03 14:02:01 +00:00
|
|
|
mux.Handle("/v1/music/", http.StripPrefix("/v1/music", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2024-09-01 03:43:32 +00:00
|
|
|
var releaseID = strings.Split(r.URL.Path[1:], "/")[0]
|
2024-11-01 19:33:26 +00:00
|
|
|
release, err := controller.GetRelease(global.DB, releaseID, true)
|
2024-09-01 03:43:32 +00:00
|
|
|
if err != nil {
|
2024-09-01 23:15:23 +00:00
|
|
|
if strings.Contains(err.Error(), "no rows") {
|
|
|
|
http.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
2024-09-01 03:43:32 +00:00
|
|
|
fmt.Printf("FATAL: Error while retrieving release %s: %s\n", releaseID, err)
|
2024-09-01 23:15:23 +00:00
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
2024-09-01 03:43:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-08-03 14:02:01 +00:00
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
2024-08-03 22:24:15 +00:00
|
|
|
// GET /api/v1/music/{id}
|
2024-11-01 19:33:26 +00:00
|
|
|
ServeRelease(release).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
case http.MethodPut:
|
|
|
|
// PUT /api/v1/music/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(UpdateRelease(release)).ServeHTTP(w, r)
|
2024-08-03 14:02:01 +00:00
|
|
|
case http.MethodDelete:
|
2024-08-03 22:24:15 +00:00
|
|
|
// DELETE /api/v1/music/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(DeleteRelease(release)).ServeHTTP(w, r)
|
2024-08-03 14:02:01 +00:00
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
})))
|
2024-08-02 21:48:26 +00:00
|
|
|
mux.Handle("/v1/music", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
2024-08-03 22:24:15 +00:00
|
|
|
// GET /api/v1/music
|
2024-08-02 21:48:26 +00:00
|
|
|
ServeCatalog().ServeHTTP(w, r)
|
|
|
|
case http.MethodPost:
|
2024-08-03 22:24:15 +00:00
|
|
|
// POST /api/v1/music (admin)
|
2024-08-02 21:48:26 +00:00
|
|
|
admin.MustAuthorise(CreateRelease()).ServeHTTP(w, r)
|
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
}))
|
|
|
|
|
2024-08-03 22:24:15 +00:00
|
|
|
// TRACK ENDPOINTS
|
|
|
|
|
|
|
|
mux.Handle("/v1/track/", http.StripPrefix("/v1/track", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
2024-09-01 03:43:32 +00:00
|
|
|
var trackID = strings.Split(r.URL.Path[1:], "/")[0]
|
2024-11-01 19:33:26 +00:00
|
|
|
track, err := controller.GetTrack(global.DB, trackID)
|
2024-09-01 03:43:32 +00:00
|
|
|
if err != nil {
|
2024-09-01 23:15:23 +00:00
|
|
|
if strings.Contains(err.Error(), "no rows") {
|
|
|
|
http.NotFound(w, r)
|
|
|
|
return
|
|
|
|
}
|
2024-09-01 03:43:32 +00:00
|
|
|
fmt.Printf("FATAL: Error while retrieving track %s: %s\n", trackID, err)
|
2024-09-01 23:15:23 +00:00
|
|
|
http.Error(w, http.StatusText(http.StatusInternalServerError), http.StatusInternalServerError)
|
2024-09-01 03:43:32 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-08-03 22:24:15 +00:00
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
|
|
|
// GET /api/v1/track/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(ServeTrack(track)).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
case http.MethodPut:
|
|
|
|
// PUT /api/v1/track/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(UpdateTrack(track)).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
case http.MethodDelete:
|
|
|
|
// DELETE /api/v1/track/{id} (admin)
|
2024-09-01 03:43:32 +00:00
|
|
|
admin.MustAuthorise(DeleteTrack(track)).ServeHTTP(w, r)
|
2024-08-03 22:24:15 +00:00
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
})))
|
|
|
|
mux.Handle("/v1/track", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
switch r.Method {
|
|
|
|
case http.MethodGet:
|
|
|
|
// GET /api/v1/track (admin)
|
|
|
|
admin.MustAuthorise(ServeAllTracks()).ServeHTTP(w, r)
|
|
|
|
case http.MethodPost:
|
|
|
|
// POST /api/v1/track (admin)
|
|
|
|
admin.MustAuthorise(CreateTrack()).ServeHTTP(w, r)
|
|
|
|
default:
|
|
|
|
http.NotFound(w, r)
|
|
|
|
}
|
|
|
|
}))
|
2024-08-02 23:27:30 +00:00
|
|
|
|
2024-08-02 21:48:26 +00:00
|
|
|
return mux
|
|
|
|
}
|