tracker/http/api.go

193 lines
4.5 KiB
Go
Raw Normal View History

2014-07-08 03:59:41 +02:00
// Copyright 2014 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.
package http
import (
"encoding/json"
2014-07-08 22:55:24 +02:00
"io/ioutil"
2014-07-08 03:59:41 +02:00
"net/http"
2014-07-16 11:46:33 +02:00
"net/url"
2014-07-08 03:59:41 +02:00
"github.com/julienschmidt/httprouter"
"github.com/chihaya/chihaya/drivers/tracker"
2014-07-08 22:55:24 +02:00
"github.com/chihaya/chihaya/models"
2014-07-08 03:59:41 +02:00
)
2014-07-16 11:44:26 +02:00
func (t *Tracker) check(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
_, err := w.Write([]byte("An easter egg goes here."))
if err != nil {
return http.StatusInternalServerError, err
}
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) getTorrent(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-16 11:46:33 +02:00
infohash, err := url.QueryUnescape(p.ByName("infohash"))
if err != nil {
return http.StatusNotFound, err
}
torrent, err := conn.FindTorrent(infohash)
if err == tracker.ErrTorrentDNE {
2014-07-09 06:53:57 +02:00
return http.StatusNotFound, err
} else if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-16 12:00:20 +02:00
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
e := json.NewEncoder(w)
err = e.Encode(torrent)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) putTorrent(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
2014-07-08 22:55:24 +02:00
body, err := ioutil.ReadAll(r.Body)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
var torrent models.Torrent
err = json.Unmarshal(body, &torrent)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusBadRequest, err
2014-07-08 22:55:24 +02:00
}
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
err = conn.PutTorrent(&torrent)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) delTorrent(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-16 11:46:33 +02:00
infohash, err := url.QueryUnescape(p.ByName("infohash"))
if err != nil {
return http.StatusNotFound, err
}
err = conn.DeleteTorrent(infohash)
if err == tracker.ErrTorrentDNE {
2014-07-09 06:53:57 +02:00
return http.StatusNotFound, err
} else if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) getUser(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
user, err := conn.FindUser(p.ByName("passkey"))
if err == tracker.ErrUserDNE {
2014-07-09 06:53:57 +02:00
return http.StatusNotFound, err
} else if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-16 12:00:20 +02:00
w.Header().Set("Content-Type", "application/json; charset=UTF-8")
e := json.NewEncoder(w)
err = e.Encode(user)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) putUser(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
2014-07-08 22:55:24 +02:00
body, err := ioutil.ReadAll(r.Body)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
var user models.User
err = json.Unmarshal(body, &user)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusBadRequest, err
2014-07-08 22:55:24 +02:00
}
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
err = conn.PutUser(&user)
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
2014-07-08 22:55:24 +02:00
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) delUser(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-08 11:58:00 +02:00
err = conn.DeleteUser(p.ByName("passkey"))
if err == tracker.ErrUserDNE {
2014-07-09 06:53:57 +02:00
return http.StatusNotFound, err
} else if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) putClient(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-08 11:58:00 +02:00
err = conn.PutClient(p.ByName("clientID"))
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}
2014-07-09 06:53:57 +02:00
func (t *Tracker) delClient(w http.ResponseWriter, r *http.Request, p httprouter.Params) (int, error) {
conn, err := t.tp.Get()
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-08 11:58:00 +02:00
err = conn.DeleteClient(p.ByName("clientID"))
if err != nil {
2014-07-09 06:53:57 +02:00
return http.StatusInternalServerError, err
}
2014-07-08 03:59:41 +02:00
2014-07-09 06:53:57 +02:00
return http.StatusOK, nil
}