You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
510 B
16 lines
510 B
"""Discover PlexMediaServer."""
|
|
from . import GDMDiscoverable
|
|
|
|
|
|
class Discoverable(GDMDiscoverable):
|
|
"""Add support for discovering Plex Media Server."""
|
|
|
|
def info_from_entry(self, entry):
|
|
"""Return most important info from a GDM entry."""
|
|
return (entry['data']['Name'],
|
|
'https://%s:%s' % (entry['from'][0], entry['data']['Port']))
|
|
|
|
def get_entries(self):
|
|
"""Return all PMS entries."""
|
|
return self.find_by_data({'Content-Type': 'plex/media-server'})
|