2015-03-13 21:24:59 +00:00
|
|
|
import xbmcaddon
|
|
|
|
import xbmcplugin
|
|
|
|
import xbmc
|
|
|
|
import xbmcgui
|
|
|
|
import os
|
|
|
|
import threading
|
|
|
|
import json
|
2015-03-20 20:00:17 +00:00
|
|
|
import inspect
|
2015-04-28 22:23:26 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
import KodiMonitor
|
|
|
|
import Utils as utils
|
2015-04-28 22:23:26 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
from DownloadUtils import DownloadUtils
|
2015-04-18 17:10:06 +00:00
|
|
|
from WebSocketClient import WebSocketThread
|
2015-03-13 21:24:59 +00:00
|
|
|
from PlayUtils import PlayUtils
|
|
|
|
from ClientInformation import ClientInformation
|
|
|
|
from LibrarySync import LibrarySync
|
2015-03-28 01:34:09 +00:00
|
|
|
from PlaybackUtils import PlaybackUtils
|
2015-04-07 14:21:54 +00:00
|
|
|
from ReadEmbyDB import ReadEmbyDB
|
|
|
|
from API import API
|
2015-06-05 10:12:09 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
librarySync = LibrarySync()
|
|
|
|
|
|
|
|
# service class for playback monitoring
|
|
|
|
class Player( xbmc.Player ):
|
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
# Borg - multiple instances, shared state
|
|
|
|
_shared_state = {}
|
|
|
|
|
|
|
|
xbmcplayer = xbmc.Player()
|
|
|
|
doUtils = DownloadUtils()
|
|
|
|
clientInfo = ClientInformation()
|
|
|
|
ws = WebSocketThread()
|
|
|
|
|
|
|
|
addonName = clientInfo.getAddonName()
|
|
|
|
addonId = clientInfo.getAddonId()
|
|
|
|
addon = xbmcaddon.Addon(id=addonId)
|
|
|
|
|
|
|
|
WINDOW = xbmcgui.Window(10000)
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
logLevel = 0
|
|
|
|
played_information = {}
|
|
|
|
settings = None
|
|
|
|
playStats = {}
|
2015-06-08 03:48:28 +00:00
|
|
|
|
2015-06-11 08:17:48 +00:00
|
|
|
audioPref = "default"
|
|
|
|
subsPref = "default"
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def __init__( self, *args ):
|
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
self.__dict__ = self._shared_state
|
|
|
|
self.logMsg("Starting playback monitor service", 1)
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
def logMsg(self, msg, lvl=1):
|
|
|
|
|
|
|
|
self.className = self.__class__.__name__
|
2015-06-11 08:17:48 +00:00
|
|
|
utils.logMsg("%s %s" % (self.addonName, self.className), msg, int(lvl))
|
|
|
|
|
|
|
|
def setAudioSubsPref(self, audio, subs):
|
|
|
|
self.audioPref = audio
|
|
|
|
self.subsPref = subs
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def hasData(self, data):
|
|
|
|
if(data == None or len(data) == 0 or data == "None"):
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
return True
|
|
|
|
|
|
|
|
def stopAll(self):
|
|
|
|
|
|
|
|
if(len(self.played_information) == 0):
|
|
|
|
return
|
|
|
|
|
2015-03-25 17:37:21 +00:00
|
|
|
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("emby Service -> played_information : " + str(self.played_information))
|
2015-05-16 06:31:08 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
for item_url in self.played_information:
|
|
|
|
data = self.played_information.get(item_url)
|
2015-04-28 22:23:26 +00:00
|
|
|
if (data is not None):
|
|
|
|
self.logMsg("emby Service -> item_url : " + item_url)
|
|
|
|
self.logMsg("emby Service -> item_data : " + str(data))
|
2015-05-16 06:31:08 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
runtime = data.get("runtime")
|
|
|
|
currentPosition = data.get("currentPosition")
|
|
|
|
item_id = data.get("item_id")
|
|
|
|
refresh_id = data.get("refresh_id")
|
|
|
|
currentFile = data.get("currentfile")
|
2015-03-19 17:40:29 +00:00
|
|
|
type = data.get("Type")
|
2015-03-23 05:24:52 +00:00
|
|
|
|
2015-05-16 06:31:08 +00:00
|
|
|
# Prevent websocket feedback
|
|
|
|
self.WINDOW.setProperty("played_itemId", item_id)
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
if(currentPosition != None and self.hasData(runtime)):
|
|
|
|
runtimeTicks = int(runtime)
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("emby Service -> runtimeticks:" + str(runtimeTicks))
|
2015-03-13 21:24:59 +00:00
|
|
|
percentComplete = (currentPosition * 10000000) / runtimeTicks
|
|
|
|
markPlayedAt = float(90) / 100
|
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("emby Service -> Percent Complete:" + str(percentComplete) + " Mark Played At:" + str(markPlayedAt))
|
2015-05-16 06:31:08 +00:00
|
|
|
if percentComplete < markPlayedAt:
|
|
|
|
# Do not mark as watched
|
|
|
|
self.WINDOW.setProperty('played_skipWatched', 'true')
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
self.stopPlayback(data)
|
|
|
|
|
2015-07-04 15:04:04 +00:00
|
|
|
offerDelete=False
|
|
|
|
if data.get("Type") == "Episode" and addonSettings.getSetting("offerDeleteTV")=="true":
|
|
|
|
offerDelete = True
|
|
|
|
elif data.get("Type") == "Movie" and addonSettings.getSetting("offerDeleteMovies")=="true":
|
|
|
|
offerDelete = True
|
|
|
|
|
|
|
|
if percentComplete > .80 and offerDelete == True:
|
2015-05-08 17:40:36 +00:00
|
|
|
return_value = xbmcgui.Dialog().yesno("Offer Delete", "Delete\n" + data.get("currentfile").split("/")[-1] + "\non Emby Server? ")
|
|
|
|
if return_value:
|
2015-06-28 12:08:06 +00:00
|
|
|
# Delete Kodi entry before Emby
|
|
|
|
listItem = [item_id]
|
|
|
|
LibrarySync().removefromDB(listItem, True)
|
2015-04-07 14:21:54 +00:00
|
|
|
|
2015-05-07 06:11:20 +00:00
|
|
|
# Stop transcoding
|
|
|
|
if self.WINDOW.getProperty("transcoding%s" % item_id) == "true":
|
|
|
|
deviceId = self.clientInfo.getMachineId()
|
|
|
|
url = "{server}/mediabrowser/Videos/ActiveEncodings?DeviceId=%s" % deviceId
|
|
|
|
self.doUtils.downloadUrl(url, type="DELETE")
|
|
|
|
self.WINDOW.clearProperty("transcoding%s" % item_id)
|
2015-04-07 14:21:54 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
self.played_information.clear()
|
|
|
|
|
|
|
|
def stopPlayback(self, data):
|
2015-04-28 22:23:26 +00:00
|
|
|
|
|
|
|
self.logMsg("stopPlayback called", 2)
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
item_id = data.get("item_id")
|
|
|
|
currentPosition = data.get("currentPosition")
|
2015-04-28 22:23:26 +00:00
|
|
|
positionTicks = int(currentPosition * 10000000)
|
|
|
|
|
|
|
|
url = "{server}/mediabrowser/Sessions/Playing/Stopped"
|
2015-04-13 18:56:36 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
postdata = {
|
|
|
|
'ItemId': item_id,
|
|
|
|
'MediaSourceId': item_id,
|
|
|
|
'PositionTicks': positionTicks
|
2015-05-16 06:31:08 +00:00
|
|
|
}
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
self.doUtils.downloadUrl(url, postBody=postdata, type="POST")
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def reportPlayback(self):
|
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("reportPlayback Called", 2)
|
|
|
|
xbmcplayer = self.xbmcplayer
|
2015-05-03 16:26:04 +00:00
|
|
|
|
|
|
|
if not xbmcplayer.isPlaying():
|
|
|
|
self.logMsg("reportPlayback: Not playing anything so returning", 0)
|
|
|
|
return
|
2015-04-28 22:23:26 +00:00
|
|
|
|
|
|
|
currentFile = xbmcplayer.getPlayingFile()
|
2015-03-13 21:24:59 +00:00
|
|
|
data = self.played_information.get(currentFile)
|
2015-04-28 22:23:26 +00:00
|
|
|
|
2015-03-25 17:37:21 +00:00
|
|
|
# only report playback if emby has initiated the playback (item_id has value)
|
2015-05-16 06:31:08 +00:00
|
|
|
if data is not None and data.get("item_id") is not None:
|
2015-04-28 22:23:26 +00:00
|
|
|
|
|
|
|
# Get playback information
|
2015-03-13 21:24:59 +00:00
|
|
|
item_id = data.get("item_id")
|
|
|
|
audioindex = data.get("AudioStreamIndex")
|
|
|
|
subtitleindex = data.get("SubtitleStreamIndex")
|
2015-04-28 22:23:26 +00:00
|
|
|
playTime = data.get("currentPosition")
|
2015-03-13 21:24:59 +00:00
|
|
|
playMethod = data.get("playmethod")
|
|
|
|
paused = data.get("paused")
|
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
if paused is None:
|
|
|
|
paused = False
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-05-16 06:31:08 +00:00
|
|
|
# Get playback volume
|
|
|
|
volume_query = '{"jsonrpc": "2.0", "method": "Application.GetProperties", "params": {"properties": ["volume","muted"]}, "id": 1}'
|
|
|
|
result = xbmc.executeJSONRPC(volume_query)
|
|
|
|
result = json.loads(result)
|
|
|
|
volume = result.get(u'result').get(u'volume')
|
|
|
|
muted = result.get(u'result').get(u'muted')
|
|
|
|
|
2015-08-06 04:30:33 +00:00
|
|
|
# Get current audio and subtitles track
|
2015-08-06 04:56:47 +00:00
|
|
|
track_query = '{"jsonrpc": "2.0", "method": "Player.GetProperties", "params": {"playerid":1,"properties": ["currentsubtitle","currentaudiostream","subtitleenabled"]} , "id": 1}'
|
2015-08-06 04:30:33 +00:00
|
|
|
result = xbmc.executeJSONRPC(track_query)
|
|
|
|
result = json.loads(result)
|
|
|
|
indexAudio = result['result']['currentaudiostream']['index']
|
|
|
|
indexSubs = result['result']['currentsubtitle']['index']
|
2015-08-06 04:56:47 +00:00
|
|
|
subsEnabled = result['result']['subtitleenabled']
|
2015-08-06 04:30:33 +00:00
|
|
|
|
|
|
|
# Convert back into an Emby index
|
|
|
|
audioTracks = len(xbmc.Player().getAvailableAudioStreams())
|
|
|
|
indexAudio = indexAudio + 1
|
2015-08-06 04:56:47 +00:00
|
|
|
if subsEnabled:
|
|
|
|
indexSubs = indexSubs + audioTracks + 1
|
|
|
|
else:
|
|
|
|
indexSubs = ""
|
2015-08-06 04:30:33 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
postdata = {
|
|
|
|
'QueueableMediaTypes': "Video",
|
|
|
|
'CanSeek': True,
|
|
|
|
'ItemId': item_id,
|
|
|
|
'MediaSourceId': item_id,
|
2015-05-16 06:31:08 +00:00
|
|
|
'PlayMethod': playMethod,
|
2015-04-28 22:23:26 +00:00
|
|
|
'IsPaused': paused,
|
2015-05-16 06:31:08 +00:00
|
|
|
'VolumeLevel': volume,
|
|
|
|
'IsMuted': muted
|
2015-04-28 22:23:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if playTime:
|
|
|
|
postdata['PositionTicks'] = int(playTime * 10000000)
|
|
|
|
|
2015-08-06 04:30:33 +00:00
|
|
|
if audioindex == indexAudio:
|
2015-04-28 22:23:26 +00:00
|
|
|
postdata['AudioStreamIndex'] = audioindex
|
2015-08-06 04:30:33 +00:00
|
|
|
else:
|
|
|
|
postdata['AudioStreamIndex'] = indexAudio
|
|
|
|
data['AudioStreamIndex'] = indexAudio
|
2015-04-28 22:23:26 +00:00
|
|
|
|
2015-08-06 04:30:33 +00:00
|
|
|
if subtitleindex == indexSubs:
|
2015-04-28 22:23:26 +00:00
|
|
|
postdata['SubtitleStreamIndex'] = subtitleindex
|
2015-08-06 04:30:33 +00:00
|
|
|
else:
|
|
|
|
postdata['SubtitleStreamIndex'] = indexSubs
|
|
|
|
data['SubtitleStreamIndex'] = indexSubs
|
2015-04-28 22:23:26 +00:00
|
|
|
|
|
|
|
postdata = json.dumps(postdata)
|
2015-05-03 06:06:44 +00:00
|
|
|
self.logMsg("Report: %s" % postdata, 2)
|
2015-04-28 22:23:26 +00:00
|
|
|
self.ws.sendProgressUpdate(postdata)
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def onPlayBackPaused( self ):
|
|
|
|
currentFile = xbmc.Player().getPlayingFile()
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("PLAYBACK_PAUSED : " + currentFile,2)
|
2015-03-13 21:24:59 +00:00
|
|
|
if(self.played_information.get(currentFile) != None):
|
|
|
|
self.played_information[currentFile]["paused"] = "true"
|
|
|
|
self.reportPlayback()
|
|
|
|
|
|
|
|
def onPlayBackResumed( self ):
|
|
|
|
currentFile = xbmc.Player().getPlayingFile()
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("PLAYBACK_RESUMED : " + currentFile,2)
|
2015-03-13 21:24:59 +00:00
|
|
|
if(self.played_information.get(currentFile) != None):
|
|
|
|
self.played_information[currentFile]["paused"] = "false"
|
|
|
|
self.reportPlayback()
|
|
|
|
|
|
|
|
def onPlayBackSeek( self, time, seekOffset ):
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("PLAYBACK_SEEK",2)
|
2015-05-16 08:52:30 +00:00
|
|
|
# Make position when seeking a bit more accurate
|
|
|
|
try:
|
|
|
|
playTime = xbmc.Player().getTime()
|
|
|
|
currentFile = xbmc.Player().getPlayingFile()
|
|
|
|
if(self.played_information.get(currentFile) != None):
|
|
|
|
self.played_information[currentFile]["currentPosition"] = playTime
|
|
|
|
except: pass
|
2015-05-16 08:47:06 +00:00
|
|
|
self.reportPlayback()
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def onPlayBackStarted( self ):
|
|
|
|
# Will be called when xbmc starts playing a file
|
2015-04-28 22:23:26 +00:00
|
|
|
WINDOW = self.WINDOW
|
2015-06-08 03:48:28 +00:00
|
|
|
addon = self.addon
|
2015-04-28 22:23:26 +00:00
|
|
|
xbmcplayer = self.xbmcplayer
|
2015-03-13 21:24:59 +00:00
|
|
|
self.stopAll()
|
|
|
|
|
2015-03-22 13:02:38 +00:00
|
|
|
if xbmcplayer.isPlaying():
|
2015-05-02 16:36:06 +00:00
|
|
|
|
|
|
|
currentFile = ""
|
|
|
|
try:
|
|
|
|
currentFile = xbmcplayer.getPlayingFile()
|
|
|
|
except: pass
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("onPlayBackStarted: %s" % currentFile, 0)
|
2015-03-30 10:01:26 +00:00
|
|
|
|
|
|
|
# we may need to wait until the info is available
|
|
|
|
item_id = WINDOW.getProperty(currentFile + "item_id")
|
|
|
|
tryCount = 0
|
|
|
|
while(item_id == None or item_id == ""):
|
|
|
|
xbmc.sleep(500)
|
|
|
|
item_id = WINDOW.getProperty(currentFile + "item_id")
|
|
|
|
tryCount += 1
|
|
|
|
if(tryCount == 20): # try 20 times or about 10 seconds
|
|
|
|
return
|
|
|
|
xbmc.sleep(500)
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
# grab all the info about this item from the stored windows props
|
|
|
|
# only ever use the win props here, use the data map in all other places
|
|
|
|
runtime = WINDOW.getProperty(currentFile + "runtimeticks")
|
|
|
|
refresh_id = WINDOW.getProperty(currentFile + "refresh_id")
|
|
|
|
audioindex = WINDOW.getProperty(currentFile + "AudioStreamIndex")
|
|
|
|
subtitleindex = WINDOW.getProperty(currentFile + "SubtitleStreamIndex")
|
|
|
|
playMethod = WINDOW.getProperty(currentFile + "playmethod")
|
|
|
|
itemType = WINDOW.getProperty(currentFile + "type")
|
2015-04-28 22:23:26 +00:00
|
|
|
|
2015-05-25 03:59:57 +00:00
|
|
|
# Get playback volume
|
2015-05-16 06:31:08 +00:00
|
|
|
volume_query = '{"jsonrpc": "2.0", "method": "Application.GetProperties", "params": {"properties": ["volume","muted"]}, "id": 1}'
|
|
|
|
result = xbmc.executeJSONRPC(volume_query)
|
|
|
|
result = json.loads(result)
|
|
|
|
volume = result.get(u'result').get(u'volume')
|
2015-05-25 03:59:57 +00:00
|
|
|
muted = result.get(u'result').get(u'muted')
|
2015-07-20 01:35:14 +00:00
|
|
|
|
2015-08-06 04:30:33 +00:00
|
|
|
# Get the current audio track and subtitles
|
2015-08-06 04:56:47 +00:00
|
|
|
track_query = '{"jsonrpc": "2.0", "method": "Player.GetProperties", "params": {"playerid":1,"properties": ["currentsubtitle","currentaudiostream","subtitleenabled"]} , "id": 1}'
|
2015-08-06 04:30:33 +00:00
|
|
|
result = xbmc.executeJSONRPC(track_query)
|
|
|
|
result = json.loads(result)
|
|
|
|
indexAudio = result['result']['currentaudiostream']['index']
|
|
|
|
indexSubs = result['result']['currentsubtitle']['index']
|
2015-08-06 04:56:47 +00:00
|
|
|
subsEnabled = result['result']['subtitleenabled']
|
2015-08-06 04:30:33 +00:00
|
|
|
|
2015-07-20 01:35:14 +00:00
|
|
|
seekTime = xbmc.Player().getTime()
|
2015-04-13 18:56:36 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
url = "{server}/mediabrowser/Sessions/Playing"
|
|
|
|
postdata = {
|
|
|
|
'QueueableMediaTypes': "Video",
|
|
|
|
'CanSeek': True,
|
|
|
|
'ItemId': item_id,
|
|
|
|
'MediaSourceId': item_id,
|
2015-05-16 06:31:08 +00:00
|
|
|
'PlayMethod': playMethod,
|
2015-05-25 03:59:57 +00:00
|
|
|
'VolumeLevel': volume,
|
2015-07-20 04:36:15 +00:00
|
|
|
'PositionTicks': int(seekTime * 10000000),
|
2015-05-25 03:59:57 +00:00
|
|
|
'IsMuted': muted
|
2015-04-28 22:23:26 +00:00
|
|
|
}
|
2015-04-13 18:56:36 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
if audioindex:
|
|
|
|
postdata['AudioStreamIndex'] = audioindex
|
2015-08-06 04:30:33 +00:00
|
|
|
else:
|
|
|
|
postdata['AudioStreamIndex'] = indexAudio + 1
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-28 22:23:26 +00:00
|
|
|
if subtitleindex:
|
|
|
|
postdata['SubtitleStreamIndex'] = subtitleindex
|
2015-08-06 04:30:33 +00:00
|
|
|
else:
|
2015-08-06 04:56:47 +00:00
|
|
|
if subsEnabled:
|
|
|
|
audioTracks = len(xbmc.Player().getAvailableAudioStreams())
|
|
|
|
postdata['SubtitleStreamIndex'] = indexSubs + audioTracks + 1
|
|
|
|
else:
|
|
|
|
postdata['SubtitleStreamIndex'] = ""
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-05-16 06:31:08 +00:00
|
|
|
# Post playback to server
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("Sending POST play started.", 1)
|
2015-05-16 06:31:08 +00:00
|
|
|
self.doUtils.downloadUrl(url, postBody=postdata, type="POST")
|
2015-03-22 03:19:26 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
# save data map for updates and position calls
|
2015-05-16 06:31:08 +00:00
|
|
|
data = {
|
|
|
|
'runtime': runtime,
|
|
|
|
'item_id': item_id,
|
|
|
|
'refresh_id': refresh_id,
|
|
|
|
'currentfile': currentFile,
|
2015-08-06 04:30:33 +00:00
|
|
|
'AudioStreamIndex': postdata['AudioStreamIndex'],
|
|
|
|
'SubtitleStreamIndex': postdata['SubtitleStreamIndex'],
|
2015-05-16 06:31:08 +00:00
|
|
|
'playmethod': playMethod,
|
2015-05-16 19:57:44 +00:00
|
|
|
'Type': itemType,
|
2015-05-17 05:37:53 +00:00
|
|
|
'currentPosition': int(seekTime)
|
2015-05-16 06:31:08 +00:00
|
|
|
}
|
2015-03-23 05:24:52 +00:00
|
|
|
self.played_information[currentFile] = data
|
2015-05-16 06:31:08 +00:00
|
|
|
self.logMsg("ADDING_FILE: %s" % self.played_information, 1)
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
# log some playback stats
|
|
|
|
if(itemType != None):
|
|
|
|
if(self.playStats.get(itemType) != None):
|
|
|
|
count = self.playStats.get(itemType) + 1
|
|
|
|
self.playStats[itemType] = count
|
|
|
|
else:
|
|
|
|
self.playStats[itemType] = 1
|
|
|
|
|
|
|
|
if(playMethod != None):
|
|
|
|
if(self.playStats.get(playMethod) != None):
|
|
|
|
count = self.playStats.get(playMethod) + 1
|
|
|
|
self.playStats[playMethod] = count
|
|
|
|
else:
|
|
|
|
self.playStats[playMethod] = 1
|
|
|
|
|
|
|
|
# reset in progress position
|
2015-05-16 06:31:08 +00:00
|
|
|
#self.reportPlayback()
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def GetPlayStats(self):
|
|
|
|
return self.playStats
|
|
|
|
|
|
|
|
def onPlayBackEnded( self ):
|
|
|
|
# Will be called when xbmc stops playing a file
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("onPlayBackEnded", 0)
|
2015-03-22 03:19:26 +00:00
|
|
|
|
|
|
|
#workaround when strm files are launched through the addon - mark watched when finished playing
|
|
|
|
#TODO --> mark watched when 95% is played of the file
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
if WINDOW.getProperty("virtualstrm") != "":
|
|
|
|
try:
|
|
|
|
id = WINDOW.getProperty("virtualstrm")
|
|
|
|
type = WINDOW.getProperty("virtualstrmtype")
|
2015-04-28 22:23:26 +00:00
|
|
|
watchedurl = "{server}/mediabrowser/Users/{UserId}/PlayedItems/%s" % id
|
|
|
|
self.doUtils.downloadUrl(watchedurl, postBody="", type="POST")
|
2015-04-18 02:28:39 +00:00
|
|
|
librarySync.updatePlayCount(id)
|
2015-03-22 03:19:26 +00:00
|
|
|
except: pass
|
|
|
|
WINDOW.clearProperty("virtualstrm")
|
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
self.stopAll()
|
|
|
|
|
|
|
|
def onPlayBackStopped( self ):
|
|
|
|
# Will be called when user stops xbmc playing a file
|
2015-04-28 22:23:26 +00:00
|
|
|
self.logMsg("onPlayBackStopped", 0)
|
2015-03-13 21:24:59 +00:00
|
|
|
self.stopAll()
|