2017-12-07 02:00:09 -05:00
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2022-11-27 13:20:29 -05:00
|
|
|
// SPDX-License-Identifier: MIT
|
2017-12-07 02:00:09 -05:00
|
|
|
|
|
|
|
package utils
|
|
|
|
|
|
|
|
import (
|
2020-02-22 08:08:48 -05:00
|
|
|
"html"
|
2020-08-11 16:05:34 -04:00
|
|
|
"net/url"
|
2017-12-07 02:00:09 -05:00
|
|
|
"strings"
|
2020-08-11 16:05:34 -04:00
|
|
|
|
|
|
|
"code.gitea.io/gitea/modules/setting"
|
2017-12-07 02:00:09 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
// RemoveUsernameParameterSuffix returns the username parameter without the (fullname) suffix - leaving just the username
|
|
|
|
func RemoveUsernameParameterSuffix(name string) string {
|
|
|
|
if index := strings.Index(name, " ("); index >= 0 {
|
|
|
|
name = name[:index]
|
|
|
|
}
|
|
|
|
return name
|
|
|
|
}
|
2018-09-10 10:31:08 -04:00
|
|
|
|
2020-02-22 08:08:48 -05:00
|
|
|
// SanitizeFlashErrorString will sanitize a flash error string
|
|
|
|
func SanitizeFlashErrorString(x string) string {
|
2020-10-11 16:27:20 -04:00
|
|
|
return strings.ReplaceAll(html.EscapeString(x), "\n", "<br>")
|
2020-02-22 08:08:48 -05:00
|
|
|
}
|
2020-08-11 16:05:34 -04: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
|
|
|
|
}
|