This repository was archived by the owner on May 8, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathplugin.go
171 lines (152 loc) · 3.04 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
package plugin
import (
"bytes"
"encoding/json"
"errors"
"fmt"
"io/ioutil"
"log"
"net/http"
"strings"
"github.com/appleboy/drone-facebook/template"
)
type (
// GitHub information.
GitHub struct {
Workflow string
Workspace string
Action string
EventName string
EventPath string
}
// Repo information
Repo struct {
FullName string
Namespace string
Name string
}
// Build information
Build struct {
Tag string
Event string
Number int
Commit string
RefSpec string
Branch string
Author string
Avatar string
Message string
Email string
Status string
Link string
Started float64
Finished float64
}
// Config for the plugin.
Config struct {
Url string
UserID string
Token string
Message []string
Drone bool
GitHub bool
}
// Payload struct
Payload struct {
Channel string `json:"channel"`
Text string `json:"text"`
Avatar string `json:"avatar"`
}
// Plugin values.
Plugin struct {
GitHub GitHub
Repo Repo
Build Build
Config Config
Payload Payload
}
)
func trimElement(keys []string) []string {
var newKeys []string
for _, value := range keys {
value = strings.Trim(value, " ")
if len(value) == 0 {
continue
}
newKeys = append(newKeys, value)
}
return newKeys
}
// Exec executes the plugin.
func (p *Plugin) Exec() error {
if p.Config.Url == "" || p.Config.UserID == "" || p.Config.Token == "" {
return errors.New("missing Rocket.Chat config")
}
var message []string
if len(p.Config.Message) > 0 {
message = p.Config.Message
} else {
message = p.Message()
}
message = trimElement(message)
for _, value := range message {
txt, err := template.RenderTrim(value, p)
if err != nil {
return err
}
err = p.SendMessage(txt)
if err != nil {
return err
}
}
return nil
}
func (p Plugin) Message() []string {
if p.Config.GitHub {
return []string{fmt.Sprintf("%s/%s triggered by %s (%s)",
p.Repo.FullName,
p.GitHub.Workflow,
p.Repo.Namespace,
p.GitHub.EventName,
)}
}
return []string{fmt.Sprintf("[%s] <%s> (%s)『%s』by %s",
p.Build.Status,
p.Build.Link,
p.Build.Branch,
p.Build.Message,
p.Build.Author,
)}
}
func (p *Plugin) SendMessage(msg string) error {
URL := fmt.Sprintf("%s/api/v1/chat.postMessage", p.Config.Url)
b := new(bytes.Buffer)
var payload = p.Payload
payload.Text = msg
if err := json.NewEncoder(b).Encode(payload); err != nil {
return err
}
client := &http.Client{}
req, err := http.NewRequest("POST", URL, b)
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Add("X-User-Id", p.Config.UserID)
req.Header.Add("X-Auth-Token", p.Config.Token)
resp, err := client.Do(req)
if err != nil {
return err
}
if resp.StatusCode != http.StatusOK {
body, err := ioutil.ReadAll(resp.Body)
if err != nil {
return err
}
log.Println("Rocket.Chat server error response")
log.Printf("Status: %s\n", resp.Status)
log.Fatalf("Body: %s\n", string(body))
}
defer resp.Body.Close()
return nil
}