We want to connect the people who have knowledge to the people who need it, to bring together people with different perspectives so they can understand each other better, and to empower everyone to share their knowledge.
package slackbot import ( "fmt" "github.com/nlopes/slack" ) const ( Green string = "#00ff00" Red string = "#ff0000" ) type SlackBot interface { PushSuccessMsg(args ...interface{}) error PushErrorMsg(args ...interface{}) error } type slackAPI struct { WebHookURL string } func NewSlackBot(webHookURL string) SlackBot { return &slackAPI{WebHookURL: webHookURL} } // args[0] author, args[1] success msg, args[2] footer func (s *slackAPI) PushSuccessMsg(args ...interface{}) error { slackMsg := &slack.WebhookMessage{ Attachments: []slack.Attachment{ { Color: Green, AuthorName: getStringArgs(args, 0), Text: getStringArgs(args, 1), Footer: getStringArgs(args, 2), }, }, } return slack.PostWebhook(s.WebHookURL, slackMsg) } // args[0] author, args[1] error msg, args[2] footer func (s *slackAPI) PushErrorMsg(args ...interface{}) error { slackMsg := &slack.WebhookMessage{ Attachments: []slack.Attachment{ { Color: Red, AuthorName: getStringArgs(args, 0), Text: getStringArgs(args, 1), Footer: getStringArgs(args, 2), }, }, } return slack.PostWebhook(s.WebHookURL, slackMsg) } func getStringArgs(args []interface{}, index int) string { if index >= len(args) { return "" } return fmt.Sprint(args[index]) }
2.2K Point(s)
1.2K Point(s)
313 Point(s)
178 Point(s)
138 Point(s)
Input your email to receive reset password link, or if you remember your password, you can click