1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
// Copyright 2020 New Relic Corporation. All rights reserved.
// SPDX-License-Identifier: Apache-2.0
package internal
import "net/url"
// SafeURL removes sensitive information from a URL.
func SafeURL(u *url.URL) string {
if nil == u {
return ""
}
if "" != u.Opaque {
// If the URL is opaque, we cannot be sure if it contains
// sensitive information.
return ""
}
// Omit user, query, and fragment information for security.
ur := url.URL{
Scheme: u.Scheme,
Host: u.Host,
Path: u.Path,
}
return ur.String()
}
// SafeURLFromString removes sensitive information from a URL.
func SafeURLFromString(rawurl string) string {
u, err := url.Parse(rawurl)
if nil != err {
return ""
}
return SafeURL(u)
}
// HostFromURL returns the URL's host.
func HostFromURL(u *url.URL) string {
if nil == u {
return ""
}
if "" != u.Opaque {
return "opaque"
}
return u.Host
}
|