mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
ab33ef5848
only ping GA if playing dont send an app stopped message
505 lines
20 KiB
Python
505 lines
20 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
import json
|
|
import logging
|
|
|
|
import xbmc
|
|
import xbmcvfs
|
|
import xbmcgui
|
|
|
|
import clientinfo
|
|
import downloadutils
|
|
import kodidb_functions as kodidb
|
|
import websocket_client as wsc
|
|
from utils import window, settings, language as lang
|
|
from ga_client import GoogleAnalytics
|
|
|
|
#################################################################################################
|
|
|
|
log = logging.getLogger("EMBY."+__name__)
|
|
|
|
#################################################################################################
|
|
|
|
|
|
class Player(xbmc.Player):
|
|
|
|
# Borg - multiple instances, shared state
|
|
_shared_state = {}
|
|
|
|
played_info = {}
|
|
currentFile = None
|
|
|
|
|
|
def __init__(self):
|
|
|
|
self.__dict__ = self._shared_state
|
|
|
|
self.clientInfo = clientinfo.ClientInfo()
|
|
self.doUtils = downloadutils.DownloadUtils().downloadUrl
|
|
self.ws = wsc.WebSocketClient()
|
|
self.xbmcplayer = xbmc.Player()
|
|
|
|
log.debug("Starting playback monitor.")
|
|
xbmc.Player.__init__(self)
|
|
|
|
def onPlayBackStarted(self):
|
|
# Will be called when xbmc starts playing a file
|
|
self.stopAll()
|
|
|
|
# Get current file
|
|
try:
|
|
currentFile = self.xbmcplayer.getPlayingFile()
|
|
xbmc.sleep(300)
|
|
except:
|
|
currentFile = ""
|
|
count = 0
|
|
while not currentFile:
|
|
xbmc.sleep(100)
|
|
try:
|
|
currentFile = self.xbmcplayer.getPlayingFile()
|
|
except: pass
|
|
|
|
if count == 5: # try 5 times
|
|
log.info("Cancelling playback report...")
|
|
break
|
|
else: count += 1
|
|
|
|
|
|
if currentFile:
|
|
|
|
self.currentFile = currentFile
|
|
|
|
# We may need to wait for info to be set in kodi monitor
|
|
itemId = window("emby_%s.itemid" % currentFile)
|
|
tryCount = 0
|
|
while not itemId:
|
|
|
|
xbmc.sleep(200)
|
|
itemId = window("emby_%s.itemid" % currentFile)
|
|
if tryCount == 20: # try 20 times or about 10 seconds
|
|
log.info("Could not find itemId, cancelling playback report...")
|
|
break
|
|
else: tryCount += 1
|
|
|
|
else:
|
|
log.info("ONPLAYBACK_STARTED: %s itemid: %s" % (currentFile, itemId))
|
|
|
|
# Only proceed if an itemId was found.
|
|
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)
|
|
window('emby_skipWatched%s' % itemId, value="true")
|
|
|
|
customseek = window('emby_customPlaylist.seektime')
|
|
if window('emby_customPlaylist') == "true" and customseek:
|
|
# Start at, when using custom playlist (play to Kodi from webclient)
|
|
log.info("Seeking to: %s" % customseek)
|
|
self.xbmcplayer.seekTime(int(customseek)/10000000.0)
|
|
window('emby_customPlaylist.seektime', clear=True)
|
|
|
|
seekTime = self.xbmcplayer.getTime()
|
|
|
|
# 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}/emby/Sessions/Playing"
|
|
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
|
|
|
|
log.debug("Mapping for external subtitles index: %s" % mapping)
|
|
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.debug("Sending POST play started: %s." % postdata)
|
|
self.doUtils(url, postBody=postdata, action_type="POST")
|
|
|
|
# Ensure we do have a runtime
|
|
try:
|
|
runtime = int(runtime)
|
|
except ValueError:
|
|
runtime = self.xbmcplayer.getTotalTime()
|
|
log.info("Runtime is missing, Kodi runtime: %s" % runtime)
|
|
|
|
# Save data map for updates and position calls
|
|
data = {
|
|
|
|
'runtime': runtime,
|
|
'item_id': itemId,
|
|
'refresh_id': refresh_id,
|
|
'currentfile': currentFile,
|
|
'AudioStreamIndex': postdata['AudioStreamIndex'],
|
|
'SubtitleStreamIndex': postdata['SubtitleStreamIndex'],
|
|
'playmethod': playMethod,
|
|
'Type': itemType,
|
|
'currentPosition': int(seekTime)
|
|
}
|
|
|
|
self.played_info[currentFile] = data
|
|
log.info("ADDING_FILE: %s" % self.played_info)
|
|
|
|
ga = GoogleAnalytics()
|
|
ga.sendEventData("PlayAction", itemType, playMethod)
|
|
|
|
def reportPlayback(self):
|
|
|
|
log.debug("reportPlayback Called")
|
|
|
|
# Get current file
|
|
currentFile = self.currentFile
|
|
data = self.played_info.get(currentFile)
|
|
|
|
# only report playback if emby has initiated the playback (item_id has value)
|
|
if data:
|
|
# Get playback information
|
|
itemId = data['item_id']
|
|
audioindex = data['AudioStreamIndex']
|
|
subtitleindex = data['SubtitleStreamIndex']
|
|
playTime = data['currentPosition']
|
|
playMethod = data['playmethod']
|
|
paused = data.get('paused', False)
|
|
|
|
|
|
# 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 for the websocketclient report
|
|
postdata = {
|
|
|
|
'QueueableMediaTypes': "Video",
|
|
'CanSeek': True,
|
|
'ItemId': itemId,
|
|
'MediaSourceId': itemId,
|
|
'PlayMethod': playMethod,
|
|
'PositionTicks': int(playTime * 10000000),
|
|
'IsPaused': paused,
|
|
'VolumeLevel': volume,
|
|
'IsMuted': muted
|
|
}
|
|
|
|
if playMethod == "Transcode":
|
|
# Track can't be changed, keep reporting the same index
|
|
postdata['AudioStreamIndex'] = audioindex
|
|
postdata['AudioStreamIndex'] = subtitleindex
|
|
|
|
else:
|
|
# Get current audio and subtitles track
|
|
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
|
|
data['AudioStreamIndex'], postdata['AudioStreamIndex'] = [indexAudio + 1] * 2
|
|
|
|
# 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("emby_%s.indexMapping" % currentFile)
|
|
|
|
if mapping: # Set in PlaybackUtils.py
|
|
|
|
log.debug("Mapping for external subtitles index: %s" % mapping)
|
|
externalIndex = json.loads(mapping)
|
|
|
|
if externalIndex.get(str(indexSubs)):
|
|
# If the current subtitle is in the mapping
|
|
subindex = [externalIndex[str(indexSubs)]] * 2
|
|
data['SubtitleStreamIndex'], postdata['SubtitleStreamIndex'] = subindex
|
|
else:
|
|
# Internal subtitle currently selected
|
|
subindex = [indexSubs - len(externalIndex) + audioTracks + 1] * 2
|
|
data['SubtitleStreamIndex'], postdata['SubtitleStreamIndex'] = subindex
|
|
|
|
else: # Direct paths enabled scenario or no external subtitles set
|
|
subindex = [indexSubs + audioTracks + 1] * 2
|
|
data['SubtitleStreamIndex'], postdata['SubtitleStreamIndex'] = subindex
|
|
else:
|
|
data['SubtitleStreamIndex'], postdata['SubtitleStreamIndex'] = [""] * 2
|
|
|
|
# Report progress via websocketclient
|
|
postdata = json.dumps(postdata)
|
|
log.debug("Report: %s" % postdata)
|
|
self.ws.send_progress_update(postdata)
|
|
|
|
def onPlayBackPaused(self):
|
|
|
|
currentFile = self.currentFile
|
|
log.debug("PLAYBACK_PAUSED: %s" % currentFile)
|
|
|
|
if self.played_info.get(currentFile):
|
|
self.played_info[currentFile]['paused'] = True
|
|
|
|
self.reportPlayback()
|
|
|
|
def onPlayBackResumed(self):
|
|
|
|
currentFile = self.currentFile
|
|
log.debug("PLAYBACK_RESUMED: %s" % currentFile)
|
|
|
|
if self.played_info.get(currentFile):
|
|
self.played_info[currentFile]['paused'] = False
|
|
|
|
self.reportPlayback()
|
|
|
|
def onPlayBackSeek(self, time, seekOffset):
|
|
# Make position when seeking a bit more accurate
|
|
currentFile = self.currentFile
|
|
log.debug("PLAYBACK_SEEK: %s" % currentFile)
|
|
|
|
if self.played_info.get(currentFile):
|
|
position = self.xbmcplayer.getTime()
|
|
self.played_info[currentFile]['currentPosition'] = position
|
|
|
|
self.reportPlayback()
|
|
|
|
def onPlayBackStopped(self):
|
|
# Will be called when user stops xbmc playing a file
|
|
log.debug("ONPLAYBACK_STOPPED")
|
|
window('emby_customPlaylist', clear=True)
|
|
window('emby_customPlaylist.seektime', clear=True)
|
|
window('emby_playbackProps', clear=True)
|
|
log.info("Clear playlist properties.")
|
|
self.stopAll()
|
|
|
|
def onPlayBackEnded(self):
|
|
# Will be called when xbmc stops playing a file
|
|
log.debug("ONPLAYBACK_ENDED")
|
|
window('emby_customPlaylist.seektime', clear=True)
|
|
self.stopAll()
|
|
|
|
def stopAll(self):
|
|
|
|
if not self.played_info:
|
|
return
|
|
|
|
log.info("Played_information: %s" % self.played_info)
|
|
# Process each items
|
|
for item in self.played_info:
|
|
|
|
data = self.played_info.get(item)
|
|
if data:
|
|
|
|
log.debug("Item path: %s" % item)
|
|
log.debug("Item data: %s" % data)
|
|
|
|
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
|
|
window('emby_skipWatched%s' % itemid, value="true")
|
|
|
|
self.stopPlayback(data)
|
|
|
|
if currentPosition and runtime:
|
|
try:
|
|
percentComplete = (currentPosition * 10000000) / int(runtime)
|
|
except ZeroDivisionError:
|
|
# Runtime is 0.
|
|
percentComplete = 0
|
|
|
|
markPlayedAt = float(settings('markPlayed')) / 100
|
|
log.info("Percent complete: %s Mark played at: %s"
|
|
% (percentComplete, markPlayedAt))
|
|
|
|
# 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
|
|
|
|
if percentComplete >= markPlayedAt and offerDelete:
|
|
resp = xbmcgui.Dialog().yesno(lang(30091), lang(33015), autoclose=120000)
|
|
if resp:
|
|
url = "{server}/emby/Items/%s?format=json" % itemid
|
|
log.info("Deleting request: %s" % itemid)
|
|
self.doUtils(url, action_type="DELETE")
|
|
else:
|
|
log.info("User skipped deletion.")
|
|
|
|
# Stop transcoding
|
|
if playMethod == "Transcode":
|
|
log.info("Transcoding for %s terminated." % itemid)
|
|
deviceId = self.clientInfo.get_device_id()
|
|
url = "{server}/emby/Videos/ActiveEncodings?DeviceId=%s" % deviceId
|
|
self.doUtils(url, action_type="DELETE")
|
|
|
|
path = xbmc.translatePath(
|
|
"special://profile/addon_data/plugin.video.emby/temp/").decode('utf-8')
|
|
|
|
dirs, files = xbmcvfs.listdir(path)
|
|
for file in files:
|
|
xbmcvfs.delete("%s%s" % (path, file))
|
|
|
|
self.played_info.clear()
|
|
|
|
ga = GoogleAnalytics()
|
|
ga.sendEventData("PlayAction", "Stopped")
|
|
|
|
def stopPlayback(self, data):
|
|
|
|
log.debug("stopPlayback called")
|
|
|
|
itemId = data['item_id']
|
|
currentPosition = data['currentPosition']
|
|
positionTicks = int(currentPosition * 10000000)
|
|
|
|
url = "{server}/emby/Sessions/Playing/Stopped"
|
|
postdata = {
|
|
|
|
'ItemId': itemId,
|
|
'MediaSourceId': itemId,
|
|
'PositionTicks': positionTicks
|
|
}
|
|
self.doUtils(url, postBody=postdata, action_type="POST")
|
|
|
|
#If needed, close any livestreams
|
|
livestreamid = window("emby_%s.livestreamid" % self.currentFile)
|
|
if livestreamid:
|
|
url = "{server}/emby/LiveStreams/Close"
|
|
postdata = { 'LiveStreamId': livestreamid }
|
|
self.doUtils(url, postBody=postdata, action_type="POST")
|