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

Beerpay has been discontinued

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2021-03-11 19:23:11 +01:00
parent 141e65dd26
commit 9108f27a3a
Signed by: luzifer
GPG Key ID: 0066F03ED215AD7D

View File

@ -1,64 +0,0 @@
package main
import (
"encoding/json"
"errors"
"fmt"
"net/http"
"time"
"golang.org/x/net/context"
)
func init() {
registerServiceHandler("beerpay", beerpayServiceHandler{})
}
type beerpayServiceHandler struct{}
func (s beerpayServiceHandler) GetDocumentation() serviceHandlerDocumentationList {
return serviceHandlerDocumentationList{{
ServiceName: "beerpay Total Amount",
DemoPath: "/beerpay/beerpay/beerpay.io",
Arguments: []string{"<user>", "<project>"},
}}
}
func (beerpayServiceHandler) IsEnabled() bool { return true }
func (s beerpayServiceHandler) Handle(ctx context.Context, params []string) (title, text, color string, err error) {
if len(params) < 2 {
err = errors.New("You need to provide user and project")
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])
req, _ := http.NewRequest("GET", apiURL, nil)
resp, err = http.DefaultClient.Do(req.WithContext(ctx))
if err != nil {
return
}
defer resp.Body.Close()
r := struct {
TotalAmount int `json:"total_amount"`
}{}
if err = json.NewDecoder(resp.Body).Decode(&r); err != nil {
return
}
text = fmt.Sprintf("$%d", r.TotalAmount)
cacheStore.Set("beerpay", cacheKey, text, 5*time.Minute)
}
return
}