1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65
|
package main
import (
"encoding/json"
"fmt"
"net/http"
"os"
"github.com/slack-go/slack"
)
func main() {
var token, channel string
var ok bool
token, ok = os.LookupEnv("SLACK_TOKEN")
if !ok {
fmt.Println("Missing SLACK_TOKEN in environment")
os.Exit(1)
}
channel, ok = os.LookupEnv("SLACK_CHANNEL")
if !ok {
fmt.Println("Missing SLACK_CHANNEL in environment")
os.Exit(1)
}
api := slack.New(token)
attachment := slack.Attachment{
Pretext: "pretext",
Fallback: "We don't currently support your client",
CallbackID: "accept_or_reject",
Color: "#3AA3E3",
Actions: []slack.AttachmentAction{
slack.AttachmentAction{
Name: "accept",
Text: "Accept",
Type: "button",
Value: "accept",
},
slack.AttachmentAction{
Name: "reject",
Text: "Reject",
Type: "button",
Value: "reject",
Style: "danger",
},
},
}
message := slack.MsgOptionAttachments(attachment)
channelID, timestamp, err := api.PostMessage(channel, slack.MsgOptionText("", false), message)
if err != nil {
fmt.Printf("Could not send message: %v", err)
}
fmt.Printf("Message with buttons sucessfully sent to channel %s at %s", channelID, timestamp)
http.HandleFunc("/actions", actionHandler)
http.ListenAndServe(":3000", nil)
}
func actionHandler(w http.ResponseWriter, r *http.Request) {
var payload slack.InteractionCallback
err := json.Unmarshal([]byte(r.FormValue("payload")), &payload)
if err != nil {
fmt.Printf("Could not parse action response JSON: %v", err)
}
fmt.Printf("Message button pressed by user %s with value %s", payload.User.Name, payload.ActionCallback.AttachmentActions[0].Value)
}
|