auth/internal/domain/client_id.go

211 lines
4.8 KiB
Go

package domain
import (
"fmt"
"net"
"net/url"
"strconv"
"strings"
"testing"
"inet.af/netaddr"
"source.toby3d.me/toby3d/auth/internal/common"
)
// ClientID is a URL client identifier.
type ClientID struct {
clientID *url.URL
isLocalhost bool
}
//nolint:gochecknoglobals // slices cannot be constants
var (
localhostIPv4 = netaddr.MustParseIP("127.0.0.1")
localhostIPv6 = netaddr.MustParseIP("::1")
)
// ParseClientID parse string as client ID URL identifier.
//
//nolint:funlen,cyclop
func ParseClientID(src string) (*ClientID, error) {
cid, err := url.Parse(src)
if err != nil {
return nil, NewError(
ErrorCodeInvalidRequest,
err.Error(),
"https://indieauth.net/source/#client-identifier",
)
}
if cid.Scheme != "http" && cid.Scheme != "https" {
return nil, NewError(
ErrorCodeInvalidRequest,
"client identifier URL MUST have either an https or http scheme, got '"+cid.Scheme+"'",
"https://indieauth.net/source/#client-identifier",
)
}
if cid.Path == "" {
cid.Path = "/"
}
if strings.Contains(cid.Path, "/.") || strings.Contains(cid.Path, "/..") {
return nil, NewError(
ErrorCodeInvalidRequest,
"client identifier URL MUST contain a path component and MUST NOT contain "+
"single-dot or double-dot path segments, got '"+cid.Path+"'",
"https://indieauth.net/source/#client-identifier",
)
}
if cid.Fragment != "" {
return nil, NewError(
ErrorCodeInvalidRequest,
"client identifier URL MUST NOT contain a fragment component, got '"+cid.Fragment+"'",
"https://indieauth.net/source/#client-identifier",
)
}
if cid.User != nil {
return nil, NewError(
ErrorCodeInvalidRequest,
"client identifier URL MUST NOT contain a username or password component, got '"+
cid.User.String()+"'",
"https://indieauth.net/source/#client-identifier",
)
}
domain := cid.Hostname()
if domain == "" {
return nil, NewError(
ErrorCodeInvalidRequest,
"client host name MUST be domain name or a loopback interface, got '"+domain+"'",
"https://indieauth.net/source/#client-identifier",
)
}
ip, err := netaddr.ParseIP(domain)
if err != nil {
ipPort, err := netaddr.ParseIPPort(domain)
if err != nil {
resolvedAddr, err := net.LookupIP(domain)
if err != nil {
return nil, fmt.Errorf("cannot resolve client_id domain: %w", err)
}
ip, _ = netaddr.FromStdIP(resolvedAddr[0])
isLocalhost := ip.Compare(localhostIPv4) == 0 || ip.Compare(localhostIPv6) == 0
//nolint:nilerr // ClientID does not contain an IP address, so it is valid
return &ClientID{
clientID: cid,
isLocalhost: isLocalhost,
}, nil
}
ip = ipPort.IP()
}
isLocalhost := ip.Compare(localhostIPv4) == 0 || ip.Compare(localhostIPv6) == 0
if !ip.IsLoopback() && !isLocalhost {
return nil, NewError(
ErrorCodeInvalidRequest,
"client identifier URL MUST NOT be IPv4 or IPv6 addresses except for IPv4 "+
"127.0.0.1 or IPv6 [::1]",
"https://indieauth.net/source/#client-identifier",
)
}
return &ClientID{
clientID: cid,
isLocalhost: isLocalhost,
}, nil
}
// TestClientID returns valid random generated ClientID for tests.
func TestClientID(tb testing.TB, forceURL ...string) *ClientID {
tb.Helper()
in := "https://127.0.0.1/"
if len(forceURL) > 0 {
in = forceURL[0]
}
u, _ := url.Parse(in)
return &ClientID{
clientID: u,
isLocalhost: len(forceURL) < 1,
}
}
// UnmarshalForm implements custom unmarshler for form values.
func (cid *ClientID) UnmarshalForm(v []byte) error {
clientID, err := ParseClientID(string(v))
if err != nil {
return fmt.Errorf("ClientID: UnmarshalForm: %w", err)
}
*cid = *clientID
return nil
}
// UnmarshalJSON implements custom unmarshler for JSON.
func (cid *ClientID) UnmarshalJSON(v []byte) error {
src, err := strconv.Unquote(string(v))
if err != nil {
return fmt.Errorf("ClientID: UnmarshalJSON: %w", err)
}
clientID, err := ParseClientID(src)
if err != nil {
return fmt.Errorf("ClientID: UnmarshalJSON: %w", err)
}
*cid = *clientID
return nil
}
// MarshalForm implements custom marshler for JSON.
func (cid ClientID) MarshalJSON() ([]byte, error) {
return []byte(strconv.Quote(cid.String())), nil
}
// IsEqual checks what cid is equal to provided v.
func (cid ClientID) IsEqual(v ClientID) bool {
return cid.clientID.String() == v.clientID.String()
}
// URL returns url.URL representation of client ID.
func (cid ClientID) URL() *url.URL {
out, _ := url.Parse(cid.clientID.String())
return out
}
func (cid ClientID) IsLocalhost() bool {
return cid.isLocalhost
}
// String returns string representation of client ID.
func (cid ClientID) String() string {
if cid.clientID == nil {
return ""
}
return cid.clientID.String()
}
func (cid ClientID) GoString() string {
if cid.clientID == nil {
return "domain.ClientID(" + common.Und + ")"
}
return "domain.ClientID(" + cid.clientID.String() + ")"
}