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-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):
|
2015-03-20 19:26:37 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
if method == "VideoLibrary.OnUpdate":
|
2015-03-20 19:26:37 +00:00
|
|
|
|
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-03-24 00:35:00 +00:00
|
|
|
if method == "VideoLibrary.OnRemove":
|
|
|
|
|
|
|
|
jsondata = json.loads(data)
|
|
|
|
if jsondata != None:
|
|
|
|
if jsondata.get("type") == "episode":
|
|
|
|
episodeid = jsondata.get("id")
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
MBlist = WINDOW.getProperty("episodeid" + str(episodeid)).split(";;")
|
|
|
|
return_value = xbmcgui.Dialog().yesno("Confirm Delete", "Not really going to, but if I were I would delete: Title - "+ MBlist[0] + " MBID: " + MBlist[1])
|
|
|
|
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
|