2016-01-15 22:12:52 +11:00
|
|
|
"""
|
|
|
|
PlexGDM.py - Version 0.2
|
|
|
|
|
|
|
|
This class implements the Plex GDM (G'Day Mate) protocol to discover
|
|
|
|
local Plex Media Servers. Also allow client registration into all local
|
|
|
|
media servers.
|
|
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
|
|
|
|
MA 02110-1301, USA.
|
|
|
|
"""
|
2016-09-03 01:20:19 +10:00
|
|
|
import logging
|
2016-01-15 22:12:52 +11:00
|
|
|
import socket
|
|
|
|
import threading
|
|
|
|
import time
|
2016-03-09 03:41:07 +11:00
|
|
|
|
2016-04-05 18:57:30 +10:00
|
|
|
from xbmc import sleep
|
2016-03-24 02:07:09 +11:00
|
|
|
|
2016-01-23 01:37:20 +11:00
|
|
|
import downloadutils
|
2016-09-03 01:20:19 +10:00
|
|
|
from utils import window, settings
|
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
log = logging.getLogger("PLEX."+__name__)
|
|
|
|
|
|
|
|
###############################################################################
|
2016-03-09 03:41:07 +11:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
|
|
|
|
class plexgdm:
|
|
|
|
|
2016-04-05 18:57:30 +10:00
|
|
|
def __init__(self):
|
2016-01-15 22:12:52 +11:00
|
|
|
self.discover_message = 'M-SEARCH * HTTP/1.0'
|
|
|
|
self.client_header = '* HTTP/1.0'
|
|
|
|
self.client_data = None
|
|
|
|
self.client_id = None
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
self._multicast_address = '239.0.0.250'
|
|
|
|
self.discover_group = (self._multicast_address, 32414)
|
|
|
|
self.client_register_group = (self._multicast_address, 32413)
|
|
|
|
self.client_update_port = 32412
|
|
|
|
|
|
|
|
self.server_list = []
|
|
|
|
self.discovery_interval = 120
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
self._discovery_is_running = False
|
|
|
|
self._registration_is_running = False
|
|
|
|
|
|
|
|
self.discovery_complete = False
|
|
|
|
self.client_registered = False
|
2016-03-09 03:41:07 +11:00
|
|
|
self.download = downloadutils.DownloadUtils().downloadUrl
|
2016-01-15 22:12:52 +11:00
|
|
|
|
2016-04-27 01:15:05 +10:00
|
|
|
def clientDetails(self, options):
|
2016-04-05 18:57:30 +10:00
|
|
|
self.client_data = (
|
|
|
|
"Content-Type: plex/media-player\r\n"
|
|
|
|
"Resource-Identifier: %s\r\n"
|
|
|
|
"Name: %s\r\n"
|
|
|
|
"Port: %s\r\n"
|
|
|
|
"Product: %s\r\n"
|
|
|
|
"Version: %s\r\n"
|
|
|
|
"Protocol: plex\r\n"
|
|
|
|
"Protocol-Version: 1\r\n"
|
|
|
|
"Protocol-Capabilities: timeline,playback,navigation,"
|
|
|
|
"mirror,playqueues\r\n"
|
|
|
|
"Device-Class: HTPC"
|
|
|
|
) % (
|
2016-04-27 01:15:05 +10:00
|
|
|
options['uuid'],
|
|
|
|
options['client_name'],
|
|
|
|
options['myport'],
|
|
|
|
options['addonName'],
|
|
|
|
options['version']
|
2016-04-05 18:57:30 +10:00
|
|
|
)
|
2016-04-27 01:15:05 +10:00
|
|
|
self.client_id = options['uuid']
|
2016-01-15 22:12:52 +11:00
|
|
|
|
|
|
|
def getClientDetails(self):
|
|
|
|
return self.client_data
|
|
|
|
|
2016-04-05 18:57:30 +10:00
|
|
|
def client_update(self):
|
|
|
|
update_sock = socket.socket(socket.AF_INET,
|
|
|
|
socket.SOCK_DGRAM,
|
|
|
|
socket.IPPROTO_UDP)
|
|
|
|
|
|
|
|
# Set socket reuse, may not work on all OSs.
|
2016-01-15 22:12:52 +11:00
|
|
|
try:
|
2016-04-05 18:57:30 +10:00
|
|
|
update_sock.setsockopt(socket.SOL_SOCKET,
|
|
|
|
socket.SO_REUSEADDR,
|
|
|
|
1)
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
|
|
|
pass
|
2016-04-05 18:57:30 +10:00
|
|
|
|
|
|
|
# Attempt to bind to the socket to recieve and send data. If we cant
|
|
|
|
# do this, then we cannot send registration
|
2016-01-15 22:12:52 +11:00
|
|
|
try:
|
2016-04-05 18:57:30 +10:00
|
|
|
update_sock.bind(('0.0.0.0', self.client_update_port))
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.error("Unable to bind to port [%s] - client will not be "
|
|
|
|
"registered" % self.client_update_port)
|
2016-04-05 18:57:30 +10:00
|
|
|
return
|
|
|
|
|
|
|
|
update_sock.setsockopt(socket.IPPROTO_IP,
|
|
|
|
socket.IP_MULTICAST_TTL,
|
|
|
|
255)
|
|
|
|
update_sock.setsockopt(socket.IPPROTO_IP,
|
|
|
|
socket.IP_ADD_MEMBERSHIP,
|
|
|
|
socket.inet_aton(
|
|
|
|
self._multicast_address) +
|
|
|
|
socket.inet_aton('0.0.0.0'))
|
2016-01-15 22:12:52 +11:00
|
|
|
update_sock.setblocking(0)
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Sending registration data: HELLO %s\r\n%s"
|
|
|
|
% (self.client_header, self.client_data))
|
2016-04-05 18:57:30 +10:00
|
|
|
|
|
|
|
# Send initial client registration
|
2016-01-15 22:12:52 +11:00
|
|
|
try:
|
2016-04-05 18:57:30 +10:00
|
|
|
update_sock.sendto("HELLO %s\r\n%s"
|
|
|
|
% (self.client_header, self.client_data),
|
|
|
|
self.client_register_group)
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.error("Unable to send registration message")
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-09-03 01:20:19 +10:00
|
|
|
# Now, listen format client discovery reguests and respond.
|
2016-01-15 22:12:52 +11:00
|
|
|
while self._registration_is_running:
|
|
|
|
try:
|
|
|
|
data, addr = update_sock.recvfrom(1024)
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Recieved UDP packet from [%s] containing [%s]"
|
|
|
|
% (addr, data.strip()))
|
2016-04-05 18:57:30 +10:00
|
|
|
except socket.error:
|
2016-01-15 22:12:52 +11:00
|
|
|
pass
|
|
|
|
else:
|
|
|
|
if "M-SEARCH * HTTP/1." in data:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Detected client discovery request from %s. "
|
|
|
|
" Replying" % str(addr))
|
2016-01-15 22:12:52 +11:00
|
|
|
try:
|
2016-04-05 18:57:30 +10:00
|
|
|
update_sock.sendto("HTTP/1.0 200 OK\r\n%s"
|
|
|
|
% self.client_data,
|
|
|
|
addr)
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.error("Unable to send client update message")
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Sending registration data HTTP/1.0 200 OK")
|
2016-01-15 22:12:52 +11:00
|
|
|
self.client_registered = True
|
2016-04-05 18:57:30 +10:00
|
|
|
sleep(500)
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Client Update loop stopped")
|
2016-04-05 18:57:30 +10:00
|
|
|
# When we are finished, then send a final goodbye message to
|
|
|
|
# deregister cleanly.
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Sending registration data: BYE %s\r\n%s"
|
|
|
|
% (self.client_header, self.client_data))
|
2016-01-15 22:12:52 +11:00
|
|
|
try:
|
2016-04-05 18:57:30 +10:00
|
|
|
update_sock.sendto("BYE %s\r\n%s"
|
|
|
|
% (self.client_header, self.client_data),
|
|
|
|
self.client_register_group)
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.error("Unable to send client update message")
|
2016-01-15 22:12:52 +11:00
|
|
|
self.client_registered = False
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
def check_client_registration(self):
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
if self.client_registered and self.discovery_complete:
|
|
|
|
if not self.server_list:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Server list is empty. Unable to check")
|
2016-01-15 22:12:52 +11:00
|
|
|
return False
|
|
|
|
try:
|
2016-03-24 02:40:31 +11:00
|
|
|
for server in self.server_list:
|
|
|
|
if server['uuid'] == window('plex_machineIdentifier'):
|
|
|
|
media_server = server['server']
|
|
|
|
media_port = server['port']
|
|
|
|
scheme = server['protocol']
|
|
|
|
break
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Did not find our server!")
|
2016-03-24 02:40:31 +11:00
|
|
|
return False
|
2016-01-15 22:12:52 +11:00
|
|
|
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Checking server [%s] on port [%s]"
|
|
|
|
% (media_server, media_port))
|
2016-03-09 03:41:07 +11:00
|
|
|
client_result = self.download(
|
|
|
|
'%s://%s:%s/clients' % (scheme, media_server, media_port))
|
|
|
|
registered = False
|
|
|
|
for client in client_result:
|
|
|
|
if (client.attrib.get('machineIdentifier') ==
|
|
|
|
self.client_id):
|
|
|
|
registered = True
|
|
|
|
if registered:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.debug("Client registration successful. "
|
|
|
|
"Client data is: %s" % client_result)
|
2016-01-15 22:12:52 +11:00
|
|
|
return True
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Client registration not found. "
|
|
|
|
"Client data is: %s" % client_result)
|
2016-01-15 22:12:52 +11:00
|
|
|
except:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.error("Unable to check status")
|
2016-01-15 22:12:52 +11:00
|
|
|
pass
|
|
|
|
return False
|
2016-04-05 18:57:30 +10:00
|
|
|
|
|
|
|
def getServerList(self):
|
2016-01-15 22:12:52 +11:00
|
|
|
return self.server_list
|
2016-04-05 18:57:30 +10:00
|
|
|
|
2016-01-15 22:12:52 +11:00
|
|
|
def discover(self):
|
2016-03-23 00:40:38 +11:00
|
|
|
currServer = window('pms_server')
|
2016-06-03 05:12:56 +10:00
|
|
|
if not currServer:
|
|
|
|
return
|
|
|
|
currServerProt, currServerIP, currServerPort = \
|
|
|
|
currServer.split(':')
|
|
|
|
currServerIP = currServerIP.replace('/', '')
|
|
|
|
# Currently active server was not discovered via GDM; ADD
|
|
|
|
self.server_list = [{
|
|
|
|
'port': currServerPort,
|
|
|
|
'protocol': currServerProt,
|
|
|
|
'class': None,
|
|
|
|
'content-type': 'plex/media-server',
|
|
|
|
'discovery': 'auto',
|
|
|
|
'master': 1,
|
|
|
|
'owned': '1',
|
|
|
|
'role': 'master',
|
|
|
|
'server': currServerIP,
|
|
|
|
'serverName': window('plex_servername'),
|
|
|
|
'updated': int(time.time()),
|
|
|
|
'uuid': window('plex_machineIdentifier'),
|
|
|
|
'version': 'irrelevant'
|
|
|
|
}]
|
2016-01-15 22:12:52 +11:00
|
|
|
|
|
|
|
def setInterval(self, interval):
|
|
|
|
self.discovery_interval = interval
|
|
|
|
|
|
|
|
def stop_all(self):
|
|
|
|
self.stop_discovery()
|
|
|
|
self.stop_registration()
|
|
|
|
|
|
|
|
def stop_discovery(self):
|
|
|
|
if self._discovery_is_running:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Discovery shutting down")
|
2016-01-15 22:12:52 +11:00
|
|
|
self._discovery_is_running = False
|
|
|
|
self.discover_t.join()
|
|
|
|
del self.discover_t
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Discovery not running")
|
2016-01-15 22:12:52 +11:00
|
|
|
|
|
|
|
def stop_registration(self):
|
|
|
|
if self._registration_is_running:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Registration shutting down")
|
2016-01-15 22:12:52 +11:00
|
|
|
self._registration_is_running = False
|
|
|
|
self.register_t.join()
|
|
|
|
del self.register_t
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Registration not running")
|
2016-01-15 22:12:52 +11:00
|
|
|
|
|
|
|
def run_discovery_loop(self):
|
2016-04-05 18:57:30 +10:00
|
|
|
# Run initial discovery
|
2016-01-15 22:12:52 +11:00
|
|
|
self.discover()
|
|
|
|
|
2016-04-05 18:57:30 +10:00
|
|
|
discovery_count = 0
|
2016-01-15 22:12:52 +11:00
|
|
|
while self._discovery_is_running:
|
2016-04-05 18:57:30 +10:00
|
|
|
discovery_count += 1
|
2016-01-15 22:12:52 +11:00
|
|
|
if discovery_count > self.discovery_interval:
|
|
|
|
self.discover()
|
2016-04-05 18:57:30 +10:00
|
|
|
discovery_count = 0
|
|
|
|
sleep(500)
|
2016-01-15 22:12:52 +11:00
|
|
|
|
2016-04-05 18:57:30 +10:00
|
|
|
def start_discovery(self, daemon=False):
|
2016-01-15 22:12:52 +11:00
|
|
|
if not self._discovery_is_running:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Discovery starting up")
|
2016-01-15 22:12:52 +11:00
|
|
|
self._discovery_is_running = True
|
|
|
|
self.discover_t = threading.Thread(target=self.run_discovery_loop)
|
|
|
|
self.discover_t.setDaemon(daemon)
|
|
|
|
self.discover_t.start()
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Discovery already running")
|
2016-04-05 18:57:30 +10:00
|
|
|
|
|
|
|
def start_registration(self, daemon=False):
|
2016-01-15 22:12:52 +11:00
|
|
|
if not self._registration_is_running:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Registration starting up")
|
2016-01-15 22:12:52 +11:00
|
|
|
self._registration_is_running = True
|
|
|
|
self.register_t = threading.Thread(target=self.client_update)
|
|
|
|
self.register_t.setDaemon(daemon)
|
|
|
|
self.register_t.start()
|
|
|
|
else:
|
2016-09-03 01:20:19 +10:00
|
|
|
log.info("Registration already running")
|
2016-04-05 18:57:30 +10:00
|
|
|
|
|
|
|
def start_all(self, daemon=False):
|
2016-01-15 22:12:52 +11:00
|
|
|
self.start_discovery(daemon)
|
2016-04-27 01:15:05 +10:00
|
|
|
if settings('plexCompanion') == 'true':
|
|
|
|
self.start_registration(daemon)
|