2020-03-31 23:22:24 -04: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 02:43:00 -04:00
|
|
|
package git
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/url"
|
|
|
|
"regexp"
|
|
|
|
"strings"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
protocolRe = regexp.MustCompile("^[a-zA-Z_+-]+://")
|
|
|
|
)
|
|
|
|
|
2019-04-25 13:06:53 -04:00
|
|
|
// URLParser represents a git URL parser
|
2018-09-03 02:43:00 -04:00
|
|
|
type URLParser struct {
|
|
|
|
}
|
|
|
|
|
2019-04-25 13:06:53 -04:00
|
|
|
// Parse parses the git URL
|
2018-09-03 02:43:00 -04:00
|
|
|
func (p *URLParser) Parse(rawURL string) (u *url.URL, err error) {
|
2021-09-06 06:52:34 -04:00
|
|
|
rawURL = strings.TrimSpace(rawURL)
|
|
|
|
|
2021-10-18 08:09:27 -04:00
|
|
|
if !protocolRe.MatchString(rawURL) {
|
|
|
|
// convert the weird git ssh url format to a canonical url:
|
|
|
|
// git@gitea.com:gitea/tea -> ssh://git@gitea.com/gitea/tea
|
|
|
|
if strings.Contains(rawURL, ":") &&
|
|
|
|
// not a Windows path
|
|
|
|
!strings.Contains(rawURL, "\\") {
|
|
|
|
rawURL = "ssh://" + strings.Replace(rawURL, ":", "/", 1)
|
|
|
|
} else if !strings.Contains(rawURL, "@") &&
|
|
|
|
strings.Count(rawURL, "/") == 2 {
|
|
|
|
// match cases like gitea.com/gitea/tea
|
|
|
|
rawURL = "https://" + rawURL
|
|
|
|
}
|
2018-09-03 02:43:00 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
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-18 23:09:03 -04:00
|
|
|
// .git suffix is optional and breaks normalization
|
|
|
|
if strings.HasSuffix(u.Path, ".git") {
|
|
|
|
u.Path = strings.TrimSuffix(u.Path, ".git")
|
|
|
|
}
|
|
|
|
|
2018-09-03 02:43:00 -04:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-04-25 13:06:53 -04:00
|
|
|
// ParseURL parses URL string and return URL struct
|
2018-09-03 02:43:00 -04:00
|
|
|
func ParseURL(rawURL string) (u *url.URL, err error) {
|
|
|
|
p := &URLParser{}
|
|
|
|
return p.Parse(rawURL)
|
|
|
|
}
|