2020-04-01 03:22:24 +00:00
|
|
|
// 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.
|
|
|
|
|
2018-09-03 06:43:00 +00:00
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
protocolRe = regexp.MustCompile("^[a-zA-Z_+-]+://")
|
|
|
|
)
|
|
|
|
|
2019-04-25 17:06:53 +00:00
|
|
|
// URLParser represents a git URL parser
|
2018-09-03 06:43:00 +00:00
|
|
|
type URLParser struct {
|
|
|
|
}
|
|
|
|
|
2019-04-25 17:06:53 +00:00
|
|
|
// Parse parses the git URL
|
2018-09-03 06:43:00 +00:00
|
|
|
func (p *URLParser) Parse(rawURL string) (u *url.URL, err error) {
|
|
|
|
if !protocolRe.MatchString(rawURL) &&
|
|
|
|
strings.Contains(rawURL, ":") &&
|
|
|
|
// not a Windows path
|
|
|
|
!strings.Contains(rawURL, "\\") {
|
|
|
|
rawURL = "ssh://" + strings.Replace(rawURL, ":", "/", 1)
|
|
|
|
}
|
|
|
|
|
|
|
|
u, err = url.Parse(rawURL)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if u.Scheme == "git+ssh" {
|
|
|
|
u.Scheme = "ssh"
|
|
|
|
}
|
|
|
|
|
|
|
|
if strings.HasPrefix(u.Path, "//") {
|
|
|
|
u.Path = strings.TrimPrefix(u.Path, "/")
|
|
|
|
}
|
|
|
|
|
2020-04-19 03:09:03 +00:00
|
|
|
// .git suffix is optional and breaks normalization
|
|
|
|
if strings.HasSuffix(u.Path, ".git") {
|
|
|
|
u.Path = strings.TrimSuffix(u.Path, ".git")
|
|
|
|
}
|
|
|
|
|
2018-09-03 06:43:00 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-25 17:06:53 +00:00
|
|
|
// ParseURL parses URL string and return URL struct
|
2018-09-03 06:43:00 +00:00
|
|
|
func ParseURL(rawURL string) (u *url.URL, err error) {
|
|
|
|
p := &URLParser{}
|
|
|
|
return p.Parse(rawURL)
|
|
|
|
}
|