auth/internal/domain/me.go

171 lines
3.3 KiB
Go
Raw Normal View History

2021-12-03 01:58:37 +00:00
package domain
import (
"fmt"
"net"
2021-12-25 18:53:49 +00:00
"net/url"
2021-12-29 20:08:30 +00:00
"strconv"
2021-12-03 01:58:37 +00:00
"strings"
"testing"
)
2021-12-25 18:53:49 +00:00
// Me is a URL user identifier.
2021-12-03 01:58:37 +00:00
type Me struct {
id *url.URL
2021-12-03 01:58:37 +00:00
}
2022-01-29 17:50:45 +00:00
// ParseMe parse string as me URL identifier.
2022-12-26 14:09:34 +00:00
//
//nolint:funlen,cyclop
2022-01-29 14:54:37 +00:00
func ParseMe(raw string) (*Me, error) {
id, err := url.Parse(raw)
if err != nil {
return nil, NewError(
ErrorCodeInvalidRequest,
err.Error(),
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if id.Scheme != "http" && id.Scheme != "https" {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile URL MUST have either an https or http scheme",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if id.Path == "" {
id.Path = "/"
}
if strings.Contains(id.Path, "/.") || strings.Contains(id.Path, "/..") {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile URL MUST contain a path component (/ is a valid path), MUST NOT contain single-dot "+
"or double-dot path segments",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if id.Fragment != "" {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile URL MUST NOT contain a fragment component",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if id.User != nil {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile URL MUST NOT contain a username or password component",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if id.Host == "" {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile host name MUST be a domain name",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if _, port, _ := net.SplitHostPort(id.Host); port != "" {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile MUST NOT contain a port",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
if net.ParseIP(id.Host) != nil {
return nil, NewError(
ErrorCodeInvalidRequest,
"profile MUST NOT be ipv4 or ipv6 addresses",
"https://indieauth.net/source/#user-profile-url",
"",
)
2021-12-03 01:58:37 +00:00
}
return &Me{id: id}, nil
2021-12-25 18:53:49 +00:00
}
2021-12-03 01:58:37 +00:00
2022-01-29 17:50:45 +00:00
// TestMe returns valid random generated me for tests.
func TestMe(tb testing.TB, src string) *Me {
2021-12-25 18:53:49 +00:00
tb.Helper()
2022-01-29 14:54:37 +00:00
me, err := ParseMe(src)
2022-01-30 17:49:25 +00:00
if err != nil {
tb.Fatal(err)
2022-01-30 17:49:25 +00:00
}
2021-12-25 18:53:49 +00:00
return me
2021-12-03 01:58:37 +00:00
}
2022-01-29 17:50:45 +00:00
// UnmarshalForm implements custom unmarshler for form values.
2021-12-29 20:08:30 +00:00
func (m *Me) UnmarshalForm(v []byte) error {
2022-01-29 14:54:37 +00:00
me, err := ParseMe(string(v))
2021-12-25 18:53:49 +00:00
if err != nil {
return fmt.Errorf("Me: UnmarshalForm: %w", err)
2021-12-03 01:58:37 +00:00
}
2021-12-29 20:08:30 +00:00
*m = *me
return nil
}
2022-01-29 17:50:45 +00:00
// UnmarshalJSON implements custom unmarshler for JSON.
2021-12-29 20:08:30 +00:00
func (m *Me) UnmarshalJSON(v []byte) error {
src, err := strconv.Unquote(string(v))
if err != nil {
return fmt.Errorf("Me: UnmarshalJSON: %w", err)
2021-12-29 20:08:30 +00:00
}
2022-01-29 14:54:37 +00:00
me, err := ParseMe(src)
2021-12-29 20:08:30 +00:00
if err != nil {
return fmt.Errorf("Me: UnmarshalJSON: %w", err)
2021-12-29 20:08:30 +00:00
}
*m = *me
2021-12-25 18:53:49 +00:00
return nil
2021-12-03 01:58:37 +00:00
}
2022-01-29 17:50:45 +00:00
// MarshalJSON implements custom marshler for JSON.
2022-01-12 18:04:40 +00:00
func (m Me) MarshalJSON() ([]byte, error) {
return []byte(strconv.Quote(m.String())), nil
}
2022-01-29 17:50:45 +00:00
// URL returns copy of parsed me in *url.URL representation.
2022-01-12 18:04:40 +00:00
func (m Me) URL() *url.URL {
if m.id == nil {
2021-12-29 20:08:30 +00:00
return nil
}
out, _ := url.Parse(m.id.String())
return out
2021-12-03 01:58:37 +00:00
}
2022-01-29 17:50:45 +00:00
// String returns string representation of me.
2022-01-12 18:04:40 +00:00
func (m Me) String() string {
if m.id != nil {
return m.id.String()
2021-12-29 20:08:30 +00:00
}
return ""
}
func (m Me) GoString() string {
return "domain.Me(" + m.String() + ")"
2021-12-03 01:58:37 +00:00
}