Fork github.com/huin/goupnp to add open-home support
77b86c3723
Tested against Sonos PLAY:5. Added URI type to the SOAP library. The latest upnpresources.zip does not contain older versions of the specifications, so to be able to generate the bindings I had to create a fake one: wget http://upnp.org/specs/av/UPnP-av-TestFiles-20070927.zip install -d 'standardizeddcps/MediaServer_1 and MediaRenderer_1' mv UPnP-av-TestFiles-20070927.zip 'standardizeddcps/MediaServer_1 and MediaRenderer_1/' zip -r fake.zip 'standardizeddcps/MediaServer_1 and MediaRenderer_1' gotask specgen -s fake.zip -o ../dcps |
||
---|---|---|
cmd | ||
dcps | ||
example | ||
gotasks | ||
httpu | ||
scpd | ||
soap | ||
ssdp | ||
device.go | ||
goupnp.go | ||
LICENSE | ||
README.md | ||
service_client.go |
goupnp is a UPnP client library for Go
Installation
Run go get -u github.com/huin/goupnp
.
Documentation
Regenerating dcps generated source code:
- Install gotasks:
go get -u github.com/jingweno/gotask
- Change to the gotasks directory:
cd gotasks
- Download UPnP specification data (if not done already):
wget http://upnp.org/resources/upnpresources.zip
- Regenerate source code:
gotask specgen -s upnpresources.zip -o ../dcps
Supporting additional UPnP devices and services:
Supporting additional services is, in the trivial case, simply a matter of
adding the service to the dcpMetadataByDir
whitelist in
gotasks/specgen_task.go
, regenerating the source code (see above), and
committing that source code.
However, it would be helpful if anyone needing such a service could test the service against the service they have, and then reporting any trouble encountered as an issue on this project. If it just works, then please report at least minimal working functionality as an issue, and optionally contribute the metadata upstream.