mirror of https://github.com/gabehf/Koito.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
912 B
32 lines
912 B
package handlers
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/gabehf/koito/internal/db"
|
|
"github.com/gabehf/koito/internal/logger"
|
|
"github.com/gabehf/koito/internal/utils"
|
|
)
|
|
|
|
func GetTopTracksHandler(store db.DB) func(w http.ResponseWriter, r *http.Request) {
|
|
return func(w http.ResponseWriter, r *http.Request) {
|
|
ctx := r.Context()
|
|
l := logger.FromContext(ctx)
|
|
|
|
l.Debug().Msg("GetTopTracksHandler: Received request to retrieve top tracks")
|
|
|
|
opts := OptsFromRequest(r)
|
|
l.Debug().Msgf("GetTopTracksHandler: Retrieving top tracks with options: %+v", opts)
|
|
|
|
tracks, err := store.GetTopTracksPaginated(ctx, opts)
|
|
if err != nil {
|
|
l.Err(err).Msg("GetTopTracksHandler: Failed to retrieve top tracks")
|
|
utils.WriteError(w, "failed to get tracks", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
l.Debug().Msg("GetTopTracksHandler: Successfully retrieved top tracks")
|
|
utils.WriteJSON(w, http.StatusOK, tracks)
|
|
}
|
|
}
|