-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhandler.go
76 lines (64 loc) · 1.71 KB
/
handler.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
package main
import (
"log"
"net/http"
"net/url"
"github.com/golang/groupcache"
)
type Fetcher interface {
Generate(query url.Values) ([]byte, error)
WriteResponse(http.ResponseWriter, []byte) error
}
// DumpContentResponse is a Fetcher mixin that will write the cached content directly to the response.
type DumpContentResponse struct{}
func (_ DumpContentResponse) WriteResponse(w http.ResponseWriter, content []byte) error {
_, err := w.Write(content)
return err
}
type fetcherGetter struct{ Fetcher }
func (g fetcherGetter) Get(_ groupcache.Context, key string, dest groupcache.Sink) error {
q, err := url.ParseQuery(key)
if err != nil {
return err
}
bytes, err := g.Generate(q)
if err != nil {
return err
}
return dest.SetBytes(bytes)
}
type entry struct {
Group *groupcache.Group
Fetcher
}
type GGFetchHandler struct {
methods map[string]entry
}
func (g *GGFetchHandler) Register(name string, fetcher Fetcher, size int64) {
if g.methods == nil {
g.methods = make(map[string]entry)
}
g.methods[name] = entry{
Group: groupcache.NewGroup(name, size, fetcherGetter{fetcher}),
Fetcher: fetcher,
}
}
func (g *GGFetchHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) {
method := r.URL.Path[1:]
key := r.URL.RawQuery
log.Println("METHOD", method, "KEY", key)
hi, ok := g.methods[method]
if !ok {
http.NotFound(w, r)
return
}
var buf []byte
if err := hi.Group.Get(nil, key, groupcache.AllocatingByteSliceSink(&buf)); err != nil {
log.Println("ERROR", err, "METHOD", method, "KEY", key)
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
if err := hi.Fetcher.WriteResponse(w, buf); err != nil {
log.Println("ERROR", err, "METHOD", method, "KEY", key)
}
}