content-type and api key

This commit is contained in:
Erik Winter 2024-09-07 12:10:48 +02:00
parent faafe1a59b
commit 74775ac244
4 changed files with 77 additions and 11 deletions

3
Makefile Normal file
View File

@ -0,0 +1,3 @@
run:
PLANNER_PORT=8092 PLANNER_API_KEY=testKey go run .

View File

@ -16,32 +16,40 @@ import (
type Server struct { type Server struct {
syncer storage.Syncer syncer storage.Syncer
apiKey string
logger *slog.Logger logger *slog.Logger
} }
func NewServer(syncer storage.Syncer, logger *slog.Logger) *Server { func NewServer(syncer storage.Syncer, apiKey string, logger *slog.Logger) *Server {
return &Server{ return &Server{
syncer: syncer, syncer: syncer,
apiKey: apiKey,
logger: logger, logger: logger,
} }
} }
func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) { func (s *Server) ServeHTTP(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Content-Type", "application/json")
if r.URL.Path == "/" { if r.URL.Path == "/" {
Index(w, r) Index(w, r)
return return
} }
if r.Header.Get("Authorization") != fmt.Sprintf("Bearer %s", s.apiKey) {
http.Error(w, `{"error":"not authorized"}`, http.StatusUnauthorized)
return
}
head, tail := ShiftPath(r.URL.Path) head, tail := ShiftPath(r.URL.Path)
switch { switch {
case head == "sync" && tail != "/": case head == "sync" && tail != "/":
http.Error(w, "not found", http.StatusNotFound) http.Error(w, `{"error":"not found"}`, http.StatusNotFound)
case head == "sync" && r.Method == http.MethodGet: case head == "sync" && r.Method == http.MethodGet:
s.SyncGet(w, r) s.SyncGet(w, r)
case head == "sync" && r.Method == http.MethodPost: case head == "sync" && r.Method == http.MethodPost:
s.SyncPost(w, r) s.SyncPost(w, r)
default: default:
http.Error(w, "not found", http.StatusNotFound) http.Error(w, `{"error":"not found"}`, http.StatusNotFound)
} }
} }
@ -58,13 +66,13 @@ func (s *Server) SyncGet(w http.ResponseWriter, r *http.Request) {
items, err := s.syncer.Updated(timestamp) items, err := s.syncer.Updated(timestamp)
if err != nil { if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, fmtError(err), http.StatusInternalServerError)
return return
} }
body, err := json.Marshal(items) body, err := json.Marshal(items)
if err != nil { if err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, fmtError(err), http.StatusInternalServerError)
return return
} }
@ -74,21 +82,21 @@ func (s *Server) SyncGet(w http.ResponseWriter, r *http.Request) {
func (s *Server) SyncPost(w http.ResponseWriter, r *http.Request) { func (s *Server) SyncPost(w http.ResponseWriter, r *http.Request) {
body, err := io.ReadAll(r.Body) body, err := io.ReadAll(r.Body)
if err != nil { if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest) http.Error(w, fmtError(err), http.StatusBadRequest)
return return
} }
defer r.Body.Close() defer r.Body.Close()
var items []planner.Syncable var items []planner.Syncable
if err := json.Unmarshal(body, &items); err != nil { if err := json.Unmarshal(body, &items); err != nil {
http.Error(w, err.Error(), http.StatusBadRequest) http.Error(w, fmtError(err), http.StatusBadRequest)
return return
} }
for _, item := range items { for _, item := range items {
item.Updated = time.Now() item.Updated = time.Now()
if err := s.syncer.Update(item); err != nil { if err := s.syncer.Update(item); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError) http.Error(w, fmtError(err), http.StatusInternalServerError)
return return
} }
} }
@ -112,3 +120,7 @@ func ShiftPath(p string) (head, tail string) {
func Index(w http.ResponseWriter, r *http.Request) { func Index(w http.ResponseWriter, r *http.Request) {
fmt.Fprint(w, `{"status":"ok"}`) fmt.Fprint(w, `{"status":"ok"}`)
} }
func fmtError(err error) string {
return fmt.Sprintf(`{"error":%q}`, err.Error())
}

View File

@ -19,6 +19,40 @@ import (
"code.ewintr.nl/planner/storage" "code.ewintr.nl/planner/storage"
) )
func TestServerServeHTTP(t *testing.T) {
t.Parallel()
apiKey := "test"
srv := handler.NewServer(storage.NewMemory(), apiKey, slog.New(slog.NewJSONHandler(os.Stdout, nil)))
for _, tc := range []struct {
name string
key string
url string
method string
expStatus int
}{
{
name: "index always visible",
url: "/",
method: http.MethodGet,
expStatus: http.StatusOK,
},
} {
t.Run(tc.name, func(t *testing.T) {
req, err := http.NewRequest(tc.method, tc.url, nil)
if err != nil {
t.Errorf("exp nil, got %v", err)
}
res := httptest.NewRecorder()
srv.ServeHTTP(res, req)
if res.Result().StatusCode != tc.expStatus {
t.Errorf("exp %v, got %v", tc.expStatus, res.Result().StatusCode)
}
})
}
}
func TestSyncGet(t *testing.T) { func TestSyncGet(t *testing.T) {
t.Parallel() t.Parallel()
@ -37,7 +71,8 @@ func TestSyncGet(t *testing.T) {
} }
} }
srv := handler.NewServer(mem, slog.New(slog.NewJSONHandler(os.Stdout, nil))) apiKey := "test"
srv := handler.NewServer(mem, apiKey, slog.New(slog.NewJSONHandler(os.Stdout, nil)))
for _, tc := range []struct { for _, tc := range []struct {
name string name string
@ -63,6 +98,7 @@ func TestSyncGet(t *testing.T) {
if err != nil { if err != nil {
t.Errorf("exp nil, got %v", err) t.Errorf("exp nil, got %v", err)
} }
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", apiKey))
res := httptest.NewRecorder() res := httptest.NewRecorder()
srv.ServeHTTP(res, req) srv.ServeHTTP(res, req)
@ -98,6 +134,7 @@ func TestSyncGet(t *testing.T) {
func TestSyncPost(t *testing.T) { func TestSyncPost(t *testing.T) {
t.Parallel() t.Parallel()
apiKey := "test"
for _, tc := range []struct { for _, tc := range []struct {
name string name string
reqBody []byte reqBody []byte
@ -128,11 +165,12 @@ func TestSyncPost(t *testing.T) {
} { } {
t.Run(tc.name, func(t *testing.T) { t.Run(tc.name, func(t *testing.T) {
mem := storage.NewMemory() mem := storage.NewMemory()
srv := handler.NewServer(mem, slog.New(slog.NewJSONHandler(os.Stdout, nil))) srv := handler.NewServer(mem, apiKey, slog.New(slog.NewJSONHandler(os.Stdout, nil)))
req, err := http.NewRequest(http.MethodPost, "/sync", bytes.NewBuffer(tc.reqBody)) req, err := http.NewRequest(http.MethodPost, "/sync", bytes.NewBuffer(tc.reqBody))
if err != nil { if err != nil {
t.Errorf("exp nil, got %v", err) t.Errorf("exp nil, got %v", err)
} }
req.Header.Set("Authorization", fmt.Sprintf("Bearer %s", apiKey))
res := httptest.NewRecorder() res := httptest.NewRecorder()
srv.ServeHTTP(res, req) srv.ServeHTTP(res, req)

15
main.go
View File

@ -1,10 +1,12 @@
package main package main
import ( import (
"fmt"
"log/slog" "log/slog"
"net/http" "net/http"
"os" "os"
"os/signal" "os/signal"
"strconv"
"syscall" "syscall"
"code.ewintr.nl/planner/handler" "code.ewintr.nl/planner/handler"
@ -12,10 +14,21 @@ import (
) )
func main() { func main() {
port, err := strconv.Atoi(os.Getenv("PLANNER_PORT"))
if err != nil {
fmt.Println("PLANNER_PORT env is not an integer")
os.Exit(1)
}
apiKey := os.Getenv("PLANNER_API_KEY")
if apiKey == "" {
fmt.Println("PLANNER_API_KEY is empty")
os.Exit(1)
}
mem := storage.NewMemory() mem := storage.NewMemory()
logger := slog.New(slog.NewJSONHandler(os.Stdout, nil)) logger := slog.New(slog.NewJSONHandler(os.Stdout, nil))
go http.ListenAndServe(":8092", handler.NewServer(mem, logger)) go http.ListenAndServe(fmt.Sprintf(":%d", port), handler.NewServer(mem, apiKey, logger))
logger.Info("service started") logger.Info("service started")