diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2020-01-07 14:32:50 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2020-01-07 14:32:50 +0100 |
| commit | 7042566e4bdaaec059aea4f53eeefc4f362648cd (patch) | |
| tree | ceb86810a9148761db939f2ebccd7103319278a5 /pkg/email/parser.go | |
| parent | 36860d8b256045601248ecfc0323ac838779e72b (diff) | |
pkg/email: accept #syz- prefix for commands
Some users spell the command as "#syz-dup:".
Support this and few more variations.
Diffstat (limited to 'pkg/email/parser.go')
| -rw-r--r-- | pkg/email/parser.go | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/pkg/email/parser.go b/pkg/email/parser.go index 9c37331f7..589598ba2 100644 --- a/pkg/email/parser.go +++ b/pkg/email/parser.go @@ -47,8 +47,6 @@ const ( cmdTest5 ) -const commandPrefix = "#syz " - var groupsLinkRe = regexp.MustCompile("\nTo view this discussion on the web visit" + " (https://groups\\.google\\.com/.*?)\\.(?:\r)?\n") @@ -192,16 +190,25 @@ func CanonicalEmail(email string) string { return strings.ToLower(addr.Address) } +const commandPrefix = "#syz" + // extractCommand extracts command to syzbot from email body. // Commands are of the following form: // ^#syz cmd args... func extractCommand(body string) (cmd Command, str, args string) { - cmdPos := strings.Index("\n"+body, "\n"+commandPrefix) + nbody := "\n" + body + cmdPos := -1 + for _, delim := range []string{" ", "-", ":"} { + cmdPos = strings.Index(nbody, "\n"+commandPrefix+delim) + if cmdPos != -1 { + break + } + } if cmdPos == -1 { cmd = CmdNone return } - cmdPos += len(commandPrefix) + cmdPos += len(commandPrefix) + 1 for cmdPos < len(body) && body[cmdPos] == ' ' { cmdPos++ } |
