jellyfin-kodi/resources/lib/KodiMonitor.py

39 lines
1.5 KiB
Python
Raw Normal View History

2015-03-13 21:24:59 +00:00
#################################################################################################
# Kodi Monitor
# Watched events that occur in Kodi, like setting media watched
#################################################################################################
import xbmc
import xbmcgui
import xbmcaddon
import json
import Utils as utils
from WriteKodiDB import WriteKodiDB
2015-03-13 21:24:59 +00:00
class Kodi_Monitor(xbmc.Monitor):
def __init__(self, *args, **kwargs):
xbmc.Monitor.__init__(self)
def onDatabaseUpdated(self, database):
pass
#this library monitor is used to detect a watchedstate change by the user through the library
def onNotification (self,sender,method,data):
if method == "VideoLibrary.OnUpdate":
#check windowprop if the sync is busy to prevent any false updates
WINDOW = xbmcgui.Window( 10000 )
2015-03-13 21:24:59 +00:00
if WINDOW.getProperty("librarysync") != "busy":
xbmc.log("Kodi_Monitor -> onNotification -> VideoLibrary.OnUpdate : " + str(data))
2015-03-13 21:24:59 +00:00
jsondata = json.loads(data)
if jsondata != None:
playcount = None
playcount = jsondata.get("playcount")
item = jsondata.get("item").get("id")
type = jsondata.get("item").get("type")
2015-03-13 21:24:59 +00:00
if playcount != None:
WriteKodiDB().updatePlayCountFromKodi(item, type, playcount)
2015-03-13 21:24:59 +00:00