Use Kitsu finder
This commit is contained in:
parent
a6a71358bf
commit
e733dd2bf5
@ -13,10 +13,10 @@ import (
|
|||||||
// NewKitsuAnime ...
|
// NewKitsuAnime ...
|
||||||
func NewKitsuAnime(ctx *aero.Context) string {
|
func NewKitsuAnime(ctx *aero.Context) string {
|
||||||
user := utils.GetUser(ctx)
|
user := utils.GetUser(ctx)
|
||||||
allAnime := arn.AllAnime()
|
finder := arn.NewKitsuFinder()
|
||||||
|
|
||||||
animes := arn.FilterKitsuAnime(func(anime *kitsu.Anime) bool {
|
animes := arn.FilterKitsuAnime(func(anime *kitsu.Anime) bool {
|
||||||
return arn.FindKitsuAnime(anime.ID, allAnime) != nil
|
return finder.GetAnime(anime.ID) == nil
|
||||||
})
|
})
|
||||||
|
|
||||||
sort.Slice(animes, func(i, j int) bool {
|
sort.Slice(animes, func(i, j int) bool {
|
||||||
|
@ -112,7 +112,7 @@ func getMatches(ctx *aero.Context) ([]*arn.KitsuMatch, string) {
|
|||||||
|
|
||||||
// findAllMatches returns all matches for the anime inside an anilist anime list.
|
// findAllMatches returns all matches for the anime inside an anilist anime list.
|
||||||
func findAllMatches(library chan *kitsu.LibraryEntry) []*arn.KitsuMatch {
|
func findAllMatches(library chan *kitsu.LibraryEntry) []*arn.KitsuMatch {
|
||||||
allAnime := arn.AllAnime()
|
finder := arn.NewKitsuFinder()
|
||||||
matches := []*arn.KitsuMatch{}
|
matches := []*arn.KitsuMatch{}
|
||||||
|
|
||||||
for item := range library {
|
for item := range library {
|
||||||
@ -123,7 +123,7 @@ func findAllMatches(library chan *kitsu.LibraryEntry) []*arn.KitsuMatch {
|
|||||||
|
|
||||||
matches = append(matches, &arn.KitsuMatch{
|
matches = append(matches, &arn.KitsuMatch{
|
||||||
KitsuItem: item,
|
KitsuItem: item,
|
||||||
ARNAnime: arn.FindKitsuAnime(item.Anime.ID, allAnime),
|
ARNAnime: finder.GetAnime(item.Anime.ID),
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -13,7 +13,7 @@ func main() {
|
|||||||
defer color.Green("Finished.")
|
defer color.Green("Finished.")
|
||||||
defer arn.Node.Close()
|
defer arn.Node.Close()
|
||||||
|
|
||||||
allAnime := arn.AllAnime()
|
finder := arn.NewKitsuFinder()
|
||||||
|
|
||||||
for mapping := range arn.StreamKitsuMappings() {
|
for mapping := range arn.StreamKitsuMappings() {
|
||||||
if mapping.Relationships.Item.Data.Type != "anime" {
|
if mapping.Relationships.Item.Data.Type != "anime" {
|
||||||
@ -24,7 +24,7 @@ func main() {
|
|||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
anime := arn.FindKitsuAnime(mapping.Relationships.Item.Data.ID, allAnime)
|
anime := finder.GetAnime(mapping.Relationships.Item.Data.ID)
|
||||||
|
|
||||||
if anime == nil {
|
if anime == nil {
|
||||||
continue
|
continue
|
||||||
|
@ -16,7 +16,7 @@ func main() {
|
|||||||
added := 0
|
added := 0
|
||||||
conflicted := 0
|
conflicted := 0
|
||||||
|
|
||||||
allAnime := arn.AllAnime()
|
finder := arn.NewKitsuFinder()
|
||||||
|
|
||||||
for mapping := range arn.StreamKitsuMappings() {
|
for mapping := range arn.StreamKitsuMappings() {
|
||||||
if mapping.Relationships.Item.Data.Type != "anime" {
|
if mapping.Relationships.Item.Data.Type != "anime" {
|
||||||
@ -33,7 +33,7 @@ func main() {
|
|||||||
externalID = externalID[len("anime/"):]
|
externalID = externalID[len("anime/"):]
|
||||||
}
|
}
|
||||||
|
|
||||||
anime := arn.FindKitsuAnime(mapping.Relationships.Item.Data.ID, allAnime)
|
anime := finder.GetAnime(mapping.Relationships.Item.Data.ID)
|
||||||
|
|
||||||
if anime == nil {
|
if anime == nil {
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user