# -*- coding: utf-8 -*- ############################################################################### import json import xbmc import xbmcgui import utils import clientinfo import downloadutils import embydb_functions as embydb import kodidb_functions as kodidb from urllib import urlencode ############################################################################### @utils.logging class Player(xbmc.Player): # Borg - multiple instances, shared state _shared_state = {} played_info = {} playStats = {} currentFile = None def __init__(self): self.__dict__ = self._shared_state self.clientInfo = clientinfo.ClientInfo() self.doUtils = downloadutils.DownloadUtils().downloadUrl xbmc.Player.__init__(self) self.logMsg("Started playback monitor.", 2) def GetPlayStats(self): return self.playStats def onPlayBackStarted(self): """ Window values need to have been set in Kodimonitor.py """ window = utils.window # Will be called when xbmc starts playing a file self.stopAll() # Get current file (in utf-8!) try: currentFile = self.getPlayingFile() xbmc.sleep(300) except: currentFile = "" count = 0 while not currentFile: xbmc.sleep(100) try: currentFile = self.getPlayingFile() except: pass if count == 20: self.logMsg("Cancelling playback report...", 1) break else: count += 1 if not currentFile: self.logMsg('Error getting a currently playing file; abort ' 'reporting', -1) return # Save currentFile for cleanup later and for references self.currentFile = currentFile window('plex_lastPlayedFiled', value=utils.tryDecode(currentFile)) # We may need to wait for info to be set in kodi monitor itemId = window("emby_%s.itemid" % currentFile) count = 0 while not itemId: xbmc.sleep(200) itemId = window("emby_%s.itemid" % currentFile) if count == 5: self.logMsg("Could not find itemId, cancelling playback " "report!", -1) return count += 1 self.logMsg("ONPLAYBACK_STARTED: %s itemid: %s" % (utils.tryDecode(currentFile), itemId), 0) embyitem = "emby_%s" % currentFile runtime = window("%s.runtime" % embyitem) refresh_id = window("%s.refreshid" % embyitem) playMethod = window("%s.playmethod" % embyitem) itemType = window("%s.type" % embyitem) try: playcount = int(window("%s.playcount" % embyitem)) except ValueError: playcount = 0 window('emby_skipWatched%s' % itemId, value="true") self.logMsg("Playing itemtype is: %s" % itemType, 1) customseek = window('plex_customplaylist.seektime') if customseek: # Start at, when using custom playlist (play to Kodi from webclient) self.logMsg("Seeking to: %s" % customseek, 1) try: self.seekTime(int(customseek)) except: self.logMsg('Could not seek!', -1) window('plex_customplaylist.seektime', clear=True) try: seekTime = self.getTime() except RuntimeError: self.logMsg('Could not get current seektime from xbmc player', -1) seekTime = 0 # Get playback volume volume_query = { "jsonrpc": "2.0", "id": 1, "method": "Application.GetProperties", "params": { "properties": ["volume", "muted"] } } result = xbmc.executeJSONRPC(json.dumps(volume_query)) result = json.loads(result) result = result.get('result') volume = result.get('volume') muted = result.get('muted') # Postdata structure to send to Emby server url = "{server}/:/timeline?" postdata = { 'QueueableMediaTypes': "Video", 'CanSeek': True, 'ItemId': itemId, 'MediaSourceId': itemId, 'PlayMethod': playMethod, 'VolumeLevel': volume, 'PositionTicks': int(seekTime * 10000000), 'IsMuted': muted } # Get the current audio track and subtitles if playMethod == "Transcode": # property set in PlayUtils.py postdata['AudioStreamIndex'] = window("%sAudioStreamIndex" % currentFile) postdata['SubtitleStreamIndex'] = window("%sSubtitleStreamIndex" % currentFile) else: # Get the current kodi audio and subtitles and convert to Emby equivalent tracks_query = { "jsonrpc": "2.0", "id": 1, "method": "Player.GetProperties", "params": { "playerid": 1, "properties": ["currentsubtitle","currentaudiostream","subtitleenabled"] } } result = xbmc.executeJSONRPC(json.dumps(tracks_query)) result = json.loads(result) result = result.get('result') try: # Audio tracks indexAudio = result['currentaudiostream']['index'] except (KeyError, TypeError): indexAudio = 0 try: # Subtitles tracks indexSubs = result['currentsubtitle']['index'] except (KeyError, TypeError): indexSubs = 0 try: # If subtitles are enabled subsEnabled = result['subtitleenabled'] except (KeyError, TypeError): subsEnabled = "" # Postdata for the audio postdata['AudioStreamIndex'] = indexAudio + 1 # Postdata for the subtitles if subsEnabled and len(xbmc.Player().getAvailableSubtitleStreams()) > 0: # Number of audiotracks to help get Emby Index audioTracks = len(xbmc.Player().getAvailableAudioStreams()) mapping = window("%s.indexMapping" % embyitem) if mapping: # Set in playbackutils.py self.logMsg("Mapping for external subtitles index: %s" % mapping, 2) externalIndex = json.loads(mapping) if externalIndex.get(str(indexSubs)): # If the current subtitle is in the mapping postdata['SubtitleStreamIndex'] = externalIndex[str(indexSubs)] else: # Internal subtitle currently selected subindex = indexSubs - len(externalIndex) + audioTracks + 1 postdata['SubtitleStreamIndex'] = subindex else: # Direct paths enabled scenario or no external subtitles set postdata['SubtitleStreamIndex'] = indexSubs + audioTracks + 1 else: postdata['SubtitleStreamIndex'] = "" # Post playback to server # log("Sending POST play started: %s." % postdata, 2) # self.doUtils(url, postBody=postdata, type="POST") # Ensure we do have a runtime try: runtime = int(runtime) except ValueError: try: runtime = self.getTotalTime() self.logMsg("Runtime is missing, Kodi runtime: %s" % runtime, 1) except: self.logMsg('Could not get kodi runtime, setting to zero', -1) runtime = 0 playQueueVersion = window('playQueueVersion') playQueueID = window('playQueueID') playQueueItemID = window('plex_%s.playQueueItemID' % currentFile) with embydb.GetEmbyDB() as emby_db: emby_dbitem = emby_db.getItem_byId(itemId) try: fileid = emby_dbitem[1] except TypeError: self.logMsg("Could not find fileid in plex db.", 1) fileid = None # Save data map for updates and position calls data = { 'playQueueVersion': playQueueVersion, 'playQueueID': playQueueID, 'playQueueItemID': playQueueItemID, 'runtime': runtime, 'item_id': itemId, 'refresh_id': refresh_id, 'currentfile': currentFile, 'AudioStreamIndex': postdata['AudioStreamIndex'], 'SubtitleStreamIndex': postdata['SubtitleStreamIndex'], 'playmethod': playMethod, 'Type': itemType, 'currentPosition': int(seekTime) * 1000, 'fileid': fileid, 'itemType': itemType, 'playcount': playcount } self.played_info[currentFile] = data self.logMsg("ADDING_FILE: %s" % data, 1) # 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''' def onPlayBackPaused(self): currentFile = self.currentFile self.logMsg("PLAYBACK_PAUSED: %s" % utils.tryDecode(currentFile), 2) if self.played_info.get(currentFile): self.played_info[currentFile]['paused'] = True def onPlayBackResumed(self): currentFile = self.currentFile self.logMsg("PLAYBACK_RESUMED: %s" % utils.tryDecode(currentFile), 2) if self.played_info.get(currentFile): self.played_info[currentFile]['paused'] = False def onPlayBackSeek(self, time, seekOffset): # Make position when seeking a bit more accurate currentFile = self.currentFile self.logMsg("PLAYBACK_SEEK: %s" % utils.tryDecode(currentFile), 2) if self.played_info.get(currentFile): try: position = self.getTime() except RuntimeError: # When Kodi is not playing return self.played_info[currentFile]['currentPosition'] = position * 1000 def onPlayBackStopped(self): # Will be called when user stops xbmc playing a file window = utils.window self.logMsg("ONPLAYBACK_STOPPED", 1) self.stopAll() window('Plex_currently_playing_itemid', clear=True) window('plex_customplaylist', clear=True) window('plex_customplaylist.seektime', clear=True) window('plex_customplaylist.seektime', clear=True) self.logMsg("Clear playlist properties.", 1) def onPlayBackEnded(self): # Will be called when xbmc stops playing a file, because the file ended self.logMsg("ONPLAYBACK_ENDED", 1) self.onPlayBackStopped() def stopAll(self): lang = utils.language settings = utils.settings if not self.played_info: return self.logMsg("Played_information: %s" % self.played_info, 1) # Process each items for item in self.played_info: data = self.played_info.get(item) if data: self.logMsg("Item path: %s" % item, 2) self.logMsg("Item data: %s" % data, 2) runtime = data['runtime'] currentPosition = data['currentPosition'] itemid = data['item_id'] refresh_id = data['refresh_id'] currentFile = data['currentfile'] media_type = data['Type'] playMethod = data['playmethod'] # Prevent manually mark as watched in Kodi monitor utils.window('emby_skipWatched%s' % itemid, value="true") if currentPosition and runtime: try: percentComplete = float(currentPosition) / float(runtime) except ZeroDivisionError: # Runtime is 0. percentComplete = 0 markPlayed = 0.90 self.logMsg("Percent complete: %s Mark played at: %s" % (percentComplete, markPlayed), 1) if percentComplete >= markPlayed: # Tell Kodi that we've finished watching (Plex knows) if (data['fileid'] is not None and data['itemType'] in ('movie', 'episode')): with kodidb.GetKodiDB('video') as kodi_db: kodi_db.addPlaystate( data['fileid'], None, None, data['playcount'] + 1, utils.DateToKodi(utils.getUnixTimestamp())) # Send the delete action to the server. offerDelete = False if media_type == "Episode" and settings('deleteTV') == "true": offerDelete = True elif media_type == "Movie" and settings('deleteMovies') == "true": offerDelete = True if settings('offerDelete') != "true": # Delete could be disabled, even if the subsetting is enabled. offerDelete = False # Plex: never delete offerDelete = False if percentComplete >= markPlayed and offerDelete: resp = xbmcgui.Dialog().yesno( lang(30091), lang(33015), autoclose=120000) if not resp: self.logMsg("User skipped deletion.", 1) continue url = "{server}/emby/Items/%s?format=json" % itemid self.logMsg("Deleting request: %s" % itemid, 1) self.doUtils(url, action_type="DELETE") self.stopPlayback(data) # Clean the WINDOW properties for filename in self.played_info: cleanup = ( 'emby_%s.itemid' % filename, 'emby_%s.runtime' % filename, 'emby_%s.refreshid' % filename, 'emby_%s.playmethod' % filename, 'emby_%s.type' % filename, 'emby_%s.runtime' % filename, 'emby_%s.playcount' % filename, 'plex_%s.playQueueItemID' % filename, 'plex_%s.playlistPosition' % filename, 'plex_%s.guid' % filename ) for item in cleanup: utils.window(item, clear=True) # Stop transcoding if playMethod == "Transcode": self.logMsg("Transcoding for %s terminating" % itemid, 1) self.doUtils( "{server}/video/:/transcode/universal/stop", parameters={'session': self.clientInfo.getDeviceId()}) self.played_info.clear() def stopPlayback(self, data): self.logMsg("stopPlayback called", 1) args = { 'ratingKey': data['item_id'], 'state': 'stopped', # 'stopped', 'paused', 'buffering', 'playing' 'time': int(data['currentPosition']), 'duration': int(data.get('runtime', 0)) } self.logMsg('Informing PMS about our state: %s' % args, 2) self.doUtils("{server}/:/timeline?" + urlencode(args), action_type="GET")