mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-04 16:09:33 +00:00
52d8097290
We previously got the machine hostname for Netrc from the url of the remote, but in cases where the clone-url does not match the api url this can lead to errors.
25 lines
353 B
Go
25 lines
353 B
Go
package common
|
|
|
|
import (
|
|
"net"
|
|
"net/url"
|
|
"strings"
|
|
)
|
|
|
|
func ExtractHostFromCloneURL(cloneURL string) (string, error) {
|
|
u, err := url.Parse(cloneURL)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
if !strings.Contains(u.Host, ":") {
|
|
return u.Host, nil
|
|
}
|
|
|
|
host, _, err := net.SplitHostPort(u.Host)
|
|
if err != nil {
|
|
return "", err
|
|
}
|
|
|
|
return host, nil
|
|
}
|