Use generic AnimeFinder

This commit is contained in:
2018-04-04 15:21:52 +02:00
parent e733dd2bf5
commit 74daef0df7
6 changed files with 12 additions and 10 deletions

View File

@ -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

View File

@ -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 {

View File

@ -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),
})
}