1
0
mirror of https://github.com/Luzifer/badge-gen.git synced 2024-09-18 23:02:57 +00:00
badge-gen/service_static.go

40 lines
918 B
Go
Raw Permalink Normal View History

2016-06-28 17:36:18 +00:00
package main
import (
"errors"
"golang.org/x/net/context"
)
2016-06-28 17:36:18 +00:00
func init() {
2016-06-28 21:56:22 +00:00
registerServiceHandler("static", staticServiceHandler{})
}
type staticServiceHandler struct{}
2016-06-28 17:36:18 +00:00
func (staticServiceHandler) GetDocumentation() serviceHandlerDocumentationList {
return serviceHandlerDocumentationList{{
2016-06-28 21:56:22 +00:00
ServiceName: "Static Badge",
DemoPath: "/static/API/Documentation/4c1",
Arguments: []string{"<title>", "<text>", "[color]"},
}}
2016-06-28 21:56:22 +00:00
}
2016-06-28 17:36:18 +00:00
func (staticServiceHandler) IsEnabled() bool { return true }
func (staticServiceHandler) Handle(_ context.Context, params []string) (title, text, color string, err error) {
if len(params) < 2 { //nolint:gomnd
err = errors.New("you need to provide title and text")
return title, text, color, err
2016-06-28 21:56:22 +00:00
}
if len(params) < 3 { //nolint:gomnd
2016-06-28 21:56:22 +00:00
params = append(params, defaultColor)
}
title = params[0]
text = params[1]
color = params[2]
return title, text, color, err
2016-06-28 17:36:18 +00:00
}