1
0
mirror of https://github.com/Luzifer/badge-gen.git synced 2024-09-19 15:23:04 +00:00

add caching to beerpay API

This commit is contained in:
Knut Ahlers 2016-07-06 00:45:11 +02:00
parent dc36e17aef
commit 4a7e67412c
Signed by: luzifer
GPG Key ID: DC2729FDD34BE99E

View File

@ -5,6 +5,7 @@ import (
"errors"
"fmt"
"net/http"
"time"
"golang.org/x/net/context"
"golang.org/x/net/context/ctxhttp"
@ -30,6 +31,13 @@ func (s beerpayServiceHandler) Handle(ctx context.Context, params []string) (tit
return
}
title = "beerpay"
color = "red"
cacheKey := fmt.Sprintf("%s::%s", params[0], params[1])
text, err = cacheStore.Get("beerpay", cacheKey)
if err != nil {
var resp *http.Response
apiURL := fmt.Sprintf("https://beerpay.io/api/v1/%s/projects/%s", params[0], params[1])
@ -46,9 +54,9 @@ func (s beerpayServiceHandler) Handle(ctx context.Context, params []string) (tit
if err = json.NewDecoder(resp.Body).Decode(&r); err != nil {
return
}
title = "beerpay"
text = fmt.Sprintf("$%d", r.TotalAmount)
color = "red"
cacheStore.Set("beerpay", cacheKey, text, 5*time.Minute)
}
return
}