diff options
author | Jeremy Stribling <strib@alum.mit.edu> | 2019-02-08 11:28:24 -0800 |
---|---|---|
committer | Jeremy Stribling <strib@alum.mit.edu> | 2019-02-11 15:13:11 -0800 |
commit | f56336220f6ac9b5647980953fe6df8bb53ae01e (patch) | |
tree | 87032fe128e9a0128ff1c32656ccd8c809c2cd0b /internal | |
parent | efe6c8be74a942c902f4812146ff016827ad9626 (diff) | |
download | go-git-f56336220f6ac9b5647980953fe6df8bb53ae01e.tar.gz |
config: add a way to see if a "remote" URL is local or not
This factors out some URL-parsing code from the transport layer so it
can be used by config as well.
Issue: #909
Signed-off-by: Jeremy Stribling <strib@alum.mit.edu>
Diffstat (limited to 'internal')
-rw-r--r-- | internal/url/url.go | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/internal/url/url.go b/internal/url/url.go new file mode 100644 index 0000000..0f0d709 --- /dev/null +++ b/internal/url/url.go @@ -0,0 +1,37 @@ +package url + +import ( + "regexp" +) + +var ( + isSchemeRegExp = regexp.MustCompile(`^[^:]+://`) + scpLikeUrlRegExp = regexp.MustCompile(`^(?:(?P<user>[^@]+)@)?(?P<host>[^:\s]+):(?:(?P<port>[0-9]{1,5})/)?(?P<path>[^\\].*)$`) +) + +// MatchesScheme returns true if the given string matches a URL-like +// format scheme. +func MatchesScheme(url string) bool { + return isSchemeRegExp.MatchString(url) +} + +// MatchesScpLike returns true if the given string matches an SCP-like +// format scheme. +func MatchesScpLike(url string) bool { + return scpLikeUrlRegExp.MatchString(url) +} + +// FindScpLikeComponents returns the user, host, port and path of the +// given SCP-like URL. +func FindScpLikeComponents(url string) (user, host, port, path string) { + m := scpLikeUrlRegExp.FindStringSubmatch(url) + return m[1], m[2], m[3], m[4] +} + +// IsLocalEndpoint returns true if the given URL string specifies a +// local file endpoint. For example, on a Linux machine, +// `/home/user/src/go-git` would match as a local endpoint, but +// `https://github.com/src-d/go-git` would not. +func IsLocalEndpoint(url string) bool { + return !MatchesScheme(url) && !MatchesScpLike(url) +} |