forked from MexHigh/Gotify-Webhooks-Plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.go
130 lines (113 loc) · 2.86 KB
/
main.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
package main
import (
"encoding/json"
"fmt"
"io"
"net/url"
"github.com/gin-gonic/gin"
"github.com/gotify/plugin-api"
)
const routeName = "webhook"
const (
PayloadTypeUnknown = iota
PayloadTypeJSON
)
// GetGotifyPluginInfo returns gotify plugin info
func GetGotifyPluginInfo() plugin.Info {
return plugin.Info{
Name: "Webhooks",
Description: "Plugin that enables Gotify to receive webhooks",
ModulePath: "git.leon.wtf/leon/gotify-webhook-plugin",
Author: "Leon Schmidt <[email protected]>",
Website: "https://leon-schmidt.dev",
}
}
// Plugin is plugin instance
type Plugin struct {
userCtx plugin.UserContext
msgHandler plugin.MessageHandler
basePath string
}
// Enable implements plugin.Plugin
func (p *Plugin) Enable() error {
return nil
}
// Disable implements plugin.Plugin
func (p *Plugin) Disable() error {
return nil
}
// GetDisplay implements plugin.Displayer
func (p *Plugin) GetDisplay(location *url.URL) string {
baseHost := ""
if location != nil {
baseHost = fmt.Sprintf("%s://%s", location.Scheme, location.Host)
}
return fmt.Sprintf("Use this URL to recieve webhooks: %s%s%s", baseHost, p.basePath, routeName)
}
// SetMessageHandler implements plugin.Messenger
func (p *Plugin) SetMessageHandler(h plugin.MessageHandler) {
// invoced during initialization
p.msgHandler = h
}
// RegisterWebhook implements plugin.Webhooker
func (p *Plugin) RegisterWebhook(basePath string, mux *gin.RouterGroup) {
p.basePath = basePath
webhookHandler := func(c *gin.Context) {
// read body
bytes, err := io.ReadAll(c.Request.Body)
if err != nil {
p.msgHandler.SendMessage(makeMarkdownMessage(
"Error reading request body",
err.Error(),
c.ClientIP(),
))
return
}
// try to parse json
payloadType := PayloadTypeUnknown
var data interface{}
err = json.Unmarshal(bytes, &data)
if err != nil {
payloadType = PayloadTypeUnknown
} else {
payloadType = PayloadTypeJSON
}
switch payloadType {
case PayloadTypeJSON:
// re-indent JSON
jsonStr, err := json.MarshalIndent(data, "", " ")
if err != nil {
p.msgHandler.SendMessage(makeMarkdownMessage(
"Error re-marshalling payload",
err.Error(),
c.ClientIP(),
))
return
}
p.msgHandler.SendMessage(makeMarkdownMessage(
"Recieved webhook",
string(jsonStr),
c.ClientIP(),
))
// TODO add more types?
case PayloadTypeUnknown:
// just send the string
p.msgHandler.SendMessage(makeMarkdownMessage(
"Recieved non-JSON webhook",
string(bytes),
c.ClientIP(),
))
}
}
mux.POST("/"+routeName, webhookHandler)
mux.PUT("/"+routeName, webhookHandler)
}
// NewGotifyPluginInstance creates a plugin instance for a user context.
func NewGotifyPluginInstance(ctx plugin.UserContext) plugin.Plugin {
return &Plugin{
userCtx: ctx,
}
}
func main() {
panic("this should be built as go plugin")
}