-
Notifications
You must be signed in to change notification settings - Fork 2
/
plugin.go
415 lines (353 loc) · 10.3 KB
/
plugin.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
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
package main
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
"log/slog"
"net/http"
"net/url"
"strings"
"sync"
"text/template"
"time"
"github.com/gorilla/websocket"
"github.com/gotify/plugin-api"
)
// GetGotifyPluginInfo returns gotify plugin info.
func GetGotifyPluginInfo() plugin.Info {
return plugin.Info{
ModulePath: "github.com/wuxs/gotify-webhook",
Author: "wuxs",
Version: "0.1.0",
Description: "forward message to others webhook server",
Name: "WebHook",
}
}
type MessageExternal struct {
ID uint `json:"id"`
ApplicationID uint `json:"appid"`
Message string `form:"message" query:"message" json:"message" binding:"required"`
Title string `form:"title" query:"title" json:"title"`
Priority int `form:"priority" query:"priority" json:"priority"`
Extras map[string]interface{} `form:"-" query:"-" json:"extras,omitempty"`
Date time.Time `json:"date"`
}
// EchoPlugin is the gotify plugin instance.
type MultiNotifierPlugin struct {
msgHandler plugin.MessageHandler
storageHandler plugin.StorageHandler
config *Config
cancel context.CancelFunc
}
// Enable enables the plugin.
func (p *MultiNotifierPlugin) Enable() error {
if len(p.config.HostServer) < 1 {
return errors.New("please enter the correct web server")
}
ctx, cancel := context.WithCancel(context.Background())
p.cancel = cancel
serverUrl := p.config.HostServer + "/stream"
go func() {
for {
select {
case <-ctx.Done():
slog.Info("Plugin stopped")
return
default:
err := p.receiveMessages(ctx, serverUrl)
if err != nil {
if errors.Is(err, context.Canceled) {
slog.Info("ReceiveMessages canceled")
return
}
slog.Error("Read message error, retrying after 1s", slog.Any("err", err))
time.Sleep(time.Second)
} else {
return
}
}
}
}()
slog.Info("Webhook plugin enabled", slog.Any("config", GetGotifyPluginInfo()))
return nil
}
// Disable disables the plugin.
func (p *MultiNotifierPlugin) Disable() error {
if p.cancel != nil {
p.cancel()
}
slog.Info("Webhook plugin disbled", slog.Any("config", GetGotifyPluginInfo()))
return nil
}
// SetStorageHandler implements plugin.Storager
func (p *MultiNotifierPlugin) SetStorageHandler(h plugin.StorageHandler) {
p.storageHandler = h
}
// SetMessageHandler implements plugin.Messenger.
func (p *MultiNotifierPlugin) SetMessageHandler(h plugin.MessageHandler) {
p.msgHandler = h
}
// Storage defines the plugin storage scheme
type Storage struct {
CalledTimes int `json:"called_times"`
}
type WebHook struct {
Url string `yaml:"url"`
Method string `yaml:"method"`
Body string `yaml:"body"`
Header map[string]string `yaml:"header"`
Apps []uint `yaml:"apps"`
}
// Config defines the plugin config scheme
type Config struct {
ClientToken string `yaml:"client_token" validate:"required"`
HostServer string `yaml:"host_server" validate:"required"`
WebHooks []*WebHook `yaml:"web_hooks"`
}
// DefaultConfig implements plugin.Configurer
func (p *MultiNotifierPlugin) DefaultConfig() interface{} {
c := &Config{
ClientToken: "CrMo3UaAQG1H37G",
HostServer: "ws://localhost",
}
return c
}
// ValidateAndSetConfig implements plugin.Configurer
func (p *MultiNotifierPlugin) ValidateAndSetConfig(config interface{}) error {
p.config = config.(*Config)
validWebhooks := make([]*WebHook, 0)
for _, webhook := range p.config.WebHooks {
if webhook.Method == "" {
webhook.Method = "POST"
}
parsedURL, err := url.Parse(webhook.Url)
if err != nil || parsedURL.Scheme == "" || parsedURL.Host == "" {
return fmt.Errorf("invalid webhook URL: %s", webhook.Url)
}
if _, exists := webhook.Header["Content-Type"]; !exists {
if webhook.Header == nil {
webhook.Header = make(map[string]string)
}
webhook.Header["Content-Type"] = "text/plain"
}
validWebhooks = append(validWebhooks, webhook)
}
p.config.WebHooks = validWebhooks
return nil
}
// GetDisplay implements plugin.Displayer.
func (p *MultiNotifierPlugin) GetDisplay(location *url.URL) string {
message := `
Guide:
1. Create a new client and put its token into the client_token option.
2. Update the host_server option if it is different with the default 'ws://localhost'.
3. Configurate webhooks.
Webhook example:
web_hooks:
- url: http://example.com/api/messages
body: "{{.title}}\n\n{{.message}}"
- url: http://192.168.1.2:10201/api/sendTextMsg
apps:
- 1
method: POST
header:
Content-Type: application/json
body: "{\"wxid\":\"xxxxxxxx\",\"msg\":\"{{.title}}\n{{.message}}\"}"
Note: Re-enable the plugin after making changes.
`
return message
}
func (p *MultiNotifierPlugin) receiveMessages(ctx context.Context, serverUrl string) (err error) {
header := http.Header{}
header.Add("Authorization", "Bearer "+p.config.ClientToken)
conn, _, err := websocket.DefaultDialer.Dial(serverUrl, header)
if err != nil {
return fmt.Errorf("dial error: %w", err)
}
defer conn.Close()
slog.Info("Connected to Websocket server", slog.String("url", serverUrl))
readErrCh := make(chan error, 1)
go func() {
defer close(readErrCh)
for {
select {
case <-ctx.Done():
readErrCh <- ctx.Err()
return
default:
_, message, err := conn.ReadMessage()
if err != nil {
readErrCh <- fmt.Errorf("read message error: %w", err)
return
}
msg := &MessageExternal{}
if err := json.Unmarshal(message, msg); err != nil {
slog.Warn("Unsupported message format", slog.Any("message", string(message)))
continue
}
errs := p.sendMessage(ctx, msg, p.config.WebHooks)
if len(errs) > 0 {
for _, err := range errs {
slog.Error("Failed to send message", slog.Any("error", err))
}
}
}
}
}()
ticker := time.NewTicker(time.Second)
defer ticker.Stop()
for {
select {
case <-ctx.Done():
slog.Info("Context cancelled, closing WebSocket connection")
err := conn.WriteMessage(websocket.CloseMessage, websocket.FormatCloseMessage(websocket.CloseNormalClosure, ""))
if err != nil {
return fmt.Errorf("write close message error: %w", err)
}
return nil
case err := <-readErrCh:
return err
case t := <-ticker.C:
err := conn.WriteMessage(websocket.TextMessage, []byte(t.String()))
if err != nil {
return fmt.Errorf("write heartbeat message error: %w", err)
}
ticker.Reset(time.Second)
}
}
}
func (p *MultiNotifierPlugin) sendMessage(ctx context.Context, msg *MessageExternal, webhooks []*WebHook) (errors []error) {
var (
mu sync.Mutex
wg sync.WaitGroup
)
for _, webhook := range webhooks {
webhook := webhook // Create local variable for closure, for golang 1.22 and older versions.
wg.Add(1)
go func() {
defer wg.Done()
if ctx.Err() != nil {
mu.Lock()
errors = append(errors, ctx.Err())
mu.Unlock()
return
}
// Only messages from white-listed applications can be forwarded.
if len(webhook.Apps) > 0 {
appAllowed := false
for _, appID := range webhook.Apps {
if appID == msg.ApplicationID {
appAllowed = true
break
}
}
if !appAllowed {
return
}
}
// Process the webhook body
body, err := p.processWebhookBody(webhook.Body, msg)
if err != nil {
err = fmt.Errorf("failed to process webhook body for %s: %w", webhook.Url, err)
mu.Lock()
errors = append(errors, err)
mu.Unlock()
return
}
// Send the HTTP request
err = p.sendHTTPRequest(ctx, webhook, body)
if err != nil {
err = fmt.Errorf("failed to send webhook request to %s: %w", webhook.Url, err)
mu.Lock()
errors = append(errors, err)
mu.Unlock()
return
}
}()
}
wg.Wait()
return errors
}
func (p *MultiNotifierPlugin) processWebhookBody(body string, msg *MessageExternal) (string, error) {
var jsonBody map[string]interface{}
isJSON := json.Unmarshal([]byte(body), &jsonBody) == nil
if isJSON {
// Process JSON structured template
err := processJSONRecursive(jsonBody, msg)
if err != nil {
return "", fmt.Errorf("failed to process JSON body: %w", err)
}
newBody, err := json.Marshal(jsonBody)
if err != nil {
return "", fmt.Errorf("failed to marshal body: %w", err)
}
return string(newBody), nil
} else {
// Process plain text template
return processTemplateString(body, msg)
}
}
func (p *MultiNotifierPlugin) sendHTTPRequest(ctx context.Context, webhook *WebHook, body string) error {
req, err := http.NewRequestWithContext(ctx, webhook.Method, webhook.Url, strings.NewReader(body))
if err != nil {
return fmt.Errorf("failed to create request: %w", err)
}
for k, v := range webhook.Header {
req.Header.Add(k, v)
}
res, err := http.DefaultClient.Do(req)
if err != nil {
return fmt.Errorf("failed to send request: %w", err)
}
defer res.Body.Close()
if res.StatusCode < 200 || res.StatusCode >= 300 {
return fmt.Errorf("unexpected status code: %d", res.StatusCode)
}
return nil
}
func processJSONRecursive(m map[string]interface{}, msg *MessageExternal) (err error) {
for k, v := range m {
switch vv := v.(type) {
case string:
m[k], err = processTemplateString(vv, msg)
case map[string]interface{}:
err = processJSONRecursive(vv, msg)
case []interface{}:
for i, item := range vv {
if itemString, ok := item.(string); ok {
vv[i], err = processTemplateString(itemString, msg)
} else if itemMap, ok := item.(map[string]interface{}); ok {
err = processJSONRecursive(itemMap, msg)
}
}
}
if err != nil {
return err
}
}
return nil
}
func processTemplateString(s string, msg *MessageExternal) (string, error) {
tmpl, err := template.New("").Parse(s)
if err != nil {
return "", fmt.Errorf("failed to parse template: %w", err)
}
var buf bytes.Buffer
err = tmpl.Execute(&buf, map[string]interface{}{
"title": msg.Title,
"message": msg.Message,
})
if err != nil {
return "", fmt.Errorf("failed to execute template: %w", err)
}
return buf.String(), nil
}
// NewGotifyPluginInstance creates a plugin instance for a user context.
func NewGotifyPluginInstance(ctx plugin.UserContext) plugin.Plugin {
return &MultiNotifierPlugin{}
}
func main() {
panic("This should be built as a Go plugin.")
}