-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathhandlers.go
47 lines (43 loc) · 1.19 KB
/
handlers.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
package main
import (
"encoding/json"
"fmt"
"log"
"net/http"
"strconv"
"time"
)
type leftpadResponse struct {
Str string `json:"str"`
}
func timedHandler(name string, nextFunc http.HandlerFunc) http.HandlerFunc {
timingMetric := fmt.Sprintf("request.%s.timing", name)
countMetric := fmt.Sprintf("request.%s.count", name)
return func(w http.ResponseWriter, r *http.Request) {
start := time.Now()
nextFunc(w, r)
statsd.Timing(timingMetric, time.Since(start))
statsd.Incr(countMetric)
}
}
func leftpadHandler(w http.ResponseWriter, r *http.Request) {
log.Printf("url %s\tip %s\tua %s", r.RequestURI, r.RemoteAddr, r.UserAgent())
str := r.FormValue("str")
length, err := strconv.Atoi(r.FormValue("len"))
if err != nil {
http.Error(w, err.Error(), http.StatusBadRequest)
return
}
statsd.Histogram("request.str.len", float64(length))
chr := ' '
if len(r.FormValue("chr")) > 0 {
chr = []rune(r.FormValue("chr"))[0]
}
w.Header().Set("Content-Type", "application/json; charset=utf-8")
resp := leftpadResponse{Str: leftpad(str, length, chr)}
enc := json.NewEncoder(w)
if err := enc.Encode(resp); err != nil {
http.Error(w, err.Error(), http.StatusInternalServerError)
return
}
}