-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhttp.go
97 lines (83 loc) · 2.54 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
package server
import (
"context"
"fmt"
"io"
"log"
"net/http"
"github.com/at15/tinycache/cache"
)
type httpServer struct {
cache cache.Cache
metrics cache.MetricsExporter
server *http.Server
}
func NewHTTPServer(cache cache.Cache, metrics cache.MetricsExporter) Server {
return &httpServer{
cache: cache,
metrics: metrics,
// server will be initalized in Start
}
}
func (s *httpServer) Start(ctx context.Context, addr string, port int) error {
mux := http.NewServeMux()
// https://go.dev/blog/routing-enhancements
mux.HandleFunc("GET /cache/{bucket}/{key}", requireBucketAndKey(s.handleGet))
// ?ttl=10s&policy=lru
mux.HandleFunc("PUT /cache/{bucket}/{key}", requireBucketAndKey(s.handleSet))
mux.HandleFunc("DELETE /cache/{bucket}/{key}", requireBucketAndKey(s.handleDelete))
mux.Handle("GET /stats", s.metrics.HTTPHandler())
addr = fmt.Sprintf("%s:%d", addr, port)
server := &http.Server{
Addr: addr,
Handler: mux,
}
s.server = server
log.Printf("Starting HTTP server on %s", addr)
return server.ListenAndServe()
}
func (s *httpServer) Stop(ctx context.Context) error {
if s.server == nil {
return nil
}
return s.server.Shutdown(ctx)
}
type kvHandler func(bucket, key string, body []byte, opts cache.Options) ([]byte, error)
func requireBucketAndKey(handler kvHandler) http.HandlerFunc {
return func(w http.ResponseWriter, r *http.Request) {
bucket := r.PathValue("bucket")
key := r.PathValue("key")
if bucket == "" || key == "" {
http.Error(w, "Invalid bucket or key", http.StatusBadRequest)
return
}
// TODO: read operations from request parameters for ttl and policy
body, err := io.ReadAll(r.Body)
if err != nil {
http.Error(w, "Failed to read request body", http.StatusBadRequest)
return
}
opts, err := cache.ParseFromRequest(r)
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
b, err := handler(bucket, key, body, opts)
if err != nil {
// TODO: check error type, though we only return error when not found
// so it's always 404...
http.Error(w, err.Error(), http.StatusNotFound)
return
}
w.Write(b)
}
}
func (s *httpServer) handleGet(bucket, key string, body []byte, opts cache.Options) ([]byte, error) {
return s.cache.Get(bucket, key, opts)
}
func (s *httpServer) handleSet(bucket, key string, body []byte, opts cache.Options) ([]byte, error) {
return nil, s.cache.Set(bucket, key, body, opts)
}
func (s *httpServer) handleDelete(bucket, key string, body []byte, _ cache.Options) ([]byte, error) {
return nil, s.cache.Delete(bucket, key)
}