tracker/server/announce.go

95 lines
1.8 KiB
Go
Raw Normal View History

// Copyright 2013 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
2013-06-22 01:31:32 +02:00
package server
import (
"errors"
"fmt"
2013-06-23 09:56:28 +02:00
"log"
"net/http"
"path"
2013-07-04 00:24:03 +02:00
"strconv"
2013-06-22 01:31:32 +02:00
)
2013-06-23 09:56:28 +02:00
func (s *Server) serveAnnounce(w http.ResponseWriter, r *http.Request) {
2013-07-04 00:24:03 +02:00
conn := s.connPool.Get()
defer conn.Close()
2013-06-23 09:56:28 +02:00
passkey, _ := path.Split(r.URL.Path)
2013-07-04 00:24:03 +02:00
_, err := validatePasskey(passkey, conn)
2013-06-22 01:31:32 +02:00
if err != nil {
fail(err, w, r)
2013-06-22 01:31:32 +02:00
return
}
pq, err := parseQuery(r.URL.RawQuery)
if err != nil {
fail(errors.New("Error parsing query"), w, r)
2013-06-22 01:31:32 +02:00
return
}
_, err = pq.determineIP(r)
2013-06-22 01:31:32 +02:00
if err != nil {
fail(err, w, r)
2013-06-22 01:31:32 +02:00
return
}
2013-07-04 00:24:03 +02:00
err = pq.validateAnnounceParams()
2013-06-22 01:31:32 +02:00
if err != nil {
fail(errors.New("Malformed request"), w, r)
2013-06-22 01:31:32 +02:00
return
}
2013-07-04 00:24:03 +02:00
if !s.conf.ClientWhitelisted(pq.params["peer_id"]) {
fail(errors.New("Your client is not approved"), w, r)
2013-06-22 01:31:32 +02:00
return
}
2013-07-04 00:24:03 +02:00
torrent, exists, err := conn.FindTorrent(pq.params["infohash"])
2013-06-22 01:31:32 +02:00
if err != nil {
2013-06-23 09:56:28 +02:00
log.Panicf("server: %s", err)
2013-06-22 01:31:32 +02:00
}
if !exists {
fail(errors.New("This torrent does not exist"), w, r)
2013-06-22 01:31:32 +02:00
return
}
2013-07-04 00:24:03 +02:00
tx, err := conn.NewTx()
if err != nil {
log.Panicf("server: %s", err)
}
if left, _ := pq.getUint64("left"); torrent.Status == 1 && left == 0 {
2013-07-04 00:24:03 +02:00
err := tx.UnpruneTorrent(torrent)
2013-06-22 01:31:32 +02:00
if err != nil {
2013-06-23 09:56:28 +02:00
log.Panicf("server: %s", err)
2013-06-22 01:31:32 +02:00
}
torrent.Status = 0
} else if torrent.Status != 0 {
fail(
fmt.Errorf(
"This torrent does not exist (status: %d, left: %d)",
torrent.Status,
left,
),
w,
r,
2013-06-22 01:31:32 +02:00
)
return
}
2013-07-04 00:24:03 +02:00
var numWant int
if numWantStr, exists := pq.params["numWant"]; exists {
numWant, err := strconv.Atoi(numWantStr)
if err != nil {
numWant = s.conf.DefaultNumWant
}
} else {
numWant = s.conf.DefaultNumWant
}
2013-06-23 09:56:28 +02:00
// TODO continue
2013-06-22 01:31:32 +02:00
}