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 GetTopAlbumsHandler(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("GetTopAlbumsHandler: Received request to retrieve top albums")
|
|
|
|
opts := OptsFromRequest(r)
|
|
l.Debug().Msgf("GetTopAlbumsHandler: Retrieving top albums with options: %+v", opts)
|
|
|
|
albums, err := store.GetTopAlbumsPaginated(ctx, opts)
|
|
if err != nil {
|
|
l.Err(err).Msg("GetTopAlbumsHandler: Failed to retrieve top albums")
|
|
utils.WriteError(w, "failed to get albums", http.StatusBadRequest)
|
|
return
|
|
}
|
|
|
|
l.Debug().Msg("GetTopAlbumsHandler: Successfully retrieved top albums")
|
|
utils.WriteJSON(w, http.StatusOK, albums)
|
|
}
|
|
}
|