-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpushover.go
120 lines (100 loc) · 3.03 KB
/
pushover.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
/*
* Copyright (C) 2024 Kendall Tauser
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
package gonotify
import (
"bytes"
"errors"
"net/http"
"strconv"
)
const (
pushoverEndpoint = "https://api.pushover.net/1/messages.json"
)
type PushoverNotifier struct {
genericHTTPNotifier
}
type PushoverConfig struct {
// The API key to validate the message.
APIKey string
// Can be either a group or user key, just identifies where pushover needs to send the message.
Userkey string
}
func NewPushoverNotifier() *PushoverNotifier {
return &PushoverNotifier{
genericHTTPNotifier: genericHTTPNotifier{
config: NewDefaultSlackConfig(),
closed: false,
},
}
}
func NewPushoverNotifierConfig(config *PushoverConfig) (*PushoverNotifier, error) {
n := NewPushoverNotifier()
return n, n.Configure(config)
}
func NewPushoverNotifierConfigMust(config *PushoverConfig) *PushoverNotifier {
n := NewPushoverNotifier()
if e := n.Configure(config); e != nil {
panic(e)
}
return n
}
func NewDefaultPushoverConfig() *PushoverConfig {
return &PushoverConfig{}
}
func (p *PushoverNotifier) SendMessage(msg *Message) error {
return p.sendMessageInternal(msg, p.generateRequest, p.parseResponse, p.validateMessage)
}
func (p *PushoverNotifier) validateMessage(msg *Message) error {
if msg.GetMessage() == "" {
return errors.New("pushover: message body is required for notification")
}
return nil
}
func (p *PushoverNotifier) generateRequest(msg *Message) (*http.Request, error) {
req, e := http.NewRequest("POST", pushoverEndpoint, bytes.NewReader([]byte{}))
if e != nil {
return nil, e
}
params := req.URL.Query()
params.Add("token", p.config.GetData()["token"].(string))
params.Add("user", p.config.GetData()["user"].(string))
params.Add("message", msg.GetMessage())
params.Add("title", msg.GetTitle())
if msg.url != nil {
params.Add("url", msg.url.String())
}
params.Add("timestamp", strconv.Itoa(int(msg.timestamp)))
parsedQuery := params.Encode()
req.URL.RawQuery = parsedQuery
return req, nil
}
func (p *PushoverNotifier) parseResponse(resp *http.Response) error {
if resp.StatusCode != 200 {
return errors.New("pushover: unable to send message request successfully")
}
return nil
}
func (p *PushoverConfig) Validate() []error {
return nil
}
func (p *PushoverConfig) GetData() map[string]interface{} {
return map[string]interface{}{
"token": p.APIKey,
"user": p.Userkey,
}
}