PlexKodiConnect/resources/lib/websocket_client.py

359 lines
12 KiB
Python
Raw Normal View History

2016-03-20 03:57:57 +11:00
# -*- coding: utf-8 -*-
2016-03-22 03:15:22 +11:00
###############################################################################
2016-03-20 03:57:57 +11:00
import json
import threading
2016-03-25 04:52:02 +11:00
import Queue
2016-03-20 03:57:57 +11:00
import websocket
2016-03-22 03:15:22 +11:00
import ssl
2016-03-20 03:57:57 +11:00
import xbmc
import xbmcgui
import clientinfo
import downloadutils
import playlist
import userclient
import utils
import logging
logging.basicConfig()
2016-03-22 03:15:22 +11:00
###############################################################################
2016-03-20 03:57:57 +11:00
2016-03-22 03:15:22 +11:00
@utils.logging
@utils.ThreadMethods
2016-03-20 03:57:57 +11:00
class WebSocket_Client(threading.Thread):
2016-03-25 04:52:02 +11:00
"""
websocket_client.WebSocket_Client(queue)
2016-03-20 03:57:57 +11:00
2016-03-25 04:52:02 +11:00
where (communication with librarysync)
queue: Queue object for background sync
"""
2016-03-20 03:57:57 +11:00
_shared_state = {}
client = None
stopWebsocket = False
2016-03-25 04:52:02 +11:00
def __init__(self, queue):
2016-03-20 03:57:57 +11:00
self.__dict__ = self._shared_state
2016-03-22 03:15:22 +11:00
2016-03-25 04:52:02 +11:00
# Communication with librarysync
self.queue = queue
2016-03-20 03:57:57 +11:00
self.doUtils = downloadutils.DownloadUtils()
self.clientInfo = clientinfo.ClientInfo()
self.deviceId = self.clientInfo.getDeviceId()
2016-03-22 03:15:22 +11:00
threading.Thread.__init__(self)
2016-03-20 03:57:57 +11:00
def sendProgressUpdate(self, data):
log = self.logMsg
log("sendProgressUpdate", 2)
try:
messageData = {
'MessageType': "ReportPlaybackProgress",
'Data': data
}
messageString = json.dumps(messageData)
self.client.send(messageString)
log("Message data: %s" % messageString, 2)
except Exception as e:
log("Exception: %s" % e, 1)
def on_message(self, ws, message):
2016-03-22 03:15:22 +11:00
"""
Will be called automatically if ws receives a message from PMS
"""
try:
message = json.loads(message)
2016-03-25 04:52:02 +11:00
except Exception as e:
self.logMsg('Error decoding message from websocket: %s' % e, -1)
2016-03-22 03:15:22 +11:00
return False
2016-03-28 04:06:36 +11:00
# Triage
2016-03-28 23:43:35 +11:00
self.logMsg('Message received: %s' % message, 2)
2016-03-28 04:06:36 +11:00
typus = message.get('type')
if typus is None:
self.logMsg('No message type, dropping message: %s' % message, -1)
return False
# Drop everything we're not interested in
if typus not in ('playing', 'timeline'):
return
2016-03-25 04:52:02 +11:00
# Put PMS message on queue and let libsync take care of it
try:
self.queue.put(message)
2016-03-22 03:15:22 +11:00
return True
2016-03-25 04:52:02 +11:00
except Queue.Full:
# Queue only takes 100 messages. No worries if we miss one or two
self.logMsg('Queue is full, dropping PMS message', 0)
return False
2016-03-22 03:15:22 +11:00
2016-03-28 04:06:36 +11:00
def on_message_LEGACY_EMBY(self, ws, message):
log = self.logMsg
window = utils.window
lang = utils.language
2016-03-22 03:15:22 +11:00
2016-03-28 04:06:36 +11:00
result = json.loads(message)
messageType = result['MessageType']
data = result['Data']
2016-03-20 03:57:57 +11:00
2016-03-28 04:06:36 +11:00
if messageType not in ('SessionEnded'):
# Mute certain events
log("Message: %s" % message, 1)
2016-03-20 03:57:57 +11:00
if messageType == "Play":
# A remote control play command has been sent from the server.
itemIds = data['ItemIds']
command = data['PlayCommand']
pl = playlist.Playlist()
dialog = xbmcgui.Dialog()
if command == "PlayNow":
dialog.notification(
heading="Emby for Kodi",
message="%s %s" % (len(itemIds), lang(33004)),
icon="special://home/addons/plugin.video.emby/icon.png",
sound=False)
startat = data.get('StartPositionTicks', 0)
pl.playAll(itemIds, startat)
elif command == "PlayNext":
dialog.notification(
heading="Emby for Kodi",
message="%s %s" % (len(itemIds), lang(33005)),
icon="special://home/addons/plugin.video.emby/icon.png",
sound=False)
newplaylist = pl.modifyPlaylist(itemIds)
player = xbmc.Player()
if not player.isPlaying():
# Only start the playlist if nothing is playing
player.play(newplaylist)
elif messageType == "Playstate":
# A remote control update playstate command has been sent from the server.
command = data['Command']
player = xbmc.Player()
actions = {
'Stop': player.stop,
'Unpause': player.pause,
'Pause': player.pause,
'NextTrack': player.playnext,
'PreviousTrack': player.playprevious,
'Seek': player.seekTime
}
action = actions[command]
if command == "Seek":
seekto = data['SeekPositionTicks']
seektime = seekto / 10000000.0
action(seektime)
log("Seek to %s." % seektime, 1)
else:
action()
log("Command: %s completed." % command, 1)
window('emby_command', value="true")
elif messageType == "UserDataChanged":
# A user changed their personal rating for an item, or their playstate was updated
userdata_list = data['UserDataList']
self.librarySync.triage_items("userdata", userdata_list)
elif messageType == "LibraryChanged":
librarySync = self.librarySync
processlist = {
'added': data['ItemsAdded'],
'update': data['ItemsUpdated'],
'remove': data['ItemsRemoved']
}
for action in processlist:
librarySync.triage_items(action, processlist[action])
elif messageType == "GeneralCommand":
command = data['Name']
arguments = data['Arguments']
if command in ('Mute', 'Unmute', 'SetVolume',
'SetSubtitleStreamIndex', 'SetAudioStreamIndex'):
player = xbmc.Player()
# These commands need to be reported back
if command == "Mute":
xbmc.executebuiltin('Mute')
elif command == "Unmute":
xbmc.executebuiltin('Mute')
elif command == "SetVolume":
volume = arguments['Volume']
xbmc.executebuiltin('SetVolume(%s[,showvolumebar])' % volume)
elif command == "SetAudioStreamIndex":
index = int(arguments['Index'])
player.setAudioStream(index - 1)
elif command == "SetSubtitleStreamIndex":
embyindex = int(arguments['Index'])
currentFile = player.getPlayingFile()
mapping = window('emby_%s.indexMapping' % currentFile)
if mapping:
externalIndex = json.loads(mapping)
# If there's external subtitles added via playbackutils
for index in externalIndex:
if externalIndex[index] == embyindex:
player.setSubtitleStream(int(index))
break
else:
# User selected internal subtitles
external = len(externalIndex)
audioTracks = len(player.getAvailableAudioStreams())
player.setSubtitleStream(external + embyindex - audioTracks - 1)
else:
# Emby merges audio and subtitle index together
audioTracks = len(player.getAvailableAudioStreams())
player.setSubtitleStream(index - audioTracks - 1)
# Let service know
window('emby_command', value="true")
elif command == "DisplayMessage":
header = arguments['Header']
text = arguments['Text']
xbmcgui.Dialog().notification(
heading=header,
message=text,
icon="special://home/addons/plugin.video.emby/icon.png",
time=4000)
elif command == "SendString":
string = arguments['String']
text = {
'jsonrpc': "2.0",
'id': 0,
'method': "Input.SendText",
'params': {
'text': "%s" % string,
'done': False
}
}
result = xbmc.executeJSONRPC(json.dumps(text))
else:
builtin = {
'ToggleFullscreen': 'Action(FullScreen)',
'ToggleOsdMenu': 'Action(OSD)',
'ToggleContextMenu': 'Action(ContextMenu)',
'MoveUp': 'Action(Up)',
'MoveDown': 'Action(Down)',
'MoveLeft': 'Action(Left)',
'MoveRight': 'Action(Right)',
'Select': 'Action(Select)',
'Back': 'Action(back)',
'GoHome': 'ActivateWindow(Home)',
'PageUp': 'Action(PageUp)',
'NextLetter': 'Action(NextLetter)',
'GoToSearch': 'VideoLibrary.Search',
'GoToSettings': 'ActivateWindow(Settings)',
'PageDown': 'Action(PageDown)',
'PreviousLetter': 'Action(PrevLetter)',
'TakeScreenshot': 'TakeScreenshot',
'ToggleMute': 'Mute',
'VolumeUp': 'Action(VolumeUp)',
'VolumeDown': 'Action(VolumeDown)',
}
action = builtin.get(command)
if action:
xbmc.executebuiltin(action)
elif messageType == "ServerRestarting":
if utils.settings('supressRestartMsg') == "true":
xbmcgui.Dialog().notification(
2016-03-28 04:06:36 +11:00
heading="Emby for Kodi",
2016-03-20 03:57:57 +11:00
message=lang(33006),
icon="special://home/addons/plugin.video.emby/icon.png")
elif messageType == "UserConfigurationUpdated":
# Update user data set in userclient
userclient.UserClient().userSettings = data
self.librarySync.refresh_views = True
def on_close(self, ws):
self.logMsg("Closed.", 2)
def on_open(self, ws):
2016-03-22 03:15:22 +11:00
return
2016-03-28 04:06:36 +11:00
# Can we post something to Plex?
2016-03-20 03:57:57 +11:00
self.doUtils.postCapabilities(self.deviceId)
def on_error(self, ws, error):
if "10061" in str(error):
# Server is offline
pass
else:
self.logMsg("Error: %s" % error, 2)
def run(self):
log = self.logMsg
window = utils.window
# websocket.enableTrace(True)
2016-03-22 03:15:22 +11:00
server = window('pms_server')
2016-03-28 04:06:36 +11:00
# Need to use plex.tv token, if any. NOT user token
2016-03-28 01:57:20 +11:00
token = window('plex_token')
2016-03-20 03:57:57 +11:00
# Get the appropriate prefix for the websocket
if "https" in server:
server = server.replace('https', "wss")
else:
server = server.replace('http', "ws")
2016-03-22 03:15:22 +11:00
websocket_url = "%s/:/websockets/notifications" % server
if token:
websocket_url += '?X-Plex-Token=%s' % token
2016-03-20 03:57:57 +11:00
log("websocket url: %s" % websocket_url, 1)
2016-03-22 03:15:22 +11:00
sslopt = {}
if utils.settings('sslverify') == "false":
sslopt["cert_reqs"] = ssl.CERT_NONE
2016-03-20 03:57:57 +11:00
2016-03-22 03:15:22 +11:00
self.client = websocket.WebSocketApp(
websocket_url,
on_message=self.on_message,
on_error=self.on_error,
on_close=self.on_close)
2016-03-20 03:57:57 +11:00
2016-03-22 03:15:22 +11:00
self.client.on_open = self.on_open
log("----===## Starting WebSocketClient ##===----", 0)
2016-03-20 03:57:57 +11:00
2016-03-22 03:15:22 +11:00
while not self.threadStopped():
self.client.run_forever(ping_interval=10,
sslopt=sslopt)
xbmc.sleep(100)
2016-03-20 03:57:57 +11:00
log("##===---- WebSocketClient Stopped ----===##", 0)
2016-03-22 03:15:22 +11:00
def stopThread(self):
"""
Overwrite this method from ThreadMethods to close websockets first
"""
self.logMsg("Stopping websocket client thread.", 1)
2016-03-20 03:57:57 +11:00
self.client.close()
2016-03-22 03:15:22 +11:00
self._threadStopped = True