2017-12-07 08:00:09 +01:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 19:20:29 +01:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-12-07 08:00:09 +01:00
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2020-02-22 14:08:48 +01:00
|
|
|
"html"
|
2020-08-11 22:05:34 +02:00
|
|
|
"net/url"
|
2017-12-07 08:00:09 +01:00
|
|
|
"strings"
|
2020-08-11 22:05:34 +02:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-12-07 08:00:09 +01:00
|
|
|
)
|
|
|
|
|
2020-02-22 14:08:48 +01:00
|
|
|
// SanitizeFlashErrorString will sanitize a flash error string
|
|
|
|
func SanitizeFlashErrorString(x string) string {
|
2020-10-11 22:27:20 +02:00
|
|
|
return strings.ReplaceAll(html.EscapeString(x), "\n", "<br>")
|
2020-02-22 14:08:48 +01:00
|
|
|
}
|
2020-08-11 22:05:34 +02:00
|
|
|
|
|
|
|
// IsExternalURL checks if rawURL points to an external URL like http://example.com
|
|
|
|
func IsExternalURL(rawURL string) bool {
|
|
|
|
parsed, err := url.Parse(rawURL)
|
|
|
|
if err != nil {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
appURL, _ := url.Parse(setting.AppURL)
|
|
|
|
if len(parsed.Host) != 0 && strings.Replace(parsed.Host, "www.", "", 1) != strings.Replace(appURL.Host, "www.", "", 1) {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|