urlutil

package
v1.3.5 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 27, 2020 License: MIT Imports: 15 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func AppendURLValues

func AppendURLValues(v1, v2 url.Values) url.Values

AppendURLValues appends one url.Values to another url.Values.

func BuildURL

func BuildURL(baseUrl string, queryValues url.Values) string

BuildURL returns a URL string from a base URL and url.Values.

func BuildURLFromMap

func BuildURLFromMap(baseUrl string, queryParams map[string]string) string

BuildURLFromMap returns a URL as a string from a base URL and a set of query parameters as a map[string]string{}

func BuildURLQueryString

func BuildURLQueryString(baseUrl string, qry interface{}) string

func CondenseUri

func CondenseUri(uri string) string

CondenseUri trims spaces and condenses slashes.

func EndpointString

func EndpointString(path, method string, generic bool) string

func GetPathLeaf

func GetPathLeaf(s string) (string, error)

func GetURLBody

func GetURLBody(absoluteUrl string) ([]byte, error)

GetURLBody returns an HTTP response byte array body from a URL.

func GetURLPostBody

func GetURLPostBody(absoluteUrl string, bodyType string, reqBody io.Reader) ([]byte, error)

GetURLPostBody returns a HTTP post body as a byte array from a URL, body type and an io.Reader.

func Join

func Join(elem ...string) string

Join returns joining URL paths parts.

func JoinAbsolute

func JoinAbsolute(elem ...string) string

JoinAbsolute performs a path.Join() while preserving two slashes after the scheme.

func MatchGeneric

func MatchGeneric(path1, path2 string) bool

func ModifyPath

func ModifyPath(rawurl, newpath string) (string, error)

func ParseURLTemplate

func ParseURLTemplate(input string) (*url.URL, error)

ParseURLTemplate exists to parse templates with variables that do not meet RFC specifications. For example: https://{customer}.example.com:{port}/v5 "invalid URL escape "%7B"" for `{` within a Hostname or "invalid port ":{port}" after host"

func SlugTextToUrl

func SlugTextToUrl(s string) string

func SlugUrlToText

func SlugUrlToText(s string) string

func SplitPath

func SplitPath(urlPath string, stripLeading, stripTrailing bool) []string

SplitPath splits a URL path string with optional removal of leading and trailing slashes.

func ToSlug

func ToSlug(slug []byte) []byte

ToSlug creates a slug byte array from an input byte array. Slugs have words separated by a hyphen with no punctuation or spaces.

func ToSlugLowerString

func ToSlugLowerString(s string) string

ToSlugLowerString creates a lower-cased slug string

func UnmarshalRailsQS

func UnmarshalRailsQS(railsQuery string, i interface{}) error

UnmarshalRailsQS unmarshals a Rails query string to a Go struct.

func UriHasScheme

func UriHasScheme(uri string) bool

UriHasScheme returns a boolean true or false if the string has a URI scheme.

func UriScheme

func UriScheme(uri string) string

UriScheme extracts the URI scheme from a string. It returns an empty string if none is encountered.

func UrlValuesEncodeSorted

func UrlValuesEncodeSorted(v url.Values, priorities []string) string

UrlValuesStringSorted returns and encoded string with sorting

func VarsToGeneric

func VarsToGeneric(input string) string

Types

type URLMore

type URLMore struct {
	URL                  *url.URL
	URLWoQueryWoFragment string
	URLWoFragment        string
	Port                 int
}

UrlMore provides additional URL parsing and reconstruction capabilties above and beyond URL. Specifically it can parse out the port number and return URLs that strip off the target fragment as well as the query string.

func NewURLMore

func NewURLMore() URLMore

func (*URLMore) Inflate

func (urlMore *URLMore) Inflate()

func (*URLMore) Parse

func (urlMore *URLMore) Parse(rawurl string) error

Parse uses `url.Parse()` to create a URL object. When using an already created URL object, simply set the `Url` property and then call `Inflate`.

type URLValidator

type URLValidator struct {
	RequiredSchemes map[string]int
}

func (*URLValidator) RequiredSchemesSorted

func (uv *URLValidator) RequiredSchemesSorted() []string

func (*URLValidator) RequiredSchemesSortedString

func (uv *URLValidator) RequiredSchemesSortedString() string

func (*URLValidator) SchemesToLower

func (uv *URLValidator) SchemesToLower()

func (*URLValidator) ValidateURL

func (uv *URLValidator) ValidateURL(u *url.URL) (*url.URL, error)

func (*URLValidator) ValidateURLString

func (uv *URLValidator) ValidateURLString(s string) (*url.URL, error)

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL