PlexKodiConnect/resources/lib/KodiMonitor.py

58 lines
2.2 KiB
Python
Raw Normal View History

2015-03-14 08:24:59 +11: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
from ReadKodiDB import ReadKodiDB
2015-05-04 01:05:26 +10:00
from LibrarySync import LibrarySync
from PlayUtils import PlayUtils
from DownloadUtils import DownloadUtils
2015-05-03 00:49:47 +10:00
from PlaybackUtils import PlaybackUtils
2015-03-14 08:24:59 +11: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
#as well as detect when a library item has been deleted to pass the delete to the Emby server
2015-03-14 08:24:59 +11:00
def onNotification (self,sender,method,data):
2015-03-26 04:37:21 +11:00
addon = xbmcaddon.Addon(id='plugin.video.emby')
downloadUtils = DownloadUtils()
print "onNotification:" + method + ":" + sender + ":" + str(data)
#player started playing an item -
2015-05-03 00:49:47 +10:00
if method == "Playlist.OnAdd":
print "playlist onadd is called"
2015-05-03 02:04:32 +10:00
2015-03-14 08:24:59 +11:00
if method == "VideoLibrary.OnUpdate":
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")
if playcount != None:
2015-03-21 06:26:37 +11:00
utils.logMsg("MB# Sync","Kodi_Monitor--> VideoLibrary.OnUpdate : " + str(data),2)
WriteKodiDB().updatePlayCountFromKodi(item, type, playcount)
2015-05-04 01:05:26 +10:00
if method == "System.OnWake":
xbmc.sleep(10000) #Allow network to wake up
utils.logMsg("Doing_Db_Sync Post Resume: syncDatabase (Started)",1)
2015-05-04 01:19:02 +10:00
libSync = LibrarySync().FullLibrarySync()
2015-05-04 01:05:26 +10:00
utils.logMsg("Doing_Db_Sync Post Resume: syncDatabase (Finished) " + str(libSync),1)
2015-03-24 11:35:00 +11:00
2015-03-14 08:24:59 +11:00