Updated API
This commit is contained in:
@ -11,7 +11,7 @@ func main() {
|
||||
color.Yellow("Adding empty anime lists to users who don't have one")
|
||||
|
||||
// Get a stream of all users
|
||||
allUsers, err := arn.AllUsers()
|
||||
allUsers, err := arn.StreamUsers()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
@ -6,7 +6,7 @@ import (
|
||||
|
||||
func main() {
|
||||
// Get a stream of all users
|
||||
allUsers, err := arn.AllUsers()
|
||||
allUsers, err := arn.StreamUsers()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
@ -6,7 +6,7 @@ func main() {
|
||||
// color.Yellow("Deleting private user data")
|
||||
|
||||
// // Get a stream of all users
|
||||
// allUsers, err := arn.AllUsers()
|
||||
// allUsers, err := arn.StreamUsers()
|
||||
|
||||
// if err != nil {
|
||||
// panic(err)
|
||||
|
@ -13,7 +13,7 @@ func main() {
|
||||
arn.DB.DeleteTable("GoogleToUser")
|
||||
|
||||
// Get a stream of all users
|
||||
allUsers, err := arn.AllUsers()
|
||||
allUsers, err := arn.StreamUsers()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
|
34
patches/video-id-to-service-id/main.go
Normal file
34
patches/video-id-to-service-id/main.go
Normal file
@ -0,0 +1,34 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/fatih/color"
|
||||
)
|
||||
|
||||
func main() {
|
||||
// Get a stream of all anime
|
||||
allAnime, err := arn.AllAnime()
|
||||
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
// Iterate over the stream
|
||||
for _, anime := range allAnime {
|
||||
for _, trailer := range anime.Trailers {
|
||||
// trailer.ServiceID = trailer.DeprecatedVideoID
|
||||
println(trailer.DeprecatedVideoID)
|
||||
trailer.ServiceID = trailer.DeprecatedVideoID
|
||||
}
|
||||
|
||||
if anime.Trailers == nil {
|
||||
anime.Trailers = []*arn.ExternalMedia{}
|
||||
}
|
||||
|
||||
err := anime.Save()
|
||||
|
||||
if err != nil {
|
||||
color.Red("Error saving anime: %v", err)
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user