123 lines
2.6 KiB
Go
123 lines
2.6 KiB
Go
package listimportkitsu
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/aerogo/aero"
|
|
"github.com/animenotifier/arn"
|
|
"github.com/animenotifier/kitsu"
|
|
"github.com/animenotifier/notify.moe/components"
|
|
"github.com/animenotifier/notify.moe/utils"
|
|
)
|
|
|
|
// Preview shows an import preview.
|
|
func Preview(ctx *aero.Context) string {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in")
|
|
}
|
|
|
|
matches, response := getMatches(ctx)
|
|
|
|
if response != "" {
|
|
return response
|
|
}
|
|
|
|
return ctx.HTML(components.ImportKitsu(user, matches))
|
|
}
|
|
|
|
// Finish ...
|
|
func Finish(ctx *aero.Context) string {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return ctx.Error(http.StatusBadRequest, "Not logged in")
|
|
}
|
|
|
|
matches, response := getMatches(ctx)
|
|
|
|
if response != "" {
|
|
return response
|
|
}
|
|
|
|
animeList := user.AnimeList()
|
|
|
|
for _, match := range matches {
|
|
if match.ARNAnime == nil || match.KitsuItem == nil {
|
|
continue
|
|
}
|
|
|
|
rating := match.KitsuItem.Attributes.RatingTwenty
|
|
|
|
if rating < 0 {
|
|
rating = 0
|
|
}
|
|
|
|
if rating > 20 {
|
|
rating = 20
|
|
}
|
|
|
|
// Convert rating
|
|
convertedRating := (float64(rating) / 20.0) * 10.0
|
|
|
|
item := &arn.AnimeListItem{
|
|
AnimeID: match.ARNAnime.ID,
|
|
Status: arn.KitsuStatusToARNStatus(match.KitsuItem.Attributes.Status),
|
|
Episodes: match.KitsuItem.Attributes.Progress,
|
|
Notes: match.KitsuItem.Attributes.Notes,
|
|
Rating: arn.AnimeListItemRating{
|
|
Overall: convertedRating,
|
|
},
|
|
RewatchCount: match.KitsuItem.Attributes.ReconsumeCount,
|
|
Created: arn.DateTimeUTC(),
|
|
Edited: arn.DateTimeUTC(),
|
|
}
|
|
|
|
animeList.Import(item)
|
|
}
|
|
|
|
animeList.Save()
|
|
return ctx.HTML(components.ImportFinished(user))
|
|
}
|
|
|
|
// getMatches finds and returns all matches for the logged in user.
|
|
func getMatches(ctx *aero.Context) ([]*arn.KitsuMatch, string) {
|
|
user := utils.GetUser(ctx)
|
|
|
|
if user == nil {
|
|
return nil, ctx.Error(http.StatusBadRequest, "Not logged in")
|
|
}
|
|
|
|
kitsuUser, err := kitsu.GetUser(user.Accounts.Kitsu.Nick)
|
|
|
|
if err != nil {
|
|
return nil, ctx.Error(http.StatusBadRequest, "Couldn't load your user info from Kitsu", err)
|
|
}
|
|
|
|
library := kitsuUser.StreamLibraryEntries()
|
|
matches := findAllMatches(library)
|
|
|
|
return matches, ""
|
|
}
|
|
|
|
// findAllMatches returns all matches for the anime inside an anilist anime list.
|
|
func findAllMatches(library chan *kitsu.LibraryEntry) []*arn.KitsuMatch {
|
|
finder := arn.NewAnimeFinder("kitsu/anime")
|
|
matches := []*arn.KitsuMatch{}
|
|
|
|
for item := range library {
|
|
// Ignore non-anime entries
|
|
if item.Anime == nil {
|
|
continue
|
|
}
|
|
|
|
matches = append(matches, &arn.KitsuMatch{
|
|
KitsuItem: item,
|
|
ARNAnime: finder.GetAnime(item.Anime.ID),
|
|
})
|
|
}
|
|
|
|
return matches
|
|
}
|