32 lines
703 B
Go
32 lines
703 B
Go
|
package embed
|
||
|
|
||
|
import (
|
||
|
"net/http"
|
||
|
"sort"
|
||
|
|
||
|
"github.com/aerogo/aero"
|
||
|
"github.com/animenotifier/notify.moe/components"
|
||
|
"github.com/animenotifier/notify.moe/utils"
|
||
|
)
|
||
|
|
||
|
// Get anime list in the browser extension.
|
||
|
func Get(ctx *aero.Context) string {
|
||
|
user := utils.GetUser(ctx)
|
||
|
|
||
|
if user == nil {
|
||
|
return ctx.Error(http.StatusUnauthorized, "Not logged in", nil)
|
||
|
}
|
||
|
|
||
|
animeList := user.AnimeList()
|
||
|
|
||
|
if animeList == nil {
|
||
|
return ctx.Error(http.StatusNotFound, "Anime list not found", nil)
|
||
|
}
|
||
|
|
||
|
sort.Slice(animeList.Items, func(i, j int) bool {
|
||
|
return animeList.Items[i].FinalRating() < animeList.Items[j].FinalRating()
|
||
|
})
|
||
|
|
||
|
return utils.AllowEmbed(ctx, ctx.HTML(components.AnimeList(animeList)))
|
||
|
}
|