2020-05-31 19:00:44 +08:00
|
|
|
package webseed
|
|
|
|
|
|
|
|
import (
|
2020-06-01 16:25:45 +08:00
|
|
|
"bytes"
|
|
|
|
"context"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
2020-05-31 19:00:44 +08:00
|
|
|
"net/http"
|
2021-11-12 09:37:40 +08:00
|
|
|
"strings"
|
2020-05-31 19:00:44 +08:00
|
|
|
|
2021-11-12 09:37:40 +08:00
|
|
|
"github.com/RoaringBitmap/roaring"
|
|
|
|
"github.com/anacrolix/torrent/common"
|
2020-06-01 16:25:45 +08:00
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
|
|
"github.com/anacrolix/torrent/segments"
|
2020-05-31 19:00:44 +08:00
|
|
|
)
|
|
|
|
|
2020-06-01 16:25:45 +08:00
|
|
|
type RequestSpec = segments.Extent
|
|
|
|
|
2020-06-02 11:54:26 +08:00
|
|
|
type requestPartResult struct {
|
2020-06-01 16:25:45 +08:00
|
|
|
resp *http.Response
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
type requestPart struct {
|
|
|
|
req *http.Request
|
|
|
|
e segments.Extent
|
2020-06-02 11:54:26 +08:00
|
|
|
result chan requestPartResult
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 11:54:26 +08:00
|
|
|
type Request struct {
|
2020-06-01 16:25:45 +08:00
|
|
|
cancel func()
|
2020-06-02 11:54:26 +08:00
|
|
|
Result chan RequestResult
|
|
|
|
}
|
|
|
|
|
|
|
|
func (r Request) Cancel() {
|
|
|
|
r.cancel()
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
2020-05-31 19:00:44 +08:00
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
HttpClient *http.Client
|
|
|
|
Url string
|
2021-11-12 09:37:40 +08:00
|
|
|
fileIndex segments.Index
|
|
|
|
info *metainfo.Info
|
|
|
|
// The pieces we can request with the Url. We're more likely to ban/block at the file-level
|
|
|
|
// given that's how requests are mapped to webseeds, but the torrent.Client works at the piece
|
|
|
|
// level. We can map our file-level adjustments to the pieces here.
|
|
|
|
Pieces roaring.Bitmap
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *Client) SetInfo(info *metainfo.Info) {
|
|
|
|
if !strings.HasSuffix(me.Url, "/") && info.IsDir() {
|
|
|
|
// In my experience, this is a non-conforming webseed. For example the
|
|
|
|
// http://ia600500.us.archive.org/1/items URLs in archive.org torrents.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
me.fileIndex = segments.NewIndex(common.LengthIterFromUpvertedFiles(info.UpvertedFiles()))
|
|
|
|
me.info = info
|
|
|
|
me.Pieces.AddRange(0, uint64(info.NumPieces()))
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 11:54:26 +08:00
|
|
|
type RequestResult struct {
|
|
|
|
Bytes []byte
|
|
|
|
Err error
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
|
2020-06-02 11:54:26 +08:00
|
|
|
func (ws *Client) NewRequest(r RequestSpec) Request {
|
2020-06-01 16:25:45 +08:00
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
var requestParts []requestPart
|
2021-11-12 09:37:40 +08:00
|
|
|
if !ws.fileIndex.Locate(r, func(i int, e segments.Extent) bool {
|
|
|
|
req, err := NewRequest(ws.Url, i, ws.info, e.Start, e.Length)
|
2020-06-01 16:25:45 +08:00
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
req = req.WithContext(ctx)
|
|
|
|
part := requestPart{
|
|
|
|
req: req,
|
2020-06-02 11:54:26 +08:00
|
|
|
result: make(chan requestPartResult, 1),
|
2020-06-01 16:25:45 +08:00
|
|
|
e: e,
|
|
|
|
}
|
|
|
|
go func() {
|
|
|
|
resp, err := ws.HttpClient.Do(req)
|
2020-06-02 11:54:26 +08:00
|
|
|
part.result <- requestPartResult{
|
2020-06-01 16:25:45 +08:00
|
|
|
resp: resp,
|
|
|
|
err: err,
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
requestParts = append(requestParts, part)
|
|
|
|
return true
|
|
|
|
}) {
|
|
|
|
panic("request out of file bounds")
|
|
|
|
}
|
2020-06-02 11:54:26 +08:00
|
|
|
req := Request{
|
|
|
|
cancel: cancel,
|
|
|
|
Result: make(chan RequestResult, 1),
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
go func() {
|
2021-11-12 09:40:15 +08:00
|
|
|
b, err := readRequestPartResponses(ctx, requestParts)
|
2020-06-02 11:54:26 +08:00
|
|
|
req.Result <- RequestResult{
|
|
|
|
Bytes: b,
|
|
|
|
Err: err,
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
}()
|
2020-06-02 11:54:26 +08:00
|
|
|
return req
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
|
2021-02-18 11:36:08 +08:00
|
|
|
type ErrBadResponse struct {
|
|
|
|
Msg string
|
|
|
|
Response *http.Response
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me ErrBadResponse) Error() string {
|
|
|
|
return me.Msg
|
|
|
|
}
|
|
|
|
|
2021-11-12 09:40:15 +08:00
|
|
|
func recvPartResult(ctx context.Context, buf io.Writer, part requestPart) error {
|
2020-06-01 16:25:45 +08:00
|
|
|
result := <-part.result
|
|
|
|
if result.err != nil {
|
|
|
|
return result.err
|
|
|
|
}
|
|
|
|
defer result.resp.Body.Close()
|
2021-11-12 09:40:15 +08:00
|
|
|
if ctx.Err() != nil {
|
|
|
|
return ctx.Err()
|
|
|
|
}
|
2020-10-15 09:42:27 +08:00
|
|
|
switch result.resp.StatusCode {
|
|
|
|
case http.StatusPartialContent:
|
|
|
|
case http.StatusOK:
|
|
|
|
if part.e.Start != 0 {
|
2021-02-18 11:36:08 +08:00
|
|
|
return ErrBadResponse{"got status ok but request was at offset", result.resp}
|
2020-10-15 09:42:27 +08:00
|
|
|
}
|
|
|
|
default:
|
2021-02-18 11:36:08 +08:00
|
|
|
return ErrBadResponse{
|
|
|
|
fmt.Sprintf("unhandled response status code (%v)", result.resp.StatusCode),
|
|
|
|
result.resp,
|
|
|
|
}
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
|
|
|
copied, err := io.Copy(buf, result.resp.Body)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if copied != part.e.Length {
|
|
|
|
return fmt.Errorf("got %v bytes, expected %v", copied, part.e.Length)
|
|
|
|
}
|
|
|
|
return nil
|
2020-05-31 19:00:44 +08:00
|
|
|
}
|
|
|
|
|
2021-11-12 09:40:15 +08:00
|
|
|
func readRequestPartResponses(ctx context.Context, parts []requestPart) ([]byte, error) {
|
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
|
|
|
defer cancel()
|
2020-06-01 16:25:45 +08:00
|
|
|
var buf bytes.Buffer
|
2021-11-12 09:40:15 +08:00
|
|
|
firstErr := make(chan error, 1)
|
|
|
|
go func() {
|
|
|
|
for _, part := range parts {
|
|
|
|
err := recvPartResult(ctx, &buf, part)
|
|
|
|
if err != nil {
|
|
|
|
// Ensure no further unnecessary response reads occur.
|
|
|
|
cancel()
|
|
|
|
select {
|
|
|
|
case firstErr <- fmt.Errorf("reading %q at %q: %w", part.req.URL, part.req.Header.Get("Range"), err):
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
2020-06-01 16:25:45 +08:00
|
|
|
}
|
2021-11-12 09:40:15 +08:00
|
|
|
select {
|
|
|
|
case firstErr <- nil:
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
// This can't be merged into the return statement, because buf.Bytes is called first!
|
|
|
|
err := <-firstErr
|
|
|
|
return buf.Bytes(), err
|
2020-05-31 19:00:44 +08:00
|
|
|
}
|