1
mirror of https://gitlab.com/commento/commento.git synced 2025-06-29 22:56:37 -04:00

config.go: add http prefix to ORIGIN and CDN_PREFIX

This commit is contained in:
Adhityaa Chandrasekar
2018-08-12 22:38:48 +05:30
parent 89a81ece19
commit 3205766248
2 changed files with 11 additions and 0 deletions

View File

@ -2,6 +2,7 @@ package main
import (
"regexp"
"strings"
)
var prePlusMatch = regexp.MustCompile(`([^@\+]*)\+?(.*)@.*`)
@ -43,3 +44,11 @@ func isHttpsUrl(in string) bool {
// solves this. If this function returns false, prefix with "http://"
return len(httpsUrl.FindAllString(in, -1)) != 0
}
func addHttpIfAbsent(in string) string {
if !strings.HasPrefix(in, "http://") && !strings.HasPrefix(in, "https://") {
return "http://" + in
}
return in
}