-
Notifications
You must be signed in to change notification settings - Fork 36
/
handler.go
162 lines (139 loc) · 4.38 KB
/
handler.go
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
/*
Copyright 2019 The Kubernetes Authors.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
package main
import (
"encoding/json"
"fmt"
"io/ioutil"
"log"
"net/http"
"sigs.k8s.io/slack-infra/slack"
)
type handler struct {
client *slack.Client
messagePath string
}
func logError(rw http.ResponseWriter, format string, args ...interface{}) {
s := fmt.Sprintf(format, args...)
log.Println(s)
http.Error(rw, s, 500)
}
type handlerFunc func(body []byte) ([]byte, error)
// ServeHTTP handles Slack webhook requests.
func (h *handler) ServeHTTP(rw http.ResponseWriter, r *http.Request) {
body, err := ioutil.ReadAll(r.Body)
if err != nil {
logError(rw, "Failed to read incoming request body: %v", err)
return
}
if err := h.client.VerifySignature(body, r.Header); err != nil {
logError(rw, "Failed validation: %v", err)
return
}
response, err := h.handleMessage(body)
if err != nil {
logError(rw, "Failed to handle message: %v", err)
return
}
rw.Header().Set("Content-Type", "application/json")
_, _ = rw.Write(response)
}
func (h *handler) handleMessage(body []byte) ([]byte, error) {
t := struct {
Type string `json:"type"`
}{}
if err := json.Unmarshal(body, &t); err != nil {
return nil, err
}
messageMapping := map[string]handlerFunc{
"url_verification": h.handleURLVerification,
"event_callback": h.handleEvent,
}
fn, ok := messageMapping[t.Type]
if !ok {
return nil, fmt.Errorf("unknown event type %q", t.Type)
}
output, err := fn(body)
if err != nil {
return nil, fmt.Errorf("%s: %v", t.Type, err)
}
return output, nil
}
func (h *handler) handleURLVerification(body []byte) ([]byte, error) {
request := struct {
Challenge string `json:"challenge"`
}{}
if err := json.Unmarshal(body, &request); err != nil {
return nil, fmt.Errorf("error parsing request: %v", err)
}
response := map[string]string{"challenge": request.Challenge}
return json.Marshal(response)
}
func (h *handler) handleEvent(body []byte) ([]byte, error) {
event := struct {
Event struct {
Type string `json:"type"`
User slack.User `json:"user"`
} `json:"event"`
}{}
if err := json.Unmarshal(body, &event); err != nil {
return nil, fmt.Errorf("failed to parse JSON: %v", err)
}
// We should only be getting team_join events, but be sure to filter out anything else.
// We don't consider this an error, because Slack might get upset if we did.
if event.Event.Type != "team_join" {
return []byte{}, nil
}
if err := h.sendWelcome(event.Event.User.ID); err != nil {
return nil, fmt.Errorf("failed to send welcome: %v", err)
}
return []byte{}, nil
}
func (h *handler) sendWelcome(uid string) error {
welcome, err := h.getWelcome()
if err != nil {
return fmt.Errorf("couldn't get welcome: %v", err)
}
// Slack requires that we first open a "conversation channel" that we can then use to actually send messages.
response := struct {
Channel struct {
ID string `json:"id"`
} `json:"channel"`
}{}
if err := h.client.CallMethod("conversations.open", map[string]string{"users": uid}, &response); err != nil {
return fmt.Errorf("couldn't open a conversation channel: %v", err)
}
channel := response.Channel.ID
message := struct {
Channel string `json:"channel"`
Text string `json:"text"`
AsUser bool `json:"as_user"`
LinkNames bool `json:"link_names"`
}{
Channel: channel,
Text: welcome,
AsUser: true, // Send messages as the bot user, rather than as the app (a very subtle distinction)
LinkNames: true, // Parse @names and #names in the welcome message but still allow other fancy formatting.
}
if err := h.client.CallMethod("chat.postMessage", message, nil); err != nil {
return fmt.Errorf("failed to send message: %v", err)
}
return nil
}
func (h *handler) getWelcome() (string, error) {
message, err := ioutil.ReadFile(h.messagePath)
if err != nil {
return "", fmt.Errorf("failed to read %s: %v", h.messagePath, err)
}
return string(message), nil
}