library/cmd/serve/api.go

167 lines
4.0 KiB
Go
Raw Normal View History

2024-01-01 21:26:36 +00:00
package main
import (
"encoding/json"
2024-01-01 22:31:18 +00:00
"io"
2024-01-01 21:26:36 +00:00
"io/fs"
"net/http"
"git.yetaga.in/alazyreader/library/media"
"tailscale.com/client/tailscale"
)
type Router struct {
static fs.FS
lib Library
rcol RecordCollection
}
type AdminRouter struct {
static fs.FS
lib Library
ts *tailscale.LocalClient
}
2024-01-02 01:10:58 +00:00
type handler map[string]func()
2024-01-01 22:31:18 +00:00
func (h handler) Handle(w http.ResponseWriter, req *http.Request) {
2024-01-02 01:10:58 +00:00
if f, ok := h[req.Method]; ok {
f()
return
2024-01-01 22:31:18 +00:00
}
2024-01-02 01:10:58 +00:00
badMethod(w)
2024-01-01 22:31:18 +00:00
}
2024-01-01 22:52:11 +00:00
func writeJSONerror(w http.ResponseWriter, err string, status int) {
writeJSON(w, struct{ Status, Reason string }{Status: "error", Reason: err}, status)
2024-01-01 21:26:36 +00:00
}
2024-01-01 22:31:18 +00:00
func writeJSON(w http.ResponseWriter, b any, status int) {
bytes, err := json.Marshal(b)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, err.Error(), http.StatusInternalServerError)
2024-01-01 22:31:18 +00:00
return
}
2024-01-01 21:26:36 +00:00
w.Header().Set("Content-Type", "application/json; charset=utf-8")
w.WriteHeader(status)
2024-01-01 22:31:18 +00:00
w.Write(bytes)
2024-01-01 21:26:36 +00:00
w.Write([]byte("\n"))
}
2024-01-01 22:31:18 +00:00
func (router *Router) ServeHTTP(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/records":
handler{
2024-01-02 01:10:58 +00:00
http.MethodGet: func() { getRecords(router.rcol, w, r) },
2024-01-01 22:31:18 +00:00
}.Handle(w, r)
case "/api/books":
handler{
2024-01-02 01:10:58 +00:00
http.MethodGet: func() { getBooks(router.lib, w, r) },
2024-01-01 22:31:18 +00:00
}.Handle(w, r)
default:
static(router.static).ServeHTTP(w, r)
2024-01-01 21:26:36 +00:00
}
}
2024-01-01 22:31:18 +00:00
func (router *AdminRouter) ServeHTTP(w http.ResponseWriter, r *http.Request) {
switch r.URL.Path {
case "/api/whoami":
handler{
2024-01-02 01:10:58 +00:00
http.MethodGet: func() { getWhoAmI(router.ts, w, r) },
2024-01-01 22:31:18 +00:00
}.Handle(w, r)
2024-01-01 21:26:36 +00:00
case "/api/books":
2024-01-01 22:31:18 +00:00
handler{
2024-01-02 01:10:58 +00:00
http.MethodGet: func() { getBooks(router.lib, w, r) },
http.MethodPost: func() { addBook(router.lib, w, r) },
http.MethodDelete: func() { deleteBook(router.lib, w, r) },
2024-01-01 22:31:18 +00:00
}.Handle(w, r)
default:
static(router.static).ServeHTTP(w, r)
2024-01-01 21:26:36 +00:00
}
}
func badMethod(w http.ResponseWriter) {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "method not supported", http.StatusMethodNotAllowed)
2024-01-01 21:26:36 +00:00
}
2024-01-01 22:31:18 +00:00
func getBooks(l Library, w http.ResponseWriter, r *http.Request) {
books, err := l.GetAllBooks(r.Context())
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, err.Error(), http.StatusInternalServerError)
2024-01-01 22:31:18 +00:00
return
}
writeJSON(w, books, http.StatusOK)
}
2024-01-01 21:26:36 +00:00
2024-01-01 22:31:18 +00:00
func addBook(l Library, w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "no body provided", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
defer r.Body.Close()
b, err := io.ReadAll(r.Body)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error reading body", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
book := &media.Book{}
err = json.Unmarshal(b, book)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error parsing body", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
err = l.AddBook(r.Context(), book)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error parsing body", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
2024-01-01 22:52:11 +00:00
w.WriteHeader(http.StatusAccepted)
2024-01-01 21:26:36 +00:00
}
2024-01-01 22:31:18 +00:00
func deleteBook(l Library, w http.ResponseWriter, r *http.Request) {
if r.Body == nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "no body provided", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
defer r.Body.Close()
b, err := io.ReadAll(r.Body)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error reading body", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
book := &media.Book{}
err = json.Unmarshal(b, book)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error parsing body", http.StatusBadRequest)
2024-01-01 22:31:18 +00:00
return
}
err = l.DeleteBook(r.Context(), book)
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, "error deleting book", http.StatusInternalServerError)
2024-01-01 22:31:18 +00:00
return
}
2024-01-01 22:52:11 +00:00
w.WriteHeader(http.StatusAccepted)
2024-01-01 22:31:18 +00:00
}
func getRecords(l RecordCollection, w http.ResponseWriter, r *http.Request) {
records, err := l.GetAllRecords(r.Context())
if err != nil {
2024-01-01 22:52:11 +00:00
writeJSONerror(w, err.Error(), http.StatusInternalServerError)
2024-01-01 22:31:18 +00:00
return
}
writeJSON(w, records, http.StatusOK)
}
func getWhoAmI(ts *tailscale.LocalClient, w http.ResponseWriter, r *http.Request) {
2024-01-01 22:52:11 +00:00
whois, err := ts.WhoIs(r.Context(), r.RemoteAddr)
if err != nil {
writeJSONerror(w, err.Error(), http.StatusInternalServerError)
2024-01-01 22:31:18 +00:00
return
}
2024-01-01 22:52:11 +00:00
writeJSON(w, whois.UserProfile, http.StatusOK)
2024-01-01 21:26:36 +00:00
}
2024-01-01 22:31:18 +00:00
func static(f fs.FS) http.Handler {
2024-01-01 21:26:36 +00:00
return http.FileServer(http.FS(f))
}