Use generic AnimeFinder
This commit is contained in:
@ -13,7 +13,7 @@ import (
|
||||
// NewKitsuAnime ...
|
||||
func NewKitsuAnime(ctx *aero.Context) string {
|
||||
user := utils.GetUser(ctx)
|
||||
finder := arn.NewKitsuFinder()
|
||||
finder := arn.NewAnimeFinder("kitsu/anime")
|
||||
|
||||
animes := arn.FilterKitsuAnime(func(anime *kitsu.Anime) bool {
|
||||
return finder.GetAnime(anime.ID) == nil
|
||||
|
@ -112,7 +112,7 @@ func getMatches(ctx *aero.Context) ([]*arn.KitsuMatch, string) {
|
||||
|
||||
// findAllMatches returns all matches for the anime inside an anilist anime list.
|
||||
func findAllMatches(library chan *kitsu.LibraryEntry) []*arn.KitsuMatch {
|
||||
finder := arn.NewKitsuFinder()
|
||||
finder := arn.NewAnimeFinder("kitsu/anime")
|
||||
matches := []*arn.KitsuMatch{}
|
||||
|
||||
for item := range library {
|
||||
|
@ -107,13 +107,13 @@ func getMatches(ctx *aero.Context) ([]*arn.MyAnimeListMatch, string) {
|
||||
|
||||
// findAllMatches returns all matches for the anime inside an anilist anime list.
|
||||
func findAllMatches(animeList *mal.AnimeList) []*arn.MyAnimeListMatch {
|
||||
allAnime := arn.AllAnime()
|
||||
finder := arn.NewAnimeFinder("myanimelist/anime")
|
||||
matches := []*arn.MyAnimeListMatch{}
|
||||
|
||||
for _, item := range animeList.Items {
|
||||
matches = append(matches, &arn.MyAnimeListMatch{
|
||||
MyAnimeListItem: item,
|
||||
ARNAnime: arn.FindMyAnimeListAnime(item.AnimeID, allAnime),
|
||||
ARNAnime: finder.GetAnime(item.AnimeID),
|
||||
})
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user