FedP2P/internal/cmd/issue-465/main.go

71 lines
1.6 KiB
Go
Raw Normal View History

package main
import (
"errors"
"fmt"
"net/http"
"os"
"github.com/anacrolix/torrent"
"github.com/anacrolix/torrent/metainfo"
)
func main() {
if err := dlTorrents("."); err != nil {
2021-02-09 16:17:22 +08:00
fmt.Fprintf(os.Stderr, "fatal error: %v\n", err)
os.Exit(1)
}
}
func dlTorrents(dir string) error {
conf := torrent.NewDefaultClientConfig()
conf.DataDir = dir
cl, err := torrent.NewClient(conf)
if err != nil {
return err
}
2021-02-09 16:17:22 +08:00
http.HandleFunc("/torrentClientStatus", func(w http.ResponseWriter, r *http.Request) {
cl.WriteStatus(w)
})
ids := []string{
"urlteam_2021-02-03-21-17-02",
"urlteam_2021-02-02-11-17-02",
"urlteam_2021-01-31-11-17-02",
"urlteam_2021-01-30-21-17-01",
"urlteam_2021-01-29-21-17-01",
"urlteam_2021-01-28-11-17-01",
"urlteam_2021-01-27-11-17-02",
"urlteam_2021-01-26-11-17-02",
"urlteam_2021-01-25-03-17-02",
"urlteam_2021-01-24-03-17-02",
}
for _, id := range ids {
t, err := addTorrentFromURL(cl, fmt.Sprintf("https://archive.org/download/%s/%s_archive.torrent", id, id))
if err != nil {
2021-02-09 16:17:22 +08:00
return fmt.Errorf("downloading metainfo for %q: %w", id, err)
}
t.DownloadAll()
}
if !cl.WaitAll() {
return errors.New("client stopped early")
}
return nil
}
func addTorrentFromURL(cl *torrent.Client, url string) (*torrent.Torrent, error) {
fmt.Printf("Adding torrent: %s\n", url)
resp, err := http.Get(url)
if err != nil {
return nil, err
}
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("status %s", resp.Status)
}
defer resp.Body.Close()
meta, err := metainfo.Load(resp.Body)
if err != nil {
return nil, err
}
return cl.AddTorrent(meta)
}