Albirew/nyaa-pantsu
Archivé
1
0
Bifurcation 0
Ce dépôt a été archivé le 2022-05-07. Vous pouvez voir ses fichiers ou le cloner, mais pas ouvrir de ticket ou de demandes d'ajout, ni soumettre de changements.
nyaa-pantsu/vendor/github.com/anacrolix/missinggo/httptoo/url.go

60 lignes
1,4 Kio
Go
Brut Vue normale Historique

package httptoo
import (
"net/http"
"net/url"
"path"
)
// Deep copies a URL.
func CopyURL(u *url.URL) (ret *url.URL) {
ret = new(url.URL)
*ret = *u
if u.User != nil {
ret.User = new(url.Userinfo)
*ret.User = *u.User
}
return
}
// Reconstructs the URL that would have produced the given Request.
// Request.URLs are not fully populated in http.Server handlers.
func RequestedURL(r *http.Request) (ret *url.URL) {
ret = CopyURL(r.URL)
ret.Host = r.Host
ret.Scheme = OriginatingProtocol(r)
return
}
// Scheme string
// Opaque string // encoded opaque data
// User *Userinfo // username and password information
// Host string // host or host:port
// Path string
// RawPath string // encoded path hint (Go 1.5 and later only; see EscapedPath method)
// ForceQuery bool // append a query ('?') even if RawQuery is empty
// RawQuery string // encoded query values, without '?'
// Fragment string // fragment for references, without '#'
// }
// Return the first URL extended with elements of the second, in the manner
// that occurs throughout my projects.
func AppendURL(u, v *url.URL) *url.URL {
u = CopyURL(u)
clobberString(&u.Scheme, v.Scheme)
clobberString(&u.Host, v.Host)
u.Path = path.Join(u.Path, v.Path)
q := u.Query()
for k, v := range v.Query() {
q[k] = append(q[k], v...)
}
u.RawQuery = q.Encode()
return u
}
func clobberString(s *string, value string) {
if value != "" {
*s = value
}
}