mirror of
https://github.com/octoleo/syncthing.git
synced 2024-12-23 03:18:59 +00:00
Merge pull request #1212 from cqcallaw/upnp
Properly handle absolute URLs when parsing UPnP service control URLs
This commit is contained in:
commit
2a58ca7697
@ -448,6 +448,13 @@ func getIGDServices(rootURL string, device upnpDevice, wanDeviceURN string, wanC
|
|||||||
}
|
}
|
||||||
|
|
||||||
func replaceRawPath(u *url.URL, rp string) {
|
func replaceRawPath(u *url.URL, rp string) {
|
||||||
|
asURL, err := url.Parse(rp)
|
||||||
|
if err != nil {
|
||||||
|
return
|
||||||
|
} else if asURL.IsAbs() {
|
||||||
|
u.Path = asURL.Path
|
||||||
|
u.RawQuery = asURL.RawQuery
|
||||||
|
} else {
|
||||||
var p, q string
|
var p, q string
|
||||||
fs := strings.Split(rp, "?")
|
fs := strings.Split(rp, "?")
|
||||||
p = fs[0]
|
p = fs[0]
|
||||||
@ -461,6 +468,7 @@ func replaceRawPath(u *url.URL, rp string) {
|
|||||||
u.Path += p
|
u.Path += p
|
||||||
}
|
}
|
||||||
u.RawQuery = q
|
u.RawQuery = q
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func soapRequest(url, service, function, message string) ([]byte, error) {
|
func soapRequest(url, service, function, message string) ([]byte, error) {
|
||||||
|
@ -17,6 +17,7 @@ package upnp
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"encoding/xml"
|
"encoding/xml"
|
||||||
|
"net/url"
|
||||||
"testing"
|
"testing"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -40,3 +41,25 @@ func TestExternalIPParsing(t *testing.T) {
|
|||||||
t.Error("Parse of SOAP request failed.")
|
t.Error("Parse of SOAP request failed.")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestControlURLParsing(t *testing.T) {
|
||||||
|
rootURL := "http://192.168.243.1:80/igd.xml"
|
||||||
|
|
||||||
|
u, _ := url.Parse(rootURL)
|
||||||
|
subject := "/upnp?control=WANCommonIFC1"
|
||||||
|
expected := "http://192.168.243.1:80/upnp?control=WANCommonIFC1"
|
||||||
|
replaceRawPath(u, subject)
|
||||||
|
|
||||||
|
if u.String() != expected {
|
||||||
|
t.Error("URL normalization of", subject, "failed; expected", expected, "got", u.String())
|
||||||
|
}
|
||||||
|
|
||||||
|
u, _ = url.Parse(rootURL)
|
||||||
|
subject = "http://192.168.243.1:80/upnp?control=WANCommonIFC1"
|
||||||
|
expected = "http://192.168.243.1:80/upnp?control=WANCommonIFC1"
|
||||||
|
replaceRawPath(u, subject)
|
||||||
|
|
||||||
|
if u.String() != expected {
|
||||||
|
t.Error("URL normalization of", subject, "failed; expected", expected, "got", u.String())
|
||||||
|
}
|
||||||
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user