-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhipchat.go
92 lines (73 loc) · 2.07 KB
/
hipchat.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
package main
import (
"bytes"
"encoding/json"
"fmt"
"net/http"
"time"
dwh "github.com/deadmanssnitch/go-dmswebhooks"
)
type Notification struct {
From string `json:"from"`
Format string `json:"message_format"`
Message string `json:"message"`
Color string `json:"color"`
}
// new newNotificiation creates an appropriate notificiaton from a webhook
// alert.
func newNotificiation(alert *dwh.Alert) *Notification {
notice := &Notification{
From: "Dead Man's Snitch",
Format: "text",
}
snitch := alert.Data.Snitch
// Set colors and message based on the type of the alert
switch alert.Type {
case dwh.TypeSnitchReporting:
notice.Color = "green"
notice.Message = fmt.Sprintf("🎉 %s is reporting", snitch.Name)
case dwh.TypeSnitchErrored:
notice.Color = "red"
notice.Message = fmt.Sprintf("🚨 %s has errored", snitch.Name)
case dwh.TypeSnitchMissing:
notice.Color = "yello"
notice.Message = fmt.Sprintf("❓ %s is missing", snitch.Name)
}
// TODO: Add tags
// TODO: Add a link to the snitch
// TODO: Add other stuff
return notice
}
func notifyHipchat(cfg *Config, notice *Notification) error {
var err error
body := &bytes.Buffer{}
encoder := json.NewEncoder(body)
// Convert the Notification to JSON for sending over the wire
if err = encoder.Encode(notice); err != nil {
return err
}
// Create a custom http client so we can control the timeout.
client := &http.Client{
Timeout: 10 * time.Second,
}
uri := fmt.Sprintf("https://%s/v2/room/%s/notification", cfg.Hostname, cfg.Room)
req, err := http.NewRequest("POST", uri, body)
if err != nil {
return err
}
// HipChat uses a special "Bearer" type for authorization.
req.Header.Set("Authorization", "Bearer "+cfg.Token)
req.Header.Set("Content-Type", "application/json")
// Make the request
resp, err := client.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
// HipChat should always send back a 204 No Content response but lets be
// generous.
if resp.StatusCode >= 300 {
return fmt.Errorf("HipChat responded with %v", resp.StatusCode)
}
return nil
}