Sanitize credentials in mirror form (#9975)

This commit is contained in:
Lunny Xiao 2020-01-25 18:57:43 +08:00 committed by zeripath
parent 5b17bb8f3d
commit a67c06ce90
4 changed files with 37 additions and 1 deletions

View file

@ -197,6 +197,14 @@ type Repository struct {
UpdatedUnix timeutil.TimeStamp `xorm:"INDEX updated"`
}
// SanitizedOriginalURL returns a sanitized OriginalURL
func (repo *Repository) SanitizedOriginalURL() string {
if repo.OriginalURL == "" {
return ""
}
return util.SanitizeURLCredentials(repo.OriginalURL, false)
}
// ColorFormat returns a colored string to represent this repo
func (repo *Repository) ColorFormat(s fmt.State) {
var ownerName interface{}