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-05-07 09:45:24 +00:00
|
|
|
from WriteKodiVideoDB import WriteKodiVideoDB
|
2015-03-28 16:42:38 +00:00
|
|
|
from ReadKodiDB import ReadKodiDB
|
|
|
|
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
|
|
|
|
2015-05-25 16:49:06 +00:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
class Kodi_Monitor(xbmc.Monitor):
|
2015-05-04 18:54:42 +00:00
|
|
|
|
|
|
|
WINDOW = xbmcgui.Window(10000)
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
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-05-04 18:54:42 +00:00
|
|
|
|
|
|
|
WINDOW = self.WINDOW
|
2015-03-28 16:42:38 +00:00
|
|
|
downloadUtils = DownloadUtils()
|
2015-05-25 16:49:06 +00:00
|
|
|
#player started playing an item -
|
2015-05-26 23:12:13 +00:00
|
|
|
if ("Playlist.OnAdd" in method or "Player.OnPlay" in method) and addon.getSetting('useDirectPaths')=='true':
|
2015-05-25 16:49:06 +00:00
|
|
|
|
|
|
|
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 )
|
|
|
|
username = WINDOW.getProperty('currUser')
|
|
|
|
userid = WINDOW.getProperty('userId%s' % username)
|
|
|
|
server = WINDOW.getProperty('server%s' % username)
|
|
|
|
|
|
|
|
url = "{server}/mediabrowser/Users/{UserId}/Items/" + embyid + "?format=json&ImageTypeLimit=1"
|
|
|
|
result = downloadUtils.downloadUrl(url)
|
|
|
|
print "Here: " + str(result)
|
|
|
|
userData = result[u'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"
|
2015-05-03 18:30:24 +00:00
|
|
|
|
2015-05-25 16:49:06 +00:00
|
|
|
WINDOW.setProperty(playurl+"playmethod", playMethod)
|
|
|
|
|
|
|
|
mediaSources = result.get("MediaSources")
|
|
|
|
if(mediaSources != None):
|
2015-06-09 10:30:01 +00:00
|
|
|
mediaStream = mediaSources[0].get('MediaStreams')
|
|
|
|
defaultsubs = ""
|
|
|
|
for stream in mediaStream:
|
|
|
|
if u'Subtitle' in stream[u'Type'] and stream[u'IsDefault']:
|
|
|
|
if u'Language' in stream:
|
|
|
|
defaultsubs = stream[u'Language']
|
|
|
|
else:
|
|
|
|
defaultsubs = stream[u'Codec']
|
|
|
|
WINDOW.setProperty("%ssubs" % playurl, defaultsubs.encode('utf-8'))
|
2015-05-25 16:49:06 +00:00
|
|
|
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-13 21:24:59 +00:00
|
|
|
if method == "VideoLibrary.OnUpdate":
|
2015-05-25 04:29:42 +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")
|
|
|
|
prop = WINDOW.getProperty('Played%s%s' % (type,item))
|
|
|
|
processWatched = WINDOW.getProperty('played_skipWatched')
|
|
|
|
|
|
|
|
if (playcount != None) and (prop != "true") and (processWatched != "true"):
|
|
|
|
WINDOW.setProperty("Played%s%s" % (type,item), "true")
|
|
|
|
utils.logMsg("MB# Sync","Kodi_Monitor--> VideoLibrary.OnUpdate : " + str(data),2)
|
|
|
|
WriteKodiVideoDB().updatePlayCountFromKodi(item, type, playcount)
|
|
|
|
|
|
|
|
self.clearProperty(type,item)
|
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
|
2015-06-16 05:53:01 +00:00
|
|
|
WINDOW.setProperty("OnWakeSync", "true")
|
2015-05-04 18:54:42 +00:00
|
|
|
|
2015-05-08 16:23:22 +00:00
|
|
|
if method == "VideoLibrary.OnRemove":
|
|
|
|
xbmc.log('Intercepted remove from sender: ' + sender + ' method: ' + method + ' data: ' + data)
|
|
|
|
jsondata = json.loads(data)
|
|
|
|
id = ReadKodiDB().getEmbyIdByKodiId(jsondata.get("id"), jsondata.get("type"))
|
|
|
|
if id == None:
|
|
|
|
return
|
|
|
|
xbmc.log("Deleting Emby ID: " + id + " from database")
|
|
|
|
connection = utils.KodiSQL()
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("DELETE FROM emby WHERE emby_id = ?", (id,))
|
|
|
|
connection.commit()
|
2015-05-09 00:01:25 +00:00
|
|
|
cursor.close
|
2015-05-08 16:23:22 +00:00
|
|
|
|
2015-05-09 00:01:25 +00:00
|
|
|
if jsondata:
|
2015-05-08 16:23:22 +00:00
|
|
|
if jsondata.get("type") == "episode":
|
|
|
|
url='{server}/mediabrowser/Items?Ids=' + id + '&format=json'
|
|
|
|
#This is a check to see if the item exists on the server, if it doesn't it may have already been deleted by another client
|
|
|
|
result = DownloadUtils().downloadUrl(url)
|
|
|
|
item = result.get("Items")[0]
|
2015-05-09 00:01:25 +00:00
|
|
|
if data:
|
2015-05-08 16:23:22 +00:00
|
|
|
return_value = xbmcgui.Dialog().yesno("Confirm Delete", "Delete file on Emby Server?")
|
|
|
|
if return_value:
|
|
|
|
url='{server}/mediabrowser/Items/' + id
|
|
|
|
xbmc.log('Deleting via URL: ' + url)
|
|
|
|
DownloadUtils().downloadUrl(url, type="DELETE")
|
|
|
|
|
2015-05-04 18:54:42 +00:00
|
|
|
def clearProperty(self,type,id):
|
|
|
|
# The sleep is necessary since VideoLibrary.OnUpdate
|
|
|
|
# triggers 3 times in a row.
|
|
|
|
xbmc.sleep(100)
|
|
|
|
self.WINDOW.clearProperty("Played%s%s" % (type,id))
|
2015-05-16 06:31:08 +00:00
|
|
|
self.WINDOW.clearProperty('played_skipWatched')
|
2015-05-03 15:05:26 +00:00
|
|
|
|
|
|
|
|
2015-03-24 00:35:00 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
|