-
Notifications
You must be signed in to change notification settings - Fork 1
/
http.go
195 lines (169 loc) · 4.65 KB
/
http.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
package main
import (
"encoding/json"
"expvar"
"fmt"
"log"
"net/http"
"path/filepath"
"strconv"
"strings"
"github.com/go-martini/martini"
"github.com/martini-contrib/binding"
)
func getShows(res http.ResponseWriter) string {
data, err := ListShows()
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return render(res, data)
}
func getShow(res http.ResponseWriter, params martini.Params) string {
id, err := strconv.ParseInt(params["id"], 10, 64)
if err == nil {
data, err := GetShow(id)
if err == nil {
return render(res, data)
}
}
return render(res, err)
}
func createShow(res http.ResponseWriter, params martini.Params, show Show) string {
ns := newShow(show.Title, show.Quality, show.Episodal)
err := ns.AddShow()
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return render(res, ns)
}
func updateShow(res http.ResponseWriter, params martini.Params, show Show) string {
id, err := strconv.ParseInt(params["id"], 10, 64)
if err == nil {
temp := newShow(show.Title, show.Quality, show.Episodal)
temp.ID = id
err = temp.UpdateShow()
}
return render(res, err)
}
func deleteShow(res http.ResponseWriter, params martini.Params) string {
id, err := strconv.ParseInt(params["id"], 10, 64)
if err == nil {
show := &Show{ID: id}
err = show.DeleteShow()
}
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
}
return render(res, err)
}
func getEpisodes(res http.ResponseWriter, params martini.Params) string {
sid, err := strconv.ParseInt(params["id"], 10, 64)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
e, err := GetEpisodesByShowID(sid)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return render(res, e)
}
func getConfig(res http.ResponseWriter, params martini.Params) string {
if s, ok := params["section"]; ok {
o, err := tc.GetConfigOption(s)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return asJson(res, o)
}
o, err := json.Marshal(tc)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return asJson(res, o)
}
func updateConfig() string {
return "updateConfig"
}
func getQueueItems() string {
return "getQueueItems"
}
func createQueueItem() string {
return "createQueueItem"
}
func deleteQueueItem() string {
return "deleteQueueItem"
}
func getStatus(res http.ResponseWriter) string {
//_, err := torrentClient.GetTorrents()
//if err != nil {
// res.WriteHeader(http.StatusInternalServerError)
// return err.Error()
//}
return "OK"
}
func getSettings(res http.ResponseWriter, params martini.Params) string {
return render(res, tc)
}
func render(res http.ResponseWriter, data interface{}) string {
thing, err := json.Marshal(data)
if err != nil {
res.WriteHeader(http.StatusInternalServerError)
return err.Error()
}
return asJson(res, thing)
}
func getVarz(res http.ResponseWriter) string {
output := []string{}
res.Header().Set("Content-Type", "application/json; charset=utf-8")
output = append(output, fmt.Sprintf("{", "\n"))
first := true
expvar.Do(func(kv expvar.KeyValue) {
if !first {
output = append(output, fmt.Sprintf(",\n"))
first = false
}
output = append(output, fmt.Sprintf("%q: %s\n", kv.Key, kv.Value))
})
output = append(output, "\n}\n")
return strings.Join(output, "")
}
func asJson(res http.ResponseWriter, data []byte) string {
res.Header().Set("Content-Type", "application/json")
res.Header().Set("Access-Control-Allow-Origin", "*")
return string(data[:])
}
// StartHTTPServer start a HTTP server for configuration and monitoring
func StartHTTPServer(baseDir, port string) {
hostString := fmt.Sprintf(":%s", port)
m := martini.Classic()
static := martini.Static(filepath.Join(baseDir, "www"), martini.StaticOptions{Fallback: "/index.html", Exclude: "/api"})
m.NotFound(static, http.NotFound)
m.Get("/status", getStatus)
m.Get("/settings", getSettings)
m.Get("/vars", getVarz)
m.Get("/api/shows", getShows)
m.Get("/api/configs", getSettings)
m.Group("/api/show", func(r martini.Router) {
r.Get("/:id", getShow)
r.Post("/new", binding.Bind(Show{}), createShow)
r.Post("/update/:id", binding.Bind(Show{}), updateShow)
r.Delete("/delete/:id", deleteShow)
})
m.Group("/api/config", func(r martini.Router) {
r.Get("/:id", getConfig)
r.Post("/update", updateConfig)
})
m.Group("/api/queue", func(r martini.Router) {
r.Get("/:id", getQueueItems)
r.Post("/new", createQueueItem)
r.Delete("/delete/:id", deleteQueueItem)
})
log.Println("Starting up webserver...")
m.RunOnAddr(hostString)
}