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
|
2015-03-18 13:45:15 +11:00
|
|
|
from WriteKodiDB import WriteKodiDB
|
2015-03-29 03:42:38 +11:00
|
|
|
from ReadKodiDB import ReadKodiDB
|
|
|
|
from PlayUtils import PlayUtils
|
2015-03-24 14:54:11 +11:00
|
|
|
from DownloadUtils import DownloadUtils
|
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
|
2015-03-25 10:52:23 +11:00
|
|
|
#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')
|
2015-03-24 14:54:11 +11:00
|
|
|
port = addon.getSetting('port')
|
|
|
|
host = addon.getSetting('ipaddress')
|
|
|
|
server = host + ":" + port
|
2015-03-29 03:42:38 +11:00
|
|
|
downloadUtils = DownloadUtils()
|
2015-03-30 21:01:26 +11:00
|
|
|
print "onNotification:" + method + ":" + sender + ":" + str(data)
|
2015-03-29 03:42:38 +11:00
|
|
|
#player started playing an item -
|
2015-03-30 19:36:43 +11:00
|
|
|
if method == "Player.OnPlay":
|
2015-03-29 03:42:38 +11:00
|
|
|
print "playlist onadd is called"
|
|
|
|
jsondata = json.loads(data)
|
|
|
|
if jsondata != None:
|
|
|
|
if jsondata.has_key("item"):
|
|
|
|
if jsondata.get("item").has_key("id") and jsondata.get("item").has_key("type"):
|
|
|
|
id = jsondata.get("item").get("id")
|
|
|
|
type = jsondata.get("item").get("type")
|
|
|
|
embyid = ReadKodiDB().getEmbyIdByKodiId(id,type)
|
|
|
|
|
|
|
|
if embyid != None:
|
|
|
|
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
|
|
|
|
userid = downloadUtils.getUserId()
|
|
|
|
jsonData = downloadUtils.downloadUrl("http://" + server + "/mediabrowser/Users/" + userid + "/Items/" + embyid + "?format=json&ImageTypeLimit=1", suppress=False, popup=1 )
|
|
|
|
result = json.loads(jsonData)
|
|
|
|
userData = result.get("UserData")
|
|
|
|
|
|
|
|
playurl = PlayUtils().getPlayUrl(server, embyid, result)
|
|
|
|
|
|
|
|
watchedurl = 'http://' + server + '/mediabrowser/Users/'+ userid + '/PlayedItems/' + embyid
|
|
|
|
positionurl = 'http://' + server + '/mediabrowser/Users/'+ userid + '/PlayingItems/' + embyid
|
|
|
|
deleteurl = 'http://' + server + '/mediabrowser/Items/' + embyid
|
|
|
|
|
|
|
|
# set the current playing info
|
|
|
|
WINDOW.setProperty(playurl+"watchedurl", watchedurl)
|
|
|
|
WINDOW.setProperty(playurl+"positionurl", positionurl)
|
|
|
|
WINDOW.setProperty(playurl+"deleteurl", "")
|
|
|
|
WINDOW.setProperty(playurl+"deleteurl", deleteurl)
|
|
|
|
if result.get("Type")=="Episode":
|
|
|
|
WINDOW.setProperty(playurl+"refresh_id", result.get("SeriesId"))
|
|
|
|
else:
|
|
|
|
WINDOW.setProperty(playurl+"refresh_id", embyid)
|
|
|
|
|
|
|
|
WINDOW.setProperty(playurl+"runtimeticks", str(result.get("RunTimeTicks")))
|
|
|
|
WINDOW.setProperty(playurl+"type", result.get("Type"))
|
|
|
|
WINDOW.setProperty(playurl+"item_id", embyid)
|
|
|
|
|
|
|
|
if PlayUtils().isDirectPlay(result) == True:
|
|
|
|
playMethod = "DirectPlay"
|
|
|
|
else:
|
|
|
|
playMethod = "Transcode"
|
|
|
|
|
|
|
|
WINDOW.setProperty(playurl+"playmethod", playMethod)
|
|
|
|
|
|
|
|
mediaSources = result.get("MediaSources")
|
|
|
|
if(mediaSources != None):
|
|
|
|
if mediaSources[0].get('DefaultAudioStreamIndex') != None:
|
|
|
|
WINDOW.setProperty(playurl+"AudioStreamIndex", str(mediaSources[0].get('DefaultAudioStreamIndex')))
|
|
|
|
if mediaSources[0].get('DefaultSubtitleStreamIndex') != None:
|
|
|
|
WINDOW.setProperty(playurl+"SubtitleStreamIndex", str(mediaSources[0].get('DefaultSubtitleStreamIndex')))
|
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
if method == "VideoLibrary.OnUpdate":
|
2015-03-18 14:18:30 +11:00
|
|
|
jsondata = json.loads(data)
|
|
|
|
if jsondata != None:
|
2015-03-19 15:37:20 +11:00
|
|
|
|
2015-03-18 14:18:30 +11:00
|
|
|
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)
|
2015-03-18 14:18:30 +11:00
|
|
|
WriteKodiDB().updatePlayCountFromKodi(item, type, playcount)
|
2015-04-03 10:41:39 +11:00
|
|
|
|
2015-03-24 11:35:00 +11:00
|
|
|
|
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
|