2016-02-11 11:57:16 -08:00
|
|
|
package vain
|
2016-02-08 00:15:22 -08:00
|
|
|
|
2016-02-11 12:12:13 -08:00
|
|
|
import (
|
2016-02-13 01:18:06 -08:00
|
|
|
"encoding/json"
|
2016-02-11 12:12:13 -08:00
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2016-02-13 01:18:06 -08:00
|
|
|
"strings"
|
2016-02-11 12:12:13 -08:00
|
|
|
)
|
2016-02-08 00:15:22 -08:00
|
|
|
|
|
|
|
type Server struct {
|
2016-02-13 01:18:06 -08:00
|
|
|
hostname string
|
|
|
|
storage *MemStore
|
2016-02-08 00:15:22 -08:00
|
|
|
}
|
|
|
|
|
2016-02-11 12:12:13 -08:00
|
|
|
func (s *Server) ServeHTTP(w http.ResponseWriter, req *http.Request) {
|
|
|
|
switch req.Method {
|
|
|
|
case "GET":
|
2016-02-13 01:18:06 -08:00
|
|
|
fmt.Fprintf(w, "<!DOCTYPE html>\n<html><head>\n")
|
|
|
|
for _, p := range s.storage.All() {
|
|
|
|
fmt.Fprintf(w, "%s\n", p)
|
|
|
|
}
|
|
|
|
fmt.Fprintf(w, "</head>\n</html>\n")
|
2016-02-11 12:12:13 -08:00
|
|
|
case "POST":
|
2016-02-13 01:18:06 -08:00
|
|
|
if req.URL.Path == "/" {
|
|
|
|
http.Error(w, fmt.Sprintf("invalid path %q", req.URL.Path), http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p := Package{}
|
|
|
|
if err := json.NewDecoder(req.Body).Decode(&p); err != nil {
|
|
|
|
http.Error(w, fmt.Sprintf("unable to parse json from body: %v", err), http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
p.Path = fmt.Sprintf("%s/%s", s.hostname, strings.Trim(req.URL.Path, "/"))
|
|
|
|
s.storage.Add(p)
|
2016-02-11 12:12:13 -08:00
|
|
|
case "PATCH":
|
|
|
|
default:
|
|
|
|
http.Error(w, fmt.Sprintf("unsupported method %q; accepted: POST, GET, PATCH", req.Method), http.StatusMethodNotAllowed)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-13 01:18:06 -08:00
|
|
|
func NewServer(sm *http.ServeMux, ms *MemStore, hostname string) *Server {
|
|
|
|
s := &Server{
|
|
|
|
storage: ms,
|
|
|
|
hostname: hostname,
|
|
|
|
}
|
2016-02-11 12:12:13 -08:00
|
|
|
sm.Handle("/", s)
|
2016-02-08 00:15:22 -08:00
|
|
|
return s
|
|
|
|
}
|