mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
e197208d3e
* Add temporary setting to disable external subs for direct stream * Fix crash when sleeping/waking up device * Use the logging module. Moved logging to it's own file. * Version bump 2.2.17 * Update README.md
219 lines
No EOL
9.1 KiB
Python
219 lines
No EOL
9.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
import json
|
|
import logging
|
|
|
|
import xbmc
|
|
import xbmcgui
|
|
|
|
import clientinfo
|
|
import downloadutils
|
|
import embydb_functions as embydb
|
|
import playbackutils as pbutils
|
|
from utils import window, settings, kodiSQL
|
|
|
|
#################################################################################################
|
|
|
|
log = logging.getLogger("EMBY."+__name__)
|
|
|
|
#################################################################################################
|
|
|
|
|
|
class KodiMonitor(xbmc.Monitor):
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.clientInfo = clientinfo.ClientInfo()
|
|
self.addonName = self.clientInfo.getAddonName()
|
|
self.doUtils = downloadutils.DownloadUtils()
|
|
|
|
log.info("Kodi monitor started.")
|
|
|
|
|
|
def onScanStarted(self, library):
|
|
log.debug("Kodi library scan %s running." % library)
|
|
if library == "video":
|
|
window('emby_kodiScan', value="true")
|
|
|
|
def onScanFinished(self, library):
|
|
log.debug("Kodi library scan %s finished." % library)
|
|
if library == "video":
|
|
window('emby_kodiScan', clear=True)
|
|
|
|
def onSettingsChanged(self):
|
|
# Monitor emby settings
|
|
# Review reset setting at a later time, need to be adjusted to account for initial setup
|
|
# changes.
|
|
'''currentPath = utils.settings('useDirectPaths')
|
|
if utils.window('emby_pluginpath') != currentPath:
|
|
# Plugin path value changed. Offer to reset
|
|
log("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:
|
|
utils.reset()'''
|
|
|
|
currentLog = settings('logLevel')
|
|
if window('emby_logLevel') != currentLog:
|
|
# The log level changed, set new prop
|
|
log.info("New log level: %s" % currentLog)
|
|
window('emby_logLevel', value=currentLog)
|
|
|
|
def onNotification(self, sender, method, data):
|
|
|
|
doUtils = self.doUtils
|
|
if method not in ("Playlist.OnAdd"):
|
|
log.info("Method: %s Data: %s" % (method, data))
|
|
|
|
if data:
|
|
data = json.loads(data,'utf-8')
|
|
|
|
|
|
if method == "Player.OnPlay":
|
|
# Set up report progress for emby playback
|
|
item = data.get('item')
|
|
try:
|
|
kodiid = item['id']
|
|
item_type = item['type']
|
|
except (KeyError, TypeError):
|
|
log.info("Item is invalid for playstate update.")
|
|
else:
|
|
if ((settings('useDirectPaths') == "1" and not item_type == "song") or
|
|
(item_type == "song" and settings('enableMusic') == "true")):
|
|
# Set up properties for player
|
|
embyconn = kodiSQL('emby')
|
|
embycursor = embyconn.cursor()
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
emby_dbitem = emby_db.getItem_byKodiId(kodiid, item_type)
|
|
try:
|
|
itemid = emby_dbitem[0]
|
|
except TypeError:
|
|
log.info("No kodiId returned.")
|
|
else:
|
|
url = "{server}/emby/Users/{UserId}/Items/%s?format=json" % itemid
|
|
result = doUtils.downloadUrl(url)
|
|
log.debug("Item: %s" % result)
|
|
|
|
playurl = None
|
|
count = 0
|
|
while not playurl and count < 2:
|
|
try:
|
|
playurl = xbmc.Player().getPlayingFile()
|
|
except RuntimeError:
|
|
count += 1
|
|
xbmc.sleep(200)
|
|
else:
|
|
listItem = xbmcgui.ListItem()
|
|
playback = pbutils.PlaybackUtils(result)
|
|
|
|
if item_type == "song" and settings('streamMusic') == "true":
|
|
window('emby_%s.playmethod' % playurl, value="DirectStream")
|
|
else:
|
|
window('emby_%s.playmethod' % playurl, value="DirectPlay")
|
|
# Set properties for player.py
|
|
playback.setProperties(playurl, listItem)
|
|
finally:
|
|
embycursor.close()
|
|
|
|
|
|
elif method == "VideoLibrary.OnUpdate":
|
|
# Manually marking as watched/unwatched
|
|
playcount = data.get('playcount')
|
|
item = data.get('item')
|
|
try:
|
|
kodiid = item['id']
|
|
item_type = item['type']
|
|
except (KeyError, TypeError):
|
|
log.info("Item is invalid for playstate update.")
|
|
else:
|
|
# Send notification to the server.
|
|
embyconn = kodiSQL('emby')
|
|
embycursor = embyconn.cursor()
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
emby_dbitem = emby_db.getItem_byKodiId(kodiid, item_type)
|
|
try:
|
|
itemid = emby_dbitem[0]
|
|
except TypeError:
|
|
log.info("Could not find itemid in emby database.")
|
|
else:
|
|
# Stop from manually marking as watched unwatched, with actual playback.
|
|
if window('emby_skipWatched%s' % itemid) == "true":
|
|
# property is set in player.py
|
|
window('emby_skipWatched%s' % itemid, clear=True)
|
|
else:
|
|
# notify the server
|
|
url = "{server}/emby/Users/{UserId}/PlayedItems/%s?format=json" % itemid
|
|
if playcount != 0:
|
|
doUtils.downloadUrl(url, action_type="POST")
|
|
log.info("Mark as watched for itemid: %s" % itemid)
|
|
else:
|
|
doUtils.downloadUrl(url, action_type="DELETE")
|
|
log.info("Mark as unwatched for itemid: %s" % itemid)
|
|
finally:
|
|
embycursor.close()
|
|
|
|
|
|
elif method == "VideoLibrary.OnRemove":
|
|
# 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:
|
|
kodiid = data['id']
|
|
type = data['type']
|
|
except (KeyError, TypeError):
|
|
log("Item is invalid for emby deletion.", 1)
|
|
else:
|
|
# Send the delete action to the server.
|
|
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:
|
|
log("Could not find itemid in emby database.", 1)
|
|
else:
|
|
if utils.settings('skipContextMenu') != "true":
|
|
resp = xbmcgui.Dialog().yesno(
|
|
heading="Confirm delete",
|
|
line1="Delete file on Emby Server?")
|
|
if not resp:
|
|
log("User skipped deletion.", 1)
|
|
embycursor.close()
|
|
return
|
|
|
|
url = "{server}/emby/Items/%s?format=json" % itemid
|
|
log("Deleting request: %s" % itemid)
|
|
doUtils.downloadUrl(url, action_type="DELETE")
|
|
finally:
|
|
embycursor.close()'''
|
|
|
|
elif method == "System.OnSleep":
|
|
# Connection is going to sleep
|
|
log.info("Marking the server as offline. System.OnSleep activated.")
|
|
window('emby_online', value="sleep")
|
|
|
|
elif method == "System.OnWake":
|
|
# Allow network to wake up
|
|
xbmc.sleep(10000)
|
|
window('emby_online', value="false")
|
|
window('emby_onWake', value="true")
|
|
|
|
|
|
elif method == "GUI.OnScreensaverDeactivated":
|
|
if settings('dbSyncScreensaver') == "true":
|
|
xbmc.sleep(5000);
|
|
window('emby_onWake', value="true")
|
|
|
|
|
|
elif method == "Playlist.OnClear":
|
|
pass |