torrent/tracker/tracker.go

78 lines
1.9 KiB
Go
Raw Normal View History

package tracker
import (
"context"
"errors"
"net/http"
"net/url"
"time"
2018-02-19 05:19:18 +00:00
2019-08-10 08:46:07 +00:00
"github.com/anacrolix/dht/v2/krpc"
trHttp "github.com/anacrolix/torrent/tracker/http"
"github.com/anacrolix/torrent/tracker/shared"
2021-06-22 12:36:43 +00:00
"github.com/anacrolix/torrent/tracker/udp"
)
const (
None = shared.None
Started = shared.Started
Stopped = shared.Stopped
Completed = shared.Completed
)
2021-06-22 12:36:43 +00:00
type AnnounceRequest = udp.AnnounceRequest
type AnnounceResponse = trHttp.AnnounceResponse
type Peer = trHttp.Peer
2015-03-26 06:20:31 +00:00
type AnnounceEvent = udp.AnnounceEvent
2021-11-08 03:47:01 +00:00
var ErrBadScheme = errors.New("unknown scheme")
2018-02-19 05:19:18 +00:00
type Announce struct {
TrackerUrl string
Request AnnounceRequest
HostHeader string
HTTPProxy func(*http.Request) (*url.URL, error)
ServerName string
2018-02-19 05:19:18 +00:00
UserAgent string
UdpNetwork string
2018-11-28 01:02:25 +00:00
// If the port is zero, it's assumed to be the same as the Request.Port.
ClientIp4 krpc.NodeAddr
2018-11-28 01:02:25 +00:00
// If the port is zero, it's assumed to be the same as the Request.Port.
ClientIp6 krpc.NodeAddr
Context context.Context
}
// The code *is* the documentation.
const DefaultTrackerAnnounceTimeout = 15 * time.Second
2018-02-19 05:19:18 +00:00
func (me Announce) Do() (res AnnounceResponse, err error) {
cl, err := NewClient(me.TrackerUrl, NewClientOpts{
Http: trHttp.NewClientOpts{
Proxy: me.HTTPProxy,
ServerName: me.ServerName,
},
UdpNetwork: me.UdpNetwork,
})
if err != nil {
return
}
defer cl.Close()
if me.Context == nil {
// This is just to maintain the old behaviour that should be a timeout of 15s. Users can
// override it by providing their own Context. See comments elsewhere about longer timeouts
// acting as rate limiting overloaded trackers.
ctx, cancel := context.WithTimeout(context.Background(), DefaultTrackerAnnounceTimeout)
defer cancel()
me.Context = ctx
}
return cl.Announce(me.Context, me.Request, trHttp.AnnounceOpt{
UserAgent: me.UserAgent,
HostHeader: me.HostHeader,
ClientIp4: me.ClientIp4.IP,
ClientIp6: me.ClientIp6.IP,
})
}