-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathwebhook.go
146 lines (127 loc) · 4.45 KB
/
webhook.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
package nocd
import (
"crypto/tls"
"encoding/json"
"errors"
"fmt"
"net/http"
"net/url"
"strings"
"time"
)
const (
_ = iota
// WebhookRequestTypeJSON json
WebhookRequestTypeJSON
// WebhookRequestTypeForm form
WebhookRequestTypeForm
)
const (
_ = iota
// WebhookRequestMethodGET ..
WebhookRequestMethodGET
// WebhookRequestMethodPOST ..
WebhookRequestMethodPOST
)
// Webhook ..
type Webhook struct {
ID uint `form:"id" gorm:"primary_key" json:"id,omitempty"`
PipelineID uint `form:"pipeline_id" binding:"required,min=1" json:"pipeline_id,omitempty"`
URL string `form:"url" binding:"url" json:"url,omitempty"`
RequestMethod int `form:"request_method" json:"request_method,omitempty"`
RequestType int `form:"request_type" json:"request_type,omitempty"`
RequestBody string `form:"request_body" gorm:"type:longtext" json:"request_body,omitempty"`
VerifySSL *bool `form:"verify_ssl" json:"verify_ssl,omitempty"`
PushSuccess *bool `form:"push_success" json:"push_success,omitempty"`
Enable *bool `form:"enable" json:"enable,omitempty"`
}
// WebhookService ..
type WebhookService interface {
Create(w *Webhook) error
PipelineWebhooks(p *Pipeline) []Webhook
}
func (n *Webhook) reqURL(status string, pipeline *Pipeline, pipelog *PipeLog) string {
return replaceParamsInString(n.URL, status, pipeline, pipelog)
}
func (n *Webhook) reqBody(status string, pipeline *Pipeline, pipelog *PipeLog) (string, error) {
if n.RequestMethod == WebhookRequestMethodGET {
return "", nil
}
switch n.RequestType {
case WebhookRequestTypeJSON:
return replaceParamsInJSON(n.RequestBody, status, pipeline, pipelog), nil
case WebhookRequestTypeForm:
var data map[string]string
if err := json.Unmarshal([]byte(n.RequestBody), &data); err != nil {
return "", err
}
params := url.Values{}
for k, v := range data {
params.Add(k, replaceParamsInString(v, status, pipeline, pipelog))
}
return params.Encode(), nil
}
return "", errors.New("不支持的请求类型")
}
func (n *Webhook) reqContentType() string {
if n.RequestMethod == WebhookRequestMethodGET {
return ""
}
if n.RequestType == WebhookRequestTypeForm {
return "application/x-www-form-urlencoded"
}
return "application/json"
}
func (n *Webhook) Send(status string, pipeline *Pipeline, pipelog *PipeLog) error {
var verifySSL bool
if n.VerifySSL != nil && *n.VerifySSL {
verifySSL = true
}
transCfg := &http.Transport{
TLSClientConfig: &tls.Config{InsecureSkipVerify: verifySSL},
}
client := &http.Client{Transport: transCfg, Timeout: time.Minute * 10}
reqBody, err := n.reqBody(status, pipeline, pipelog)
var resp *http.Response
if err == nil {
if n.RequestMethod == WebhookRequestMethodGET {
resp, err = client.Get(n.reqURL(status, pipeline, pipelog))
} else {
resp, err = client.Post(n.reqURL(status, pipeline, pipelog), n.reqContentType(), strings.NewReader(reqBody))
}
}
if err == nil && (resp.StatusCode < 200 || resp.StatusCode > 299) {
err = fmt.Errorf("%d %s", resp.StatusCode, resp.Status)
}
// defer resp.Body.Close()
// body, _ := ioutil.ReadAll(resp.Body)
return err
}
func replaceParamsInString(str string, status string, pipeline *Pipeline, pipelog *PipeLog) string {
str = strings.ReplaceAll(str, "#Pusher#", pipelog.Pusher)
str = strings.ReplaceAll(str, "#Log#", pipelog.Log)
str = strings.ReplaceAll(str, "#Status#", status)
str = strings.ReplaceAll(str, "#PipelineName#", pipeline.Name)
str = strings.ReplaceAll(str, "#PipelineID#", fmt.Sprintf("%d", pipeline.ID))
str = strings.ReplaceAll(str, "#StartedAt#", pipelog.StartedAt.String())
str = strings.ReplaceAll(str, "#StoppedAt#", pipelog.StoppedAt.String())
return str
}
func replaceParamsInJSON(str string, status string, pipeline *Pipeline, pipelog *PipeLog) string {
str = strings.ReplaceAll(str, "#Pusher#", jsonEscape(pipelog.Pusher))
str = strings.ReplaceAll(str, "#Log#", jsonEscape(pipelog.Log))
str = strings.ReplaceAll(str, "#Status#", jsonEscape(status))
str = strings.ReplaceAll(str, "#PipelineName#", jsonEscape(pipeline.Name))
str = strings.ReplaceAll(str, "#PipelineID#", jsonEscape(pipeline.ID))
str = strings.ReplaceAll(str, "#StartedAt#", jsonEscape(pipelog.StartedAt.String()))
str = strings.ReplaceAll(str, "#StoppedAt#", jsonEscape(pipelog.StoppedAt.String()))
return str
}
func jsonEscape(raw interface{}) string {
b, _ := json.Marshal(raw)
strb := string(b)
if strings.HasPrefix(strb, "\"") {
return strb[1 : len(strb)-1]
}
return strb
}