Some checks failed
Docs Deploy / build_and_deploy (push) Has been cancelled
Generate Docs / cli (push) Has been cancelled
Generate Config Doc / cli (push) Has been cancelled
Go formatting / go-formatting (push) Has been cancelled
Check links / markdown-link-check (push) Has been cancelled
Integration / pre-test (push) Has been cancelled
Integration / test on (push) Has been cancelled
Integration / status (push) Has been cancelled
Lint / Lint Go code (push) Has been cancelled
Test / test (ubuntu-latest) (push) Has been cancelled
110 lines
2.5 KiB
Go
110 lines
2.5 KiB
Go
package url
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
"regexp"
|
|
"strings"
|
|
|
|
"git.cw.tr/mukan-network/mukan-ignite/ignite/pkg/errors"
|
|
)
|
|
|
|
// URL represents a Git URL in any supported protocol.
|
|
type URL struct {
|
|
// Protocol is the protocol of the endpoint (e.g. ssh, https).
|
|
Protocol string
|
|
// Host is the host.
|
|
Host string
|
|
// Path is the repository path.
|
|
Path string
|
|
}
|
|
|
|
var (
|
|
scpLikeUrlRegExp = regexp.MustCompile(`^[^@]+@[^:]+:.+`)
|
|
scpSubMatchRegExp = regexp.MustCompile(`^(?:(?P<user>[^@]+)@)?(?P<host>[^:\s]+):(?:(?P<port>[0-9]{1,5}):)?(?P<path>[^\\].*)$`)
|
|
)
|
|
|
|
// New creates a new URL object.
|
|
func New(endpoint string) (URL, error) {
|
|
if scpLikeUrlRegExp.MatchString(endpoint) {
|
|
return parseSCPLike(endpoint), nil
|
|
}
|
|
|
|
u, err := url.Parse(endpoint)
|
|
if err == nil && u.Scheme == "ssh" {
|
|
return parseSCPLike(endpoint), nil
|
|
}
|
|
|
|
return parseURL(endpoint)
|
|
}
|
|
|
|
func (u URL) Compare(cp URL) error {
|
|
switch {
|
|
case u.Host != cp.Host:
|
|
return errors.Errorf("host mismatch for %s != %s", u.Host, cp.Host)
|
|
case u.Path != cp.Path:
|
|
return errors.Errorf("path mismatch for %s != %s", u.Path, cp.Path)
|
|
default:
|
|
return nil
|
|
}
|
|
}
|
|
|
|
func (u URL) String() string {
|
|
if u.Protocol == "ssh" {
|
|
return fmt.Sprintf("git@%s:%s.git", u.Host, u.Path)
|
|
}
|
|
return fmt.Sprintf("%s://%s/%s.git", u.Protocol, u.Host, u.Path)
|
|
}
|
|
|
|
// parseSCPLike returns an URL object from SCP git URL.
|
|
func parseSCPLike(endpoint string) URL {
|
|
_, host, _, path := findScpLikeComponents(endpoint)
|
|
return URL{
|
|
Protocol: "ssh",
|
|
Host: host,
|
|
Path: strings.TrimSuffix(path, ".git"),
|
|
}
|
|
}
|
|
|
|
// parseURL returns an URL object from an endpoint.
|
|
func parseURL(endpoint string) (URL, error) {
|
|
u, err := url.Parse(endpoint)
|
|
if err != nil {
|
|
return URL{}, errors.Errorf("failed to parse URL: %v", err)
|
|
}
|
|
|
|
if !u.IsAbs() {
|
|
return URL{}, errors.Errorf("URL must be absolute with scheme and host: %s", endpoint)
|
|
}
|
|
|
|
return URL{
|
|
Protocol: u.Scheme,
|
|
Host: u.Hostname(),
|
|
Path: getPath(u),
|
|
}, nil
|
|
}
|
|
|
|
// findScpLikeComponents returns the user, host, port and path of the given SCP-like URL.
|
|
func findScpLikeComponents(url string) (user, host, port, path string) {
|
|
m := scpSubMatchRegExp.FindStringSubmatch(url)
|
|
user = m[1]
|
|
host = m[2]
|
|
port = m[3]
|
|
path = m[4]
|
|
return m[1], m[2], m[3], m[4]
|
|
}
|
|
|
|
// getPath returns the path from an *url.URL.
|
|
func getPath(u *url.URL) string {
|
|
res := u.Path
|
|
if u.RawQuery != "" {
|
|
res += "?" + u.RawQuery
|
|
}
|
|
if u.Fragment != "" {
|
|
res += "#" + u.Fragment
|
|
}
|
|
|
|
res = strings.Trim(res, "/")
|
|
res = strings.TrimSuffix(res, ".git")
|
|
return strings.Split(res, ":")[0]
|
|
}
|