2024-01-28 20:22:49 +00:00
|
|
|
package store
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log/slog"
|
2024-05-13 16:56:20 +00:00
|
|
|
"time"
|
2024-01-28 20:22:49 +00:00
|
|
|
|
2024-05-13 16:56:20 +00:00
|
|
|
"github.com/anacrolix/dht/v2"
|
2024-01-28 20:22:49 +00:00
|
|
|
"github.com/anacrolix/dht/v2/bep44"
|
|
|
|
tlog "github.com/anacrolix/log"
|
|
|
|
"github.com/anacrolix/torrent"
|
|
|
|
"github.com/anacrolix/torrent/storage"
|
|
|
|
|
|
|
|
"git.kmsign.ru/royalcat/tstor/src/config"
|
|
|
|
dlog "git.kmsign.ru/royalcat/tstor/src/log"
|
|
|
|
)
|
|
|
|
|
|
|
|
// MOVE
|
|
|
|
func NewClient(st storage.ClientImpl, fis bep44.Store, cfg *config.TorrentClient, id [20]byte) (*torrent.Client, error) {
|
|
|
|
l := slog.With("component", "torrent-client")
|
|
|
|
|
|
|
|
// TODO download and upload limits
|
|
|
|
torrentCfg := torrent.NewDefaultClientConfig()
|
|
|
|
torrentCfg.PeerID = string(id[:])
|
|
|
|
torrentCfg.DefaultStorage = st
|
2024-02-22 22:54:56 +00:00
|
|
|
torrentCfg.AlwaysWantConns = true
|
|
|
|
torrentCfg.AcceptPeerConnections = true
|
|
|
|
torrentCfg.DisableAggressiveUpload = false
|
|
|
|
|
|
|
|
torrentCfg.Seed = true
|
2024-01-28 20:22:49 +00:00
|
|
|
// torrentCfg.DownloadRateLimiter = rate.NewLimiter(rate.Inf, 0)
|
|
|
|
// torrentCfg
|
|
|
|
|
|
|
|
tl := tlog.NewLogger()
|
|
|
|
tl.SetHandlers(&dlog.Torrent{L: l})
|
|
|
|
torrentCfg.Logger = tl
|
|
|
|
torrentCfg.Callbacks.NewPeer = append(torrentCfg.Callbacks.NewPeer, func(p *torrent.Peer) {
|
2024-02-22 22:54:56 +00:00
|
|
|
l := l.With("ip", p.RemoteAddr.String())
|
|
|
|
if p.Torrent() != nil {
|
|
|
|
l = l.With("torrent", p.Torrent().Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debug("new peer")
|
|
|
|
|
2024-01-28 20:22:49 +00:00
|
|
|
})
|
|
|
|
|
2024-02-22 22:54:56 +00:00
|
|
|
torrentCfg.Callbacks.PeerClosed = append(torrentCfg.Callbacks.PeerClosed, func(p *torrent.Peer) {
|
|
|
|
l := l.With("ip", p.RemoteAddr.String())
|
|
|
|
if p.Torrent() != nil {
|
|
|
|
l = l.With("torrent", p.Torrent().Name())
|
|
|
|
}
|
|
|
|
|
|
|
|
l.Debug("peer closed")
|
2024-01-28 20:22:49 +00:00
|
|
|
})
|
|
|
|
|
2024-02-22 22:54:56 +00:00
|
|
|
// torrentCfg.Callbacks.PeerConnClosed = append(torrentCfg.Callbacks.PeerConnClosed, func(c *torrent.PeerConn) {
|
|
|
|
// l.Debug("peer closed", "ip", c.RemoteAddr.String())
|
|
|
|
// })
|
|
|
|
|
2024-05-13 16:56:20 +00:00
|
|
|
torrentCfg.ConfigureAnacrolixDhtServer = func(cfg *dht.ServerConfig) {
|
|
|
|
cfg.Store = fis
|
|
|
|
cfg.Exp = 2 * time.Hour
|
|
|
|
cfg.NoSecurity = false
|
|
|
|
}
|
2024-01-28 20:22:49 +00:00
|
|
|
|
|
|
|
return torrent.NewClient(torrentCfg)
|
|
|
|
}
|