23 lines
		
	
	
	
		
			630 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			630 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// 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
 | 
						|
}
 |