mirror of
https://github.com/grafana/grafana.git
synced 2024-11-26 19:00:54 -06:00
31630edf0c
* Chore: Remove Wrapf * Remove all Wrapf refs * Remove last Wrapf ref * Fix lint errors * Remove Wrap and Wrapf definitions * Remove unnecessary colon
56 lines
1.2 KiB
Go
56 lines
1.2 KiB
Go
package util
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"strings"
|
|
)
|
|
|
|
type NetworkAddress struct {
|
|
Host string
|
|
Port string
|
|
}
|
|
|
|
// SplitHostPortDefault splits ip address/hostname string by host and port. Defaults used if no match found
|
|
func SplitHostPortDefault(input, defaultHost, defaultPort string) (NetworkAddress, error) {
|
|
addr := NetworkAddress{
|
|
Host: defaultHost,
|
|
Port: defaultPort,
|
|
}
|
|
if len(input) == 0 {
|
|
return addr, nil
|
|
}
|
|
|
|
start := 0
|
|
// Determine if IPv6 address, in which case IP address will be enclosed in square brackets
|
|
if strings.Index(input, "[") == 0 {
|
|
addrEnd := strings.LastIndex(input, "]")
|
|
if addrEnd < 0 {
|
|
// Malformed address
|
|
return addr, fmt.Errorf("malformed IPv6 address: '%s'", input)
|
|
}
|
|
|
|
start = addrEnd
|
|
}
|
|
if strings.LastIndex(input[start:], ":") < 0 {
|
|
// There's no port section of the input
|
|
// It's still useful to call net.SplitHostPort though, since it removes IPv6
|
|
// square brackets from the address
|
|
input = fmt.Sprintf("%s:%s", input, defaultPort)
|
|
}
|
|
|
|
host, port, err := net.SplitHostPort(input)
|
|
if err != nil {
|
|
return addr, fmt.Errorf("net.SplitHostPort failed for '%s': %w", input, err)
|
|
}
|
|
|
|
if len(host) > 0 {
|
|
addr.Host = host
|
|
}
|
|
if len(port) > 0 {
|
|
addr.Port = port
|
|
}
|
|
|
|
return addr, nil
|
|
}
|