mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
feca1b1780
This moves the IsGIT and IsURL functions out of the generic `utils` package and into their own `urlutil` pkg. Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
30 lines
676 B
Go
30 lines
676 B
Go
package urlutil
|
|
|
|
import "strings"
|
|
|
|
var (
|
|
validPrefixes = []string{
|
|
"git://",
|
|
"github.com/",
|
|
"git@",
|
|
}
|
|
)
|
|
|
|
// IsGitURL returns true if the provided str is a git repository URL.
|
|
func IsGitURL(str string) bool {
|
|
if IsURL(str) && strings.HasSuffix(str, ".git") {
|
|
return true
|
|
}
|
|
for _, prefix := range validPrefixes {
|
|
if strings.HasPrefix(str, prefix) {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
// IsGitTransport returns true if the provided str is a git transport by inspecting
|
|
// the prefix of the string for known protocols used in git.
|
|
func IsGitTransport(str string) bool {
|
|
return IsURL(str) || strings.HasPrefix(str, "git://") || strings.HasPrefix(str, "git@")
|
|
}
|