Skip to content

Commit

Permalink
refactor(headers): support all types of line breaks (#1046)
Browse files Browse the repository at this point in the history
Now it only works properly if the line break is `\r\n`. Using the `splitLines` function solves this problem.

Rewritten the function `checkParseHeaders` and renamed it to `extractHeaders` for better readability.
  • Loading branch information
WaterLemons2k committed Mar 18, 2024
1 parent 23f39fb commit 4c11754
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 32 deletions.
35 changes: 22 additions & 13 deletions config/webhook.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ func ExecWebhook(domains *Domains, conf *Config) (v4Status updateStatusType, v6S
return
}

headers := checkParseHeaders(conf.WebhookHeaders)
headers := extractHeaders(conf.WebhookHeaders)
for key, value := range headers {
req.Header.Add(key, value)
}
Expand Down Expand Up @@ -144,19 +144,28 @@ func getDomainsStr(domains []*Domain) string {
return str
}

func checkParseHeaders(headerStr string) (headers map[string]string) {
headers = make(map[string]string)
headerArr := strings.Split(headerStr, "\r\n")
for _, headerStr := range headerArr {
headerStr = strings.TrimSpace(headerStr)
if headerStr != "" {
parts := strings.Split(headerStr, ":")
if len(parts) != 2 {
util.Log("Webhook Header不正确: %s", headerStr)
continue
}
headers[strings.TrimSpace(parts[0])] = strings.TrimSpace(parts[1])
// extractHeaders converts s into a map of headers.
//
// See also: https://github.com/appleboy/gorush/blob/v1.17.0/notify/feedback.go#L15
func extractHeaders(s string) map[string]string {
lines := util.SplitLines(s)
headers := make(map[string]string, len(lines))

for _, line := range lines {
line = strings.TrimSpace(line)
if line == "" {
continue
}

parts := strings.Split(line, ":")
if len(parts) != 2 {
util.Log("Webhook Header不正确: %s", line)
continue
}

k, v := strings.TrimSpace(parts[0]), strings.TrimSpace(parts[1])
headers[k] = v
}

return headers
}
21 changes: 13 additions & 8 deletions config/webhook_test.go
Original file line number Diff line number Diff line change
@@ -1,17 +1,22 @@
package config

import (
"fmt"
"reflect"
"testing"
)

// TestParseHeaderArr 测试 parseHeaderArr
func TestParseHeaderArr(t *testing.T) {
headers := "a : 1\r\nb:2\r\n"
expected := `map[a:1 b:2]`
parsedHeaders := checkParseHeaders(headers)
resultStr := fmt.Sprintf("%v", parsedHeaders)
if resultStr != expected {
t.Error("解析Header失败", resultStr)
func TestExtractHeaders(t *testing.T) {
input := `
a: foo
b: bar`
expected := map[string]string{
"a": "foo",
"b": "bar",
}

parsedHeaders := extractHeaders(input)
if !reflect.DeepEqual(parsedHeaders, expected) {
t.Errorf("Expected %v, got %v", expected, parsedHeaders)
}
}
9 changes: 9 additions & 0 deletions util/string.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,12 @@ func toHostname(url string) string {

return strings.Split(stripped, "/")[0]
}

// SplitLines splits a string into lines by '\r\n' or '\n'.
func SplitLines(s string) []string {
if strings.Contains(s, "\r\n") {
return strings.Split(s, "\r\n")
}

return strings.Split(s, "\n")
}
13 changes: 2 additions & 11 deletions web/save.go
Original file line number Diff line number Diff line change
Expand Up @@ -116,15 +116,15 @@ func checkAndSave(request *http.Request) string {
dnsConf.Ipv4.URL = strings.TrimSpace(v.Ipv4Url)
dnsConf.Ipv4.NetInterface = v.Ipv4NetInterface
dnsConf.Ipv4.Cmd = strings.TrimSpace(v.Ipv4Cmd)
dnsConf.Ipv4.Domains = splitLines(v.Ipv4Domains)
dnsConf.Ipv4.Domains = util.SplitLines(v.Ipv4Domains)

dnsConf.Ipv6.Enable = v.Ipv6Enable
dnsConf.Ipv6.GetType = v.Ipv6GetType
dnsConf.Ipv6.URL = strings.TrimSpace(v.Ipv6Url)
dnsConf.Ipv6.NetInterface = v.Ipv6NetInterface
dnsConf.Ipv6.Cmd = strings.TrimSpace(v.Ipv6Cmd)
dnsConf.Ipv6.Ipv6Reg = strings.TrimSpace(v.Ipv6Reg)
dnsConf.Ipv6.Domains = splitLines(v.Ipv6Domains)
dnsConf.Ipv6.Domains = util.SplitLines(v.Ipv6Domains)

if k < len(conf.DnsConf) {
c := &conf.DnsConf[k]
Expand Down Expand Up @@ -160,12 +160,3 @@ func checkAndSave(request *http.Request) string {
}
return "ok"
}

// splitLines splits a string into lines by '\r\n' or '\n'.
func splitLines(s string) []string {
if strings.Contains(s, "\r\n") {
return strings.Split(s, "\r\n")
}

return strings.Split(s, "\n")
}

0 comments on commit 4c11754

Please sign in to comment.