mirror of
https://github.com/rclone/rclone.git
synced 2024-11-08 01:25:14 +01:00
5f07bbf8ce
Using the same responses as minidlna. Fixes #3502.
28 lines
540 B
Go
28 lines
540 B
Go
package dlna
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"github.com/anacrolix/dms/upnp"
|
|
)
|
|
|
|
type mediaReceiverRegistrarService struct {
|
|
*server
|
|
upnp.Eventing
|
|
}
|
|
|
|
func (mrrs *mediaReceiverRegistrarService) Handle(action string, argsXML []byte, r *http.Request) (map[string]string, error) {
|
|
switch action {
|
|
case "IsAuthorized", "IsValidated":
|
|
return map[string]string{
|
|
"Result": "1",
|
|
}, nil
|
|
case "RegisterDevice":
|
|
return map[string]string{
|
|
"RegistrationRespMsg": mrrs.RootDeviceUUID,
|
|
}, nil
|
|
default:
|
|
return nil, upnp.InvalidActionError
|
|
}
|
|
}
|