77 lines
1.8 KiB
Go
Raw Normal View History

2017-10-02 06:29:58 +02:00
package soundtracks
2017-06-27 12:39:41 +02:00
2017-06-27 14:01:32 +02:00
import (
2017-06-27 16:23:57 +02:00
"net/http"
2017-10-16 11:53:47 +02:00
"strconv"
2017-06-27 14:01:32 +02:00
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
2017-10-15 21:11:12 +02:00
"github.com/animenotifier/notify.moe/utils"
2017-06-27 14:01:32 +02:00
)
2017-06-27 12:39:41 +02:00
2017-10-16 12:56:46 +02:00
const maxTracks = 12
2017-06-27 14:04:25 +02:00
2017-10-09 15:47:40 +02:00
// Get renders the soundtracks page.
2017-06-27 12:39:41 +02:00
func Get(ctx *aero.Context) string {
2017-10-15 21:11:12 +02:00
user := utils.GetUser(ctx)
2017-10-09 15:47:40 +02:00
tracks, err := arn.FilterSoundTracks(func(track *arn.SoundTrack) bool {
2017-10-15 20:19:45 +02:00
return !track.IsDraft && len(track.Media) > 0
2017-10-09 15:47:40 +02:00
})
2017-06-27 13:46:29 +02:00
2017-06-27 16:23:57 +02:00
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Error fetching soundtracks", err)
}
2017-06-27 14:38:36 +02:00
2017-06-27 16:54:16 +02:00
arn.SortSoundTracksLatestFirst(tracks)
2017-06-27 14:04:25 +02:00
if len(tracks) > maxTracks {
tracks = tracks[:maxTracks]
}
2017-10-16 12:56:46 +02:00
return ctx.HTML(components.SoundTracks(tracks, maxTracks, user))
2017-06-27 12:39:41 +02:00
}
2017-10-16 11:53:47 +02:00
// From renders the soundtracks from the given index.
func From(ctx *aero.Context) string {
user := utils.GetUser(ctx)
index, err := ctx.GetInt("index")
if err != nil {
return ctx.Error(http.StatusBadRequest, "Invalid start index", err)
}
2017-10-16 12:56:46 +02:00
allTracks, err := arn.FilterSoundTracks(func(track *arn.SoundTrack) bool {
2017-10-16 11:53:47 +02:00
return !track.IsDraft && len(track.Media) > 0
})
if err != nil {
return ctx.Error(http.StatusInternalServerError, "Error fetching soundtracks", err)
}
2017-10-16 12:56:46 +02:00
if index < 0 || index >= len(allTracks) {
return ctx.Error(http.StatusBadRequest, "Invalid start index (maximum is "+strconv.Itoa(len(allTracks))+")", nil)
2017-10-16 11:53:47 +02:00
}
2017-10-16 12:56:46 +02:00
arn.SortSoundTracksLatestFirst(allTracks)
2017-10-16 11:53:47 +02:00
2017-10-16 12:56:46 +02:00
tracks := allTracks[index:]
2017-10-16 11:53:47 +02:00
if len(tracks) > maxTracks {
tracks = tracks[:maxTracks]
}
2017-10-16 12:56:46 +02:00
nextIndex := index + maxTracks
if nextIndex >= len(allTracks) {
// End of data - no more scrolling
ctx.Response().Header().Set("X-LoadMore-Index", "-1")
} else {
// Send the index for the next request
ctx.Response().Header().Set("X-LoadMore-Index", strconv.Itoa(nextIndex))
}
2017-10-16 11:53:47 +02:00
return ctx.HTML(components.SoundTracksScrollable(tracks, user))
}