Skip to content
This repository was archived by the owner on Feb 23, 2023. It is now read-only.

Commit db2c4ef

Browse files
committed
feat: webhook test
1 parent 4f18813 commit db2c4ef

File tree

3 files changed

+44
-0
lines changed

3 files changed

+44
-0
lines changed

main.go

+1
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ func main() {
2727
http.HandleFunc("/save", web.BasicAuth(web.Save))
2828
http.HandleFunc("/logs", web.BasicAuth(web.Logs))
2929
http.HandleFunc("/upload", web.BasicAuth(web.Upload))
30+
http.HandleFunc("/webhookTest", web.BasicAuth(web.WebhookTest))
3031

3132
// 运行
3233
go web.Run()

web/webhookTest.go

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
package web
2+
3+
import (
4+
"backup-db/entity"
5+
"log"
6+
"net/http"
7+
"strings"
8+
)
9+
10+
// WebhookTest 测试webhook
11+
func WebhookTest(writer http.ResponseWriter, request *http.Request) {
12+
url := strings.TrimSpace(request.FormValue("URL"))
13+
requestBody := strings.TrimSpace(request.FormValue("RequestBody"))
14+
if url != "" {
15+
wb := entity.Webhook{WebhookURL: url, WebhookRequestBody: requestBody}
16+
wb.ExecWebhook(entity.BackupResult{ProjectName: "模拟测试", FileName: "2021-11-11_01_01.sql", FileSize: "100 MB", Result: "成功"})
17+
} else {
18+
log.Println("请输入Webhook的URL")
19+
}
20+
21+
}

web/writing.html

+22
Original file line numberDiff line numberDiff line change
@@ -210,4 +210,26 @@ <h5 class="portlet__head">Webhook通知</h5>
210210
setInterval(getLogs, 5 * 1000)
211211
</script>
212212

213+
<script>
214+
$(function(){
215+
$("#webhookTestBtn").on("click", function(e) {
216+
e.preventDefault();
217+
$.ajax({
218+
method: "POST",
219+
url: "/webhookTest",
220+
data: {"URL": $("#WebhookURL").val(), "RequestBody": $("#WebhookRequestBody").val()},
221+
success: function() {
222+
$("#webhookTestBtn_help").text("提交模拟测试成功, 如修改记得保存配置")
223+
setTimeout(function(){
224+
$("#webhookTestBtn_help").text("")
225+
}, 5000)
226+
},
227+
error: function(jqXHR) {
228+
alert(jqXHR.statusText);
229+
}
230+
})
231+
})
232+
})
233+
</script>
234+
213235
</html>

0 commit comments

Comments
 (0)