-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathmethods.go
181 lines (141 loc) · 4.13 KB
/
methods.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package storm
import (
"fmt"
deluge "github.com/gdm85/go-libdeluge"
"github.com/gorilla/mux"
"net/http"
"net/url"
)
type DelugeMethod func(conn deluge.DelugeClient, r *http.Request) (interface{}, error)
func torrentIDs(q url.Values, min int) ([]string, error) {
var ids = q["id"]
if len(ids) < min {
return nil, &Error{Code: http.StatusBadRequest, Message: fmt.Sprintf("At least %d torrent ID(s) are required", min)}
}
return ids, nil
}
func httpTorrentsStatus(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
var (
q = r.URL.Query()
ids = q["id"]
state = deluge.TorrentState(q.Get("state"))
)
return conn.TorrentsStatus(state, ids)
}
func httpDeleteTorrents(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
var (
q = r.URL.Query()
rmFiles = q.Get("files") == "true"
)
ids, err := torrentIDs(q, 1)
if err != nil {
return nil, err
}
errors, err := conn.RemoveTorrents(ids, rmFiles)
if err != nil {
return nil, err
}
if len(errors) > 0 {
return &errors, nil
}
return nil, nil
}
func httpPauseTorrents(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
ids, err := torrentIDs(r.URL.Query(), 1)
if err != nil {
return nil, err
}
return nil, conn.PauseTorrents(ids...)
}
func httpResumeTorrents(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
ids, err := torrentIDs(r.URL.Query(), 1)
if err != nil {
return nil, err
}
return nil, conn.ResumeTorrents(ids...)
}
type AddTorrentRequest struct {
Type string
URI string
Data string
Options deluge.Options
}
type AddTorrentResponse struct {
ID string
}
func httpAddTorrent(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
var req AddTorrentRequest
err := Read(r, &req)
if err != nil {
return nil, err
}
var id string
switch req.Type {
case "url":
id, err = conn.AddTorrentURL(req.URI, &req.Options)
case "magnet":
id, err = conn.AddTorrentMagnet(req.URI, &req.Options)
case "file":
id, err = conn.AddTorrentFile(req.URI, req.Data, &req.Options)
default:
return nil, &Error{Code: http.StatusBadRequest, Message: "Torrent Type must be one of url, magnet or file"}
}
if err != nil {
return nil, err
}
// The RPC returns an empty ID if the torrent could not be parsed or processed.
if id == "" {
return nil, &Error{Code: http.StatusUnprocessableEntity, Message: "Torrent file could not be read"}
}
return AddTorrentResponse{ID: id}, nil
}
type TorrentMethod func(id string, conn deluge.DelugeClient, r *http.Request) (interface{}, error)
func TorrentHandler(f TorrentMethod) DelugeMethod {
return func(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
vars := mux.Vars(r)
return f(vars["id"], conn, r)
}
}
func httpTorrentStatus(id string, conn deluge.DelugeClient, _ *http.Request) (interface{}, error) {
return conn.TorrentStatus(id)
}
func httpDeleteTorrent(id string, conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
ok, err := conn.RemoveTorrent(id, r.URL.Query().Get("files") == "true")
if err != nil {
return nil, err
}
if !ok {
return nil, &Error{Code: http.StatusNotFound, Message: "Requested torrent could not be deleted"}
}
return nil, nil
}
func httpPauseTorrent(id string, conn deluge.DelugeClient, _ *http.Request) (interface{}, error) {
return nil, conn.PauseTorrents(id)
}
func httpResumeTorrent(id string, conn deluge.DelugeClient, _ *http.Request) (interface{}, error) {
return nil, conn.ResumeTorrents(id)
}
func httpSetTorrentOptions(id string, conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
var req deluge.Options
err := Read(r, &req)
if err != nil {
return nil, err
}
return nil, conn.SetTorrentOptions(id, &req)
}
func httpGetSessionStatus(conn deluge.DelugeClient, _ *http.Request) (interface{}, error) {
return conn.GetSessionStatus()
}
type GetFreeSpaceResponse struct {
FreeBytes int64
}
func httpGetFreeSpace(conn deluge.DelugeClient, r *http.Request) (interface{}, error) {
path := r.URL.Query().Get("path")
freeBytes, err := conn.GetFreeSpace(path)
if err != nil {
return nil, err
}
return GetFreeSpaceResponse{
FreeBytes: freeBytes,
}, nil
}