mirror of
https://github.com/fHDHR/fHDHR_NextPVR.git
synced 2025-12-06 13:26:57 -05:00
55 lines
2.0 KiB
Python
55 lines
2.0 KiB
Python
from flask import Response, request
|
|
from io import BytesIO
|
|
import xml.etree.ElementTree
|
|
|
|
from fHDHR.tools import sub_el
|
|
|
|
|
|
class RMG_Devices_Probe():
|
|
endpoints = ["/devices/probe", "/rmg/devices/probe"]
|
|
endpoint_name = "rmg_devices_probe"
|
|
endpoint_methods = ["GET", "POST"]
|
|
endpoint_default_parameters = {
|
|
"uri": "<base_url>"
|
|
}
|
|
|
|
def __init__(self, fhdhr):
|
|
self.fhdhr = fhdhr
|
|
|
|
def __call__(self, *args):
|
|
return self.get(*args)
|
|
|
|
def get(self, *args):
|
|
"""Probes a specific URI for a network device, and returns a device, if it exists at the given URI."""
|
|
|
|
base_url = request.url_root[:-1]
|
|
|
|
uri = request.args.get('uri', default=None, type=str)
|
|
|
|
out = xml.etree.ElementTree.Element('MediaContainer')
|
|
out.set('size', "1")
|
|
if uri == base_url:
|
|
sub_el(out, 'Device',
|
|
key=self.fhdhr.config.dict["main"]["uuid"],
|
|
make=self.fhdhr.config.dict["fhdhr"]["reporting_manufacturer"],
|
|
model=self.fhdhr.config.dict["fhdhr"]["reporting_model"],
|
|
modelNumber=self.fhdhr.config.internal["versions"]["fHDHR"],
|
|
protocol="livetv",
|
|
status="alive",
|
|
title=self.fhdhr.config.dict["fhdhr"]["friendlyname"],
|
|
tuners=str(self.fhdhr.config.dict["fhdhr"]["tuner_count"]),
|
|
uri=base_url,
|
|
uuid="device://tv.plex.grabbers.fHDHR/%s" % self.fhdhr.config.dict["main"]["uuid"],
|
|
thumb="favicon.ico",
|
|
interface='network'
|
|
)
|
|
|
|
fakefile = BytesIO()
|
|
fakefile.write(b'<?xml version="1.0" encoding="UTF-8"?>\n')
|
|
fakefile.write(xml.etree.ElementTree.tostring(out, encoding='UTF-8'))
|
|
device_xml = fakefile.getvalue()
|
|
|
|
return Response(status=200,
|
|
response=device_xml,
|
|
mimetype='application/xml')
|