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
|
2015-03-18 02:45:15 +00:00
|
|
|
from WriteKodiDB import WriteKodiDB
|
2015-03-28 16:42:38 +00:00
|
|
|
from ReadKodiDB import ReadKodiDB
|
2015-05-03 15:05:26 +00:00
|
|
|
from LibrarySync import LibrarySync
|
2015-03-28 16:42:38 +00:00
|
|
|
from PlayUtils import PlayUtils
|
2015-03-24 03:54:11 +00:00
|
|
|
from DownloadUtils import DownloadUtils
|
2015-05-02 14:49:47 +00:00
|
|
|
from PlaybackUtils import PlaybackUtils
|
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
|
2015-03-24 23:52:23 +00:00
|
|
|
#as well as detect when a library item has been deleted to pass the delete to the Emby server
|
2015-03-13 21:24:59 +00:00
|
|
|
def onNotification (self,sender,method,data):
|
2015-03-25 17:37:21 +00:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-28 16:42:38 +00:00
|
|
|
downloadUtils = DownloadUtils()
|
2015-03-30 10:01:26 +00:00
|
|
|
print "onNotification:" + method + ":" + sender + ":" + str(data)
|
2015-03-28 16:42:38 +00:00
|
|
|
#player started playing an item -
|
2015-05-02 14:49:47 +00:00
|
|
|
if method == "Playlist.OnAdd":
|
2015-03-28 16:42:38 +00:00
|
|
|
print "playlist onadd is called"
|
2015-05-02 16:04:32 +00:00
|
|
|
|
2015-03-28 16:42:38 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
if method == "VideoLibrary.OnUpdate":
|
2015-03-18 03:18:30 +00:00
|
|
|
jsondata = json.loads(data)
|
|
|
|
if jsondata != None:
|
2015-03-19 04:37:20 +00:00
|
|
|
|
2015-03-18 03:18:30 +00:00
|
|
|
playcount = None
|
|
|
|
playcount = jsondata.get("playcount")
|
|
|
|
item = jsondata.get("item").get("id")
|
|
|
|
type = jsondata.get("item").get("type")
|
|
|
|
if playcount != None:
|
2015-03-20 19:26:37 +00:00
|
|
|
utils.logMsg("MB# Sync","Kodi_Monitor--> VideoLibrary.OnUpdate : " + str(data),2)
|
2015-03-18 03:18:30 +00:00
|
|
|
WriteKodiDB().updatePlayCountFromKodi(item, type, playcount)
|
2015-04-02 23:41:39 +00:00
|
|
|
|
2015-05-03 15:05:26 +00: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-03 15:19:02 +00:00
|
|
|
libSync = LibrarySync().FullLibrarySync()
|
2015-05-03 15:05:26 +00:00
|
|
|
utils.logMsg("Doing_Db_Sync Post Resume: syncDatabase (Finished) " + str(libSync),1)
|
|
|
|
|
|
|
|
|
2015-03-24 00:35:00 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
|