2017-10-06 20:07:12 +00:00
|
|
|
package editor
|
2017-07-08 19:11:03 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"github.com/aerogo/aero"
|
|
|
|
"github.com/animenotifier/arn"
|
|
|
|
"github.com/animenotifier/notify.moe/components"
|
|
|
|
)
|
|
|
|
|
2017-10-06 20:07:12 +00:00
|
|
|
const maxAniListEntries = 70
|
|
|
|
|
2017-10-02 12:56:51 +00:00
|
|
|
// AniList ...
|
|
|
|
func AniList(ctx *aero.Context) string {
|
2017-07-08 19:11:03 +00:00
|
|
|
missing, err := arn.FilterAnime(func(anime *arn.Anime) bool {
|
|
|
|
return anime.GetMapping("anilist/anime") == ""
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
ctx.Error(http.StatusInternalServerError, "Couldn't filter anime", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Slice(missing, func(i, j int) bool {
|
2017-10-06 20:07:12 +00:00
|
|
|
a := missing[i]
|
|
|
|
b := missing[j]
|
|
|
|
|
|
|
|
aPop := a.Popularity.Total()
|
|
|
|
bPop := b.Popularity.Total()
|
|
|
|
|
|
|
|
if aPop == bPop {
|
|
|
|
return a.Title.Canonical < b.Title.Canonical
|
|
|
|
}
|
|
|
|
|
|
|
|
return aPop > bPop
|
2017-07-08 19:11:03 +00:00
|
|
|
})
|
|
|
|
|
2017-10-06 20:07:12 +00:00
|
|
|
if len(missing) > maxAniListEntries {
|
|
|
|
missing = missing[:maxAniListEntries]
|
|
|
|
}
|
|
|
|
|
2017-07-08 19:11:03 +00:00
|
|
|
return ctx.HTML(components.AniListMissingMapping(missing))
|
|
|
|
}
|