2015-12-25 07:07:00 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
import json
|
2016-03-17 03:02:22 +11:00
|
|
|
from unicodedata import normalize
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcgui
|
|
|
|
|
|
|
|
import downloadutils
|
|
|
|
import embydb_functions as embydb
|
|
|
|
import playbackutils as pbutils
|
|
|
|
import utils
|
2016-03-12 00:42:14 +11:00
|
|
|
from PlexFunctions import scrobble
|
2016-01-13 00:14:49 +11:00
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
|
2016-01-27 03:20:13 +11:00
|
|
|
@utils.logging
|
2015-12-25 07:07:00 +11:00
|
|
|
class KodiMonitor(xbmc.Monitor):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
2016-03-17 03:02:22 +11:00
|
|
|
self.doUtils = downloadutils.DownloadUtils().downloadUrl
|
|
|
|
self.xbmcplayer = xbmc.Player()
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
self.logMsg("Kodi monitor started.", 1)
|
|
|
|
|
|
|
|
def onScanStarted(self, library):
|
|
|
|
self.logMsg("Kodi library scan %s running." % library, 2)
|
|
|
|
if library == "video":
|
|
|
|
utils.window('emby_kodiScan', value="true")
|
2016-02-20 06:03:06 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
def onScanFinished(self, library):
|
|
|
|
self.logMsg("Kodi library scan %s finished." % library, 2)
|
|
|
|
if library == "video":
|
|
|
|
utils.window('emby_kodiScan', clear=True)
|
|
|
|
|
2016-01-09 21:53:04 +11:00
|
|
|
def onSettingsChanged(self):
|
|
|
|
# Monitor emby settings
|
2016-02-27 15:30:56 +11:00
|
|
|
# Review reset setting at a later time, need to be adjusted to account for initial setup
|
|
|
|
# changes.
|
|
|
|
'''currentPath = utils.settings('useDirectPaths')
|
2016-01-09 21:53:04 +11:00
|
|
|
if utils.window('emby_pluginpath') != currentPath:
|
|
|
|
# Plugin path value changed. Offer to reset
|
|
|
|
self.logMsg("Changed to playback mode detected", 1)
|
|
|
|
utils.window('emby_pluginpath', value=currentPath)
|
|
|
|
resp = xbmcgui.Dialog().yesno(
|
|
|
|
heading="Playback mode change detected",
|
|
|
|
line1=(
|
|
|
|
"Detected the playback mode has changed. The database "
|
|
|
|
"needs to be recreated for the change to be applied. "
|
|
|
|
"Proceed?"))
|
|
|
|
if resp:
|
2016-02-27 15:30:56 +11:00
|
|
|
utils.reset()'''
|
2016-01-09 21:53:04 +11:00
|
|
|
|
|
|
|
currentLog = utils.settings('logLevel')
|
|
|
|
if utils.window('emby_logLevel') != currentLog:
|
|
|
|
# The log level changed, set new prop
|
|
|
|
self.logMsg("New log level: %s" % currentLog, 1)
|
|
|
|
utils.window('emby_logLevel', value=currentLog)
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
def onNotification(self, sender, method, data):
|
|
|
|
if method not in ("Playlist.OnAdd"):
|
|
|
|
self.logMsg("Method: %s Data: %s" % (method, data), 1)
|
2016-03-17 03:02:22 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if data:
|
2016-03-17 03:02:22 +11:00
|
|
|
data = json.loads(data, 'utf-8')
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if method == "Player.OnPlay":
|
2016-03-17 03:02:22 +11:00
|
|
|
self.PlayBackStart(data)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
elif method == "VideoLibrary.OnUpdate":
|
|
|
|
# Manually marking as watched/unwatched
|
|
|
|
playcount = data.get('playcount')
|
|
|
|
item = data.get('item')
|
|
|
|
try:
|
|
|
|
kodiid = item['id']
|
|
|
|
type = item['type']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
self.logMsg("Item is invalid for playstate update.", 1)
|
|
|
|
else:
|
|
|
|
# Send notification to the server.
|
2016-03-16 22:49:55 +11:00
|
|
|
with embydb.GetEmbyDB() as emby_db:
|
|
|
|
emby_dbitem = emby_db.getItem_byKodiId(kodiid, type)
|
2015-12-25 07:07:00 +11:00
|
|
|
try:
|
|
|
|
itemid = emby_dbitem[0]
|
|
|
|
except TypeError:
|
|
|
|
self.logMsg("Could not find itemid in emby database.", 1)
|
|
|
|
else:
|
|
|
|
# Stop from manually marking as watched unwatched, with actual playback.
|
|
|
|
if utils.window('emby_skipWatched%s' % itemid) == "true":
|
|
|
|
# property is set in player.py
|
|
|
|
utils.window('emby_skipWatched%s' % itemid, clear=True)
|
|
|
|
else:
|
|
|
|
# notify the server
|
|
|
|
if playcount != 0:
|
2016-03-12 00:42:14 +11:00
|
|
|
scrobble(itemid, 'watched')
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
2016-03-12 00:42:14 +11:00
|
|
|
scrobble(itemid, 'unwatched')
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
elif method == "VideoLibrary.OnRemove":
|
2016-02-17 15:13:10 +11:00
|
|
|
# Removed function, because with plugin paths + clean library, it will wipe
|
|
|
|
# entire library if user has permissions. Instead, use the emby context menu available
|
|
|
|
# in Isengard and higher version
|
|
|
|
pass
|
|
|
|
'''try:
|
2015-12-25 07:07:00 +11:00
|
|
|
kodiid = data['id']
|
|
|
|
type = data['type']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
self.logMsg("Item is invalid for emby deletion.", 1)
|
|
|
|
else:
|
|
|
|
# Send the delete action to the server.
|
2015-12-28 20:54:46 +11:00
|
|
|
embyconn = utils.kodiSQL('emby')
|
|
|
|
embycursor = embyconn.cursor()
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
emby_dbitem = emby_db.getItem_byKodiId(kodiid, type)
|
|
|
|
try:
|
|
|
|
itemid = emby_dbitem[0]
|
|
|
|
except TypeError:
|
|
|
|
self.logMsg("Could not find itemid in emby database.", 1)
|
|
|
|
else:
|
2016-02-13 09:30:20 +11:00
|
|
|
if utils.settings('skipContextMenu') != "true":
|
2015-12-28 20:54:46 +11:00
|
|
|
resp = xbmcgui.Dialog().yesno(
|
|
|
|
heading="Confirm delete",
|
|
|
|
line1="Delete file on Emby Server?")
|
|
|
|
if not resp:
|
|
|
|
self.logMsg("User skipped deletion.", 1)
|
|
|
|
embycursor.close()
|
|
|
|
return
|
2016-02-13 09:30:20 +11:00
|
|
|
|
2015-12-28 20:54:46 +11:00
|
|
|
url = "{server}/emby/Items/%s?format=json" % itemid
|
|
|
|
self.logMsg("Deleting request: %s" % itemid)
|
|
|
|
doUtils.downloadUrl(url, type="DELETE")
|
|
|
|
finally:
|
2016-02-17 15:13:10 +11:00
|
|
|
embycursor.close()'''
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
elif method == "System.OnWake":
|
|
|
|
# Allow network to wake up
|
|
|
|
xbmc.sleep(10000)
|
|
|
|
utils.window('emby_onWake', value="true")
|
|
|
|
|
|
|
|
elif method == "Playlist.OnClear":
|
2016-03-17 03:02:22 +11:00
|
|
|
pass
|
|
|
|
|
|
|
|
def PlayBackStart(self, data):
|
|
|
|
"""
|
|
|
|
Called whenever a playback is started
|
|
|
|
"""
|
|
|
|
log = self.logMsg
|
|
|
|
window = utils.window
|
|
|
|
|
|
|
|
# Try to get a Kodi ID
|
|
|
|
item = data.get('item')
|
|
|
|
try:
|
|
|
|
kodiid = item['id']
|
|
|
|
type = item['type']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
log("Item is invalid for Plex playstate update.", 0)
|
|
|
|
return
|
|
|
|
|
|
|
|
# Get Plex' item id
|
|
|
|
with embydb.GetEmbyDB() as emby_db:
|
|
|
|
emby_dbitem = emby_db.getItem_byKodiId(kodiid, type)
|
|
|
|
try:
|
|
|
|
plexid = emby_dbitem[0]
|
|
|
|
except TypeError:
|
|
|
|
log("No Plex id returned for kodiid %s" % kodiid, 0)
|
|
|
|
return
|
|
|
|
log("Found Plex id %s for Kodi id %s" % (plexid, kodiid), 1)
|
|
|
|
|
|
|
|
# Get currently playing file - can take a while
|
|
|
|
try:
|
|
|
|
currentFile = self.xbmcplayer.getPlayingFile()
|
|
|
|
xbmc.sleep(300)
|
|
|
|
except:
|
|
|
|
currentFile = ""
|
|
|
|
count = 0
|
|
|
|
while not currentFile:
|
|
|
|
xbmc.sleep(100)
|
|
|
|
try:
|
|
|
|
currentFile = self.xbmcplayer.getPlayingFile()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
if count == 20:
|
|
|
|
log("No current File - Cancelling OnPlayBackStart...", -1)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
count += 1
|
|
|
|
currentFile = currentFile.decode('utf-8')
|
|
|
|
log("Currently playing file is: %s" % currentFile, 1)
|
|
|
|
# Normalize to string, because we need to use this in WINDOW(key),
|
|
|
|
# where key can only be string
|
|
|
|
currentFile = normalize('NFKD', currentFile).encode('ascii', 'ignore')
|
|
|
|
log('Normalized filename: %s' % currentFile, 1)
|
|
|
|
|
|
|
|
# Set some stuff if Kodi initiated playback
|
|
|
|
if ((utils.settings('useDirectPaths') == "1" and not type == "song") or
|
|
|
|
(type == "song" and utils.settings('enableMusic') == "true")):
|
|
|
|
if self.StartDirectPath(plexid, type, currentFile) is False:
|
|
|
|
log('Could not initiate monitoring; aborting', -1)
|
|
|
|
return
|
|
|
|
|
|
|
|
# Save currentFile for cleanup later and to be able to access refs
|
|
|
|
window('plex_lastPlayedFiled', value=currentFile)
|
|
|
|
window('Plex_currently_playing_itemid', value=plexid)
|
|
|
|
window("emby_%s.itemid" % currentFile, value=plexid)
|
|
|
|
log('Finish playback startup', 1)
|
|
|
|
|
|
|
|
def StartDirectPath(self, plexid, type, currentFile):
|
|
|
|
"""
|
|
|
|
Set some additional stuff if playback was initiated by Kodi, not PKC
|
|
|
|
"""
|
|
|
|
result = self.doUtils('{server}/library/metadata/%s' % plexid)
|
|
|
|
try:
|
|
|
|
result[0].attrib
|
|
|
|
except:
|
|
|
|
self.logMsg('Did not receive a valid XML for plexid %s.'
|
|
|
|
% plexid, -1)
|
|
|
|
return False
|
|
|
|
# Setup stuff, because playback was started by Kodi, not PKC
|
|
|
|
pbutils.PlaybackUtils(result[0]).setProperties(
|
|
|
|
currentFile, xbmcgui.ListItem())
|
|
|
|
if type == "song" and utils.settings('streamMusic') == "true":
|
|
|
|
utils.window('emby_%s.playmethod' % currentFile,
|
|
|
|
value="DirectStream")
|
|
|
|
else:
|
|
|
|
utils.window('emby_%s.playmethod' % currentFile,
|
|
|
|
value="DirectPlay")
|
|
|
|
self.logMsg('Window properties set for direct paths!', 0)
|