mirror of
https://github.com/CCOSTAN/Home-AssistantConfig.git
synced 2025-11-06 17:51:36 +00:00
22 lines
750 B
Python
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')]
|