2016-06-28 17:36:18 +00:00
|
|
|
package main
|
|
|
|
|
2016-06-28 22:51:51 +00:00
|
|
|
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
|
|
|
|
2016-06-29 11:09:08 +00:00
|
|
|
func (s 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-29 11:09:08 +00:00
|
|
|
}}
|
2016-06-28 21:56:22 +00:00
|
|
|
}
|
2016-06-28 17:36:18 +00:00
|
|
|
|
2016-06-28 22:51:51 +00:00
|
|
|
func (s staticServiceHandler) Handle(ctx context.Context, params []string) (title, text, color string, err error) {
|
2016-06-28 21:56:22 +00:00
|
|
|
if len(params) < 2 {
|
|
|
|
err = errors.New("You need to provide title and text")
|
2016-06-28 17:36:18 +00:00
|
|
|
return
|
2016-06-28 21:56:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(params) < 3 {
|
|
|
|
params = append(params, defaultColor)
|
|
|
|
}
|
|
|
|
|
|
|
|
title = params[0]
|
|
|
|
text = params[1]
|
|
|
|
color = params[2]
|
|
|
|
return
|
2016-06-28 17:36:18 +00:00
|
|
|
}
|