You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							23 lines
						
					
					
						
							630 B
						
					
					
				
			
		
		
	
	
							23 lines
						
					
					
						
							630 B
						
					
					
				// Copyright 2019 The Gitea Authors. All rights reserved.
 | 
						|
// Use of this source code is governed by a MIT-style
 | 
						|
// license that can be found in the LICENSE file.package repofiles
 | 
						|
 | 
						|
package repofiles
 | 
						|
 | 
						|
import (
 | 
						|
	"path"
 | 
						|
	"strings"
 | 
						|
)
 | 
						|
 | 
						|
// CleanUploadFileName Trims a filename and returns empty string if it is a .git directory
 | 
						|
func CleanUploadFileName(name string) string {
 | 
						|
	// Rebase the filename
 | 
						|
	name = strings.Trim(path.Clean("/"+name), " /")
 | 
						|
	// Git disallows any filenames to have a .git directory in them.
 | 
						|
	for _, part := range strings.Split(name, "/") {
 | 
						|
		if strings.ToLower(part) == ".git" {
 | 
						|
			return ""
 | 
						|
		}
 | 
						|
	}
 | 
						|
	return name
 | 
						|
}
 | 
						|
 |