2022-01-15 18:07:33 +00:00
|
|
|
package gpaste
|
2022-01-15 20:53:22 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io"
|
|
|
|
"net/http"
|
|
|
|
|
|
|
|
"github.com/go-chi/chi/v5"
|
|
|
|
"github.com/google/uuid"
|
|
|
|
)
|
|
|
|
|
|
|
|
type HTTPServer struct {
|
2022-01-15 21:04:11 +00:00
|
|
|
store FileStore
|
|
|
|
config *ServerConfig
|
2022-01-15 20:53:22 +00:00
|
|
|
http.Server
|
|
|
|
}
|
|
|
|
|
2022-01-15 21:04:11 +00:00
|
|
|
func NewHTTPServer(cfg *ServerConfig) *HTTPServer {
|
2022-01-15 20:53:22 +00:00
|
|
|
srv := &HTTPServer{
|
2022-01-15 21:04:11 +00:00
|
|
|
config: cfg,
|
2022-01-15 20:53:22 +00:00
|
|
|
}
|
2022-01-15 21:04:11 +00:00
|
|
|
srv.store = NewMemoryFileStore()
|
2022-01-15 20:53:22 +00:00
|
|
|
|
|
|
|
r := chi.NewRouter()
|
|
|
|
r.Get("/", srv.HandlerIndex)
|
|
|
|
r.Post("/api/file", srv.HandlerAPIFilePost)
|
|
|
|
r.Get("/api/file/{id}", srv.HandlerAPIFileGet)
|
|
|
|
srv.Handler = r
|
|
|
|
|
|
|
|
return srv
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) HandlerIndex(w http.ResponseWriter, r *http.Request) {
|
|
|
|
_, _ = w.Write([]byte("index"))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) HandlerAPIFilePost(w http.ResponseWriter, r *http.Request) {
|
|
|
|
f := &File{
|
|
|
|
ID: uuid.Must(uuid.NewRandom()).String(),
|
|
|
|
Body: r.Body,
|
|
|
|
}
|
|
|
|
|
|
|
|
err := s.store.Store(f)
|
|
|
|
if err != nil {
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
var resp = struct {
|
|
|
|
Message string `json:"message"`
|
|
|
|
ID string `json:"id"`
|
|
|
|
URL string `json:"url"`
|
|
|
|
}{
|
|
|
|
Message: "OK",
|
|
|
|
ID: f.ID,
|
|
|
|
URL: "TODO",
|
|
|
|
}
|
|
|
|
w.WriteHeader(http.StatusAccepted)
|
|
|
|
encoder := json.NewEncoder(w)
|
|
|
|
if err := encoder.Encode(&resp); err != nil {
|
|
|
|
// TODO: LOG
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *HTTPServer) HandlerAPIFileGet(w http.ResponseWriter, r *http.Request) {
|
|
|
|
id := chi.URLParam(r, "id")
|
|
|
|
if id == "" {
|
|
|
|
w.WriteHeader(http.StatusBadRequest)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := s.store.Get(id)
|
|
|
|
if err != nil {
|
|
|
|
// TODO: LOG
|
|
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
w.WriteHeader(http.StatusOK)
|
|
|
|
if _, err := io.Copy(w, f.Body); err != nil {
|
|
|
|
// TODO: Log
|
|
|
|
}
|
|
|
|
}
|