b2b48f61b0
* [WIP] Torrent Generation on not found error As asked in #1517, it allows on-the-fly torrent generation. Since it uses magnet links, it needs some time to connect to peers. So it can't be instant generation, we need the user to wait and try after a minute at least. * Replace Fatal by simple error * attempt at fixing travis * del * Add Anacrolyx dependency * Add back difflib * Remove .torrent suffix in the url example * Add some explanations when file missing page shown * Ignore downloads directory * Either use cache (third-party site) or own download directory * Wrong import * If there is an error then it means we aren't generating a torrent file May it be "torrent not found" or "We do not store torrent files" which are the two only existing errors for this page * hash is never empty * TorrentLink may be empty at times So we add a /download/:hash link if it is * Update README.md * Made a mistake here, need to check if false * Update en-us.all.json * Update CHANGELOG.md * Torrent file generation can be triggered by click on button if JS enabled * Update download.go * Update download.go * Use c.JSON instead of text/template * Return to default behavior if we don't generate the file * Don't do the query if returned to default behavior * Add "Could not generate torrent file" error * Fix JS condition & lower delay until button updates * Start download automatically once torrent file is generated * Fix torrentFileExists() constantly returning false if external torrent download URL * torrent-view-data is two tables instead of one This allows the removal of useless things without any problem (e.g Website link), but also a better responsibe design since the previous one separated stats after a certain res looking very wonky * CSS changes to go along * Remove useless <b></b> * Update main.css * In torrentFileExists, check if filestorage path exists instead of looking at the domain in torrent link When checking if the file is stored on another server i used to simply check if the domain name was inside the torrent link, but we can straight up check for filestorage length * Fix JS of on-demand stat fetching * ScrapeAge variable accessible through view.jet.html Contains last scraped time in hours, is at -1 is torrent has never been scraped Stats will get updated if it's either at -1 or above 1460 (2 months old) * Refresh stats if older than two months OR unknown and older than 24h Show last scraped date even if stats are unknown * Add StatsObsolete variable to torrent Indicating if: - They can be shown - They need to be updated * Update scraped data even if Unknown, prevent users from trying to fetch stats every seconds * Torrent file stored locally by default * no need to do all of that if no filestorage * fix filestorage path * Fix torrent download button stuck on "Generating torrent file" at rare times * fix some css rules that didn't work on IE * Fix panic error Seems like this error is a known bug from anacrolyx torrent https://github.com/anacrolix/torrent/issues/83 To prevent it, I'm creating a single client and modifying the socket.go to make it not raise a panic but a simple error log.
266 lignes
5,3 Kio
Go
266 lignes
5,3 Kio
Go
package tracker
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/binary"
|
|
"errors"
|
|
"fmt"
|
|
"io"
|
|
"math/rand"
|
|
"net"
|
|
"net/url"
|
|
"time"
|
|
|
|
"github.com/anacrolix/missinggo"
|
|
"github.com/anacrolix/missinggo/pproffd"
|
|
|
|
"github.com/anacrolix/torrent/util"
|
|
)
|
|
|
|
type Action int32
|
|
|
|
const (
|
|
ActionConnect Action = iota
|
|
ActionAnnounce
|
|
ActionScrape
|
|
ActionError
|
|
|
|
connectRequestConnectionId = 0x41727101980
|
|
|
|
// BEP 41
|
|
optionTypeEndOfOptions = 0
|
|
optionTypeNOP = 1
|
|
optionTypeURLData = 2
|
|
)
|
|
|
|
type ConnectionRequest struct {
|
|
ConnectionId int64
|
|
Action int32
|
|
TransctionId int32
|
|
}
|
|
|
|
type ConnectionResponse struct {
|
|
ConnectionId int64
|
|
}
|
|
|
|
type ResponseHeader struct {
|
|
Action Action
|
|
TransactionId int32
|
|
}
|
|
|
|
type RequestHeader struct {
|
|
ConnectionId int64
|
|
Action Action
|
|
TransactionId int32
|
|
} // 16 bytes
|
|
|
|
type AnnounceResponseHeader struct {
|
|
Interval int32
|
|
Leechers int32
|
|
Seeders int32
|
|
}
|
|
|
|
func newTransactionId() int32 {
|
|
return int32(rand.Uint32())
|
|
}
|
|
|
|
func timeout(contiguousTimeouts int) (d time.Duration) {
|
|
if contiguousTimeouts > 8 {
|
|
contiguousTimeouts = 8
|
|
}
|
|
d = 15 * time.Second
|
|
for ; contiguousTimeouts > 0; contiguousTimeouts-- {
|
|
d *= 2
|
|
}
|
|
return
|
|
}
|
|
|
|
type udpAnnounce struct {
|
|
contiguousTimeouts int
|
|
connectionIdReceived time.Time
|
|
connectionId int64
|
|
socket net.Conn
|
|
url url.URL
|
|
}
|
|
|
|
func (c *udpAnnounce) Close() error {
|
|
if c.socket != nil {
|
|
return c.socket.Close()
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (c *udpAnnounce) Do(req *AnnounceRequest) (res AnnounceResponse, err error) {
|
|
err = c.connect()
|
|
if err != nil {
|
|
return
|
|
}
|
|
reqURI := c.url.RequestURI()
|
|
// Clearly this limits the request URI to 255 bytes. BEP 41 supports
|
|
// longer but I'm not fussed.
|
|
options := append([]byte{optionTypeURLData, byte(len(reqURI))}, []byte(reqURI)...)
|
|
b, err := c.request(ActionAnnounce, req, options)
|
|
if err != nil {
|
|
return
|
|
}
|
|
var h AnnounceResponseHeader
|
|
err = readBody(b, &h)
|
|
if err != nil {
|
|
if err == io.EOF {
|
|
err = io.ErrUnexpectedEOF
|
|
}
|
|
err = fmt.Errorf("error parsing announce response: %s", err)
|
|
return
|
|
}
|
|
res.Interval = h.Interval
|
|
res.Leechers = h.Leechers
|
|
res.Seeders = h.Seeders
|
|
cps, err := util.UnmarshalIPv4CompactPeers(b.Bytes())
|
|
if err != nil {
|
|
return
|
|
}
|
|
for _, cp := range cps {
|
|
res.Peers = append(res.Peers, Peer{
|
|
IP: cp.IP[:],
|
|
Port: int(cp.Port),
|
|
})
|
|
}
|
|
return
|
|
}
|
|
|
|
// body is the binary serializable request body. trailer is optional data
|
|
// following it, such as for BEP 41.
|
|
func (c *udpAnnounce) write(h *RequestHeader, body interface{}, trailer []byte) (err error) {
|
|
var buf bytes.Buffer
|
|
err = binary.Write(&buf, binary.BigEndian, h)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
if body != nil {
|
|
err = binary.Write(&buf, binary.BigEndian, body)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
}
|
|
_, err = buf.Write(trailer)
|
|
if err != nil {
|
|
return
|
|
}
|
|
n, err := c.socket.Write(buf.Bytes())
|
|
if err != nil {
|
|
return
|
|
}
|
|
if n != buf.Len() {
|
|
panic("write should send all or error")
|
|
}
|
|
return
|
|
}
|
|
|
|
func read(r io.Reader, data interface{}) error {
|
|
return binary.Read(r, binary.BigEndian, data)
|
|
}
|
|
|
|
func write(w io.Writer, data interface{}) error {
|
|
return binary.Write(w, binary.BigEndian, data)
|
|
}
|
|
|
|
// args is the binary serializable request body. trailer is optional data
|
|
// following it, such as for BEP 41.
|
|
func (c *udpAnnounce) request(action Action, args interface{}, options []byte) (responseBody *bytes.Buffer, err error) {
|
|
tid := newTransactionId()
|
|
err = c.write(&RequestHeader{
|
|
ConnectionId: c.connectionId,
|
|
Action: action,
|
|
TransactionId: tid,
|
|
}, args, options)
|
|
if err != nil {
|
|
return
|
|
}
|
|
c.socket.SetReadDeadline(time.Now().Add(timeout(c.contiguousTimeouts)))
|
|
b := make([]byte, 0x800) // 2KiB
|
|
for {
|
|
var n int
|
|
n, err = c.socket.Read(b)
|
|
if opE, ok := err.(*net.OpError); ok {
|
|
if opE.Timeout() {
|
|
c.contiguousTimeouts++
|
|
return
|
|
}
|
|
}
|
|
if err != nil {
|
|
return
|
|
}
|
|
buf := bytes.NewBuffer(b[:n])
|
|
var h ResponseHeader
|
|
err = binary.Read(buf, binary.BigEndian, &h)
|
|
switch err {
|
|
case io.ErrUnexpectedEOF:
|
|
continue
|
|
case nil:
|
|
default:
|
|
return
|
|
}
|
|
if h.TransactionId != tid {
|
|
continue
|
|
}
|
|
c.contiguousTimeouts = 0
|
|
if h.Action == ActionError {
|
|
err = errors.New(buf.String())
|
|
}
|
|
responseBody = buf
|
|
return
|
|
}
|
|
}
|
|
|
|
func readBody(r io.Reader, data ...interface{}) (err error) {
|
|
for _, datum := range data {
|
|
err = binary.Read(r, binary.BigEndian, datum)
|
|
if err != nil {
|
|
break
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
func (c *udpAnnounce) connected() bool {
|
|
return !c.connectionIdReceived.IsZero() && time.Now().Before(c.connectionIdReceived.Add(time.Minute))
|
|
}
|
|
|
|
func (c *udpAnnounce) connect() (err error) {
|
|
if c.connected() {
|
|
return nil
|
|
}
|
|
c.connectionId = connectRequestConnectionId
|
|
if c.socket == nil {
|
|
hmp := missinggo.SplitHostMaybePort(c.url.Host)
|
|
if hmp.NoPort {
|
|
hmp.NoPort = false
|
|
hmp.Port = 80
|
|
}
|
|
c.socket, err = net.Dial("udp", hmp.String())
|
|
if err != nil {
|
|
return
|
|
}
|
|
c.socket = pproffd.WrapNetConn(c.socket)
|
|
}
|
|
b, err := c.request(ActionConnect, nil, nil)
|
|
if err != nil {
|
|
return
|
|
}
|
|
var res ConnectionResponse
|
|
err = readBody(b, &res)
|
|
if err != nil {
|
|
return
|
|
}
|
|
c.connectionId = res.ConnectionId
|
|
c.connectionIdReceived = time.Now()
|
|
return
|
|
}
|
|
|
|
func announceUDP(ar *AnnounceRequest, _url *url.URL) (AnnounceResponse, error) {
|
|
ua := udpAnnounce{
|
|
url: *_url,
|
|
}
|
|
defer ua.Close()
|
|
return ua.Do(ar)
|
|
}
|