60 lines
1.1 KiB
Go
Raw Normal View History

2017-10-06 20:07:12 +00:00
package editor
2017-10-02 13:33:39 +00:00
import (
"sort"
"github.com/aerogo/aero"
"github.com/animenotifier/arn"
"github.com/animenotifier/notify.moe/components"
)
2017-10-06 20:07:12 +00:00
const maxShoboiEntries = 70
2017-10-02 13:33:39 +00:00
// Shoboi ...
func Shoboi(ctx *aero.Context) string {
2018-03-07 21:06:02 +00:00
year, _ := ctx.GetInt("year")
animeType := ctx.Get("type")
2017-10-27 07:11:56 +00:00
missing := arn.FilterAnime(func(anime *arn.Anime) bool {
2018-03-07 21:06:02 +00:00
if year != 0 && year != anime.StartDateTime().Year() {
return false
}
if animeType != "" && anime.Type != animeType {
return false
}
2017-10-02 13:33:39 +00:00
return anime.GetMapping("shoboi/anime") == ""
})
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-10-02 13:33:39 +00:00
})
count := len(missing)
if count > maxShoboiEntries {
2017-10-06 20:07:12 +00:00
missing = missing[:maxShoboiEntries]
}
return ctx.HTML(components.AnimeEditorListFull(
"Anime without Shoboi links",
missing,
count,
2018-03-07 21:06:02 +00:00
"/editor/shoboi",
func(anime *arn.Anime) string {
return "http://cal.syoboi.jp/find?type=quick&sd=1&kw=" + anime.Title.Japanese
},
))
2017-10-02 13:33:39 +00:00
}