Files
Home-AssistantConfig/deps/netdisco/discoverables/sabnzbd.py
2016-10-11 16:42:06 +00:00

22 lines
750 B
Python

"""Discover SABnzbd servers."""
from . import MDNSDiscoverable
# pylint: disable=too-few-public-methods
class Discoverable(MDNSDiscoverable):
"""Add support for discovering SABnzbd."""
def __init__(self, nd):
"""Initialize the SABnzbd discovery."""
super(Discoverable, self).__init__(nd, '_http._tcp.local.')
def info_from_entry(self, entry):
"""Return most important info from mDNS entries."""
return (self.ip_from_host(entry.server), entry.port,
entry.properties.get('path', '/sabnzbd/'))
def get_info(self):
"""Get details of SABnzbd."""
return [self.info_from_entry(entry) for entry in self.get_entries()
if entry.name.startswith('SABnzbd on')]