summaryrefslogtreecommitdiffstats
path: root/model/utils.go
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2015-10-30 13:36:51 -0400
committerJoramWilander <jwawilander@gmail.com>2015-11-02 10:38:13 -0500
commit1f3423796eee06a126d3cab7c276e2d0f169b869 (patch)
tree06b8617093b32c0c85347a170fe3ebb18f5b992a /model/utils.go
parent9d34e95045e5e0ff1281fd1eb2e5b20b7bf6ac8f (diff)
downloadchat-1f3423796eee06a126d3cab7c276e2d0f169b869.tar.gz
chat-1f3423796eee06a126d3cab7c276e2d0f169b869.tar.bz2
chat-1f3423796eee06a126d3cab7c276e2d0f169b869.zip
Validate callback urls on the server and add help text to outgoing webhooks
Diffstat (limited to 'model/utils.go')
-rw-r--r--model/utils.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/model/utils.go b/model/utils.go
index bb0669df7..681ade870 100644
--- a/model/utils.go
+++ b/model/utils.go
@@ -11,6 +11,7 @@ import (
"fmt"
"io"
"net/mail"
+ "net/url"
"regexp"
"strings"
"time"
@@ -301,3 +302,15 @@ var UrlRegex = regexp.MustCompile(`^((?:[a-z]+:\/\/)?(?:(?:[a-z0-9\-]+\.)+(?:[a-
var PartialUrlRegex = regexp.MustCompile(`/([A-Za-z0-9]{26})/([A-Za-z0-9]{26})/((?:[A-Za-z0-9]{26})?.+(?:\.[A-Za-z0-9]{3,})?)`)
var SplitRunes = map[rune]bool{',': true, ' ': true, '.': true, '!': true, '?': true, ':': true, ';': true, '\n': true, '<': true, '>': true, '(': true, ')': true, '{': true, '}': true, '[': true, ']': true, '+': true, '/': true, '\\': true}
+
+func IsValidHttpUrl(rawUrl string) bool {
+ if strings.Index(rawUrl, "http://") != 0 && strings.Index(rawUrl, "https://") != 0 {
+ return false
+ }
+
+ if _, err := url.ParseRequestURI(rawUrl); err != nil {
+ return false
+ }
+
+ return true
+}