-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathwebsocket.go
More file actions
74 lines (58 loc) · 1.58 KB
/
websocket.go
File metadata and controls
74 lines (58 loc) · 1.58 KB
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
66
67
68
69
70
71
72
73
74
package main
import (
"flag"
"fmt"
"log"
"os"
"github.com/slack-go/slack"
)
func main() {
channelID := flag.String("channel", "", "Channel ID (required)")
flag.Parse()
// Get token from environment variable
token := os.Getenv("SLACK_BOT_TOKEN")
if token == "" {
fmt.Println("SLACK_BOT_TOKEN environment variable is required")
os.Exit(1)
}
// Get channel ID from flag
if *channelID == "" {
fmt.Println("Channel ID is required: use -channel flag")
os.Exit(1)
}
api := slack.New(
token,
slack.OptionDebug(true),
slack.OptionLog(log.New(os.Stdout, "slack-bot: ", log.Lshortfile|log.LstdFlags)),
)
rtm := api.NewRTM()
go rtm.ManageConnection()
for msg := range rtm.IncomingEvents {
fmt.Print("Event Received: ")
switch ev := msg.Data.(type) {
case *slack.HelloEvent:
// Ignore hello
case *slack.ConnectedEvent:
fmt.Println("Infos:", ev.Info)
fmt.Println("Connection counter:", ev.ConnectionCount)
// Send message to provided channel ID
rtm.SendMessage(rtm.NewOutgoingMessage("Hello world", *channelID))
case *slack.MessageEvent:
fmt.Printf("Message: %v\n", ev)
case *slack.PresenceChangeEvent:
fmt.Printf("Presence Change: %v\n", ev)
case *slack.LatencyReport:
fmt.Printf("Current latency: %v\n", ev.Value)
case *slack.DesktopNotificationEvent:
fmt.Printf("Desktop Notification: %v\n", ev)
case *slack.RTMError:
fmt.Printf("Error: %s\n", ev.Error())
case *slack.InvalidAuthEvent:
fmt.Printf("Invalid credentials")
return
default:
// Ignore other events..
// fmt.Printf("Unexpected: %v\n", msg.Data)
}
}
}