New image downloader
This commit is contained in:
@ -0,0 +1,82 @@
|
||||
package main
|
||||
|
||||
import (
|
||||
"flag"
|
||||
"fmt"
|
||||
"net/http"
|
||||
"runtime"
|
||||
"strconv"
|
||||
"time"
|
||||
|
||||
_ "image/gif"
|
||||
_ "image/jpeg"
|
||||
_ "image/png"
|
||||
|
||||
"github.com/aerogo/http/client"
|
||||
"github.com/animenotifier/arn"
|
||||
"github.com/fatih/color"
|
||||
)
|
||||
|
||||
var ticker = time.NewTicker(50 * time.Millisecond)
|
||||
|
||||
// Shell parameters
|
||||
var from int
|
||||
var to int
|
||||
var useCache bool
|
||||
|
||||
// Shell flags
|
||||
func init() {
|
||||
flag.IntVar(&from, "from", 0, "From index")
|
||||
flag.IntVar(&to, "to", 0, "To index")
|
||||
flag.Parse()
|
||||
}
|
||||
|
||||
func main() {
|
||||
color.Yellow("Downloading anime images")
|
||||
|
||||
defer color.Green("Finished.")
|
||||
defer arn.Node.Close()
|
||||
|
||||
if from < 0 {
|
||||
from = 0
|
||||
}
|
||||
|
||||
allAnime := arn.FilterAnime(func(anime *arn.Anime) bool {
|
||||
id, _ := strconv.Atoi(anime.GetMapping("kitsu/anime"))
|
||||
return id >= from && id <= to
|
||||
})
|
||||
|
||||
for index, anime := range allAnime {
|
||||
fmt.Printf("%d / %d\n", index+1, len(allAnime))
|
||||
work(anime)
|
||||
}
|
||||
|
||||
// Give file buffers some time, just to be safe
|
||||
time.Sleep(time.Second)
|
||||
}
|
||||
|
||||
func work(anime *arn.Anime) error {
|
||||
<-ticker.C
|
||||
|
||||
kitsuOriginal := fmt.Sprintf("https://media.kitsu.io/anime/poster_images/%s/original%s", anime.GetMapping("kitsu/anime"), anime.Image.Extension)
|
||||
|
||||
// Download kitsu image
|
||||
response, err := client.Get(kitsuOriginal).End()
|
||||
|
||||
if err != nil {
|
||||
color.Red("%s (%s)", err.Error(), kitsuOriginal)
|
||||
return err
|
||||
}
|
||||
|
||||
if response.StatusCode() != http.StatusOK {
|
||||
color.Red("Status %d (%s)", response.StatusCode(), kitsuOriginal)
|
||||
return err
|
||||
}
|
||||
|
||||
anime.SetImageBytes(response.Bytes())
|
||||
|
||||
// Try to free up some memory
|
||||
runtime.GC()
|
||||
|
||||
return nil
|
||||
}
|
Reference in New Issue
Block a user