mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 08:30:25 +08:00 
			
		
		
		
	Add RemoteAddress to mirrors (#26952)
				
					
				
			This PR adds a new field `RemoteAddress` to both mirror types which contains the sanitized remote address for easier (database) access to that information. Will be used in the audit PR if merged.
This commit is contained in:
		@@ -191,12 +191,8 @@ func (repo *Repository) SanitizedOriginalURL() string {
 | 
			
		||||
	if repo.OriginalURL == "" {
 | 
			
		||||
		return ""
 | 
			
		||||
	}
 | 
			
		||||
	u, err := url.Parse(repo.OriginalURL)
 | 
			
		||||
	if err != nil {
 | 
			
		||||
		return ""
 | 
			
		||||
	}
 | 
			
		||||
	u.User = nil
 | 
			
		||||
	return u.String()
 | 
			
		||||
	u, _ := util.SanitizeURL(repo.OriginalURL)
 | 
			
		||||
	return u
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
// text representations to be returned in SizeDetail.Name
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user