Revision 3c81218ba373248450e46728f5667a899bb38109 authored by Grot (@grafanabot) on 14 May 2021, 06:52:03 UTC, committed by GitHub on 14 May 2021, 06:52:03 UTC
* Timeline: Text align option, but does not work

* working text alignment

* Refactoring and fixing rendering text values on the right edge that does not fit

Co-authored-by: Leon Sorokin <leeoniya@gmail.com>
(cherry picked from commit 96183d70a8bebdd6ee79a01fcc3611a8fb3b9da1)

Co-authored-by: Torkel Ödegaard <torkel@grafana.org>
1 parent 728a2bd
Raw File
address.go
package network

import (
	"fmt"
	"net"
	"regexp"
)

var reIPv4AndPort = regexp.MustCompile(`^(\d+\.\d+\.\d+\.\d+):\d+$`)

// An IPv6 address/port pair can consist of the IP address enclosed in square brackets followed by a colon and
// a port, although the colon/port component is actually optional in practice (e.g., we may receive [::1], where
// we should just strip off the square brackets).
var reIPv6AndPort = regexp.MustCompile(`^\[(.+)\](:\d+)?$`)

// GetIPFromAddress tries to get an IPv4 or IPv6 address from a host address, potentially including a port.
func GetIPFromAddress(input string) (net.IP, error) {
	if a := net.ParseIP(input); len(a) > 0 {
		return a, nil
	}

	err := fmt.Errorf("not a valid IP address or IP address/port pair: %q", input)

	// It could potentially be an IP address/port pair
	var addr string
	ms := reIPv4AndPort.FindStringSubmatch(input)
	if len(ms) == 0 {
		ms := reIPv6AndPort.FindStringSubmatch(input)
		if len(ms) == 0 {
			return nil, err
		}

		addr = ms[1]
	} else {
		// Strip off port
		addr = ms[1]
	}

	if a := net.ParseIP(addr); len(a) > 0 {
		return a, nil
	}

	return nil, err
}
back to top