PlexKodiConnect/resources/lib/playbackutils.py

358 lines
14 KiB
Python
Raw Normal View History

2015-12-25 07:07:00 +11:00
# -*- coding: utf-8 -*-
2016-09-02 03:20:09 +10:00
###############################################################################
2015-12-25 07:07:00 +11:00
2016-09-02 03:20:09 +10:00
import logging
2015-12-25 07:07:00 +11:00
import sys
2016-02-09 05:40:58 +11:00
from urllib import urlencode
2015-12-25 07:07:00 +11:00
import xbmc
import xbmcgui
import xbmcplugin
import playutils as putils
import playlist
2016-09-02 03:20:09 +10:00
from utils import window, settings, tryEncode, tryDecode
2016-04-17 21:36:41 +10:00
import downloadutils
2016-01-02 00:40:40 +11:00
2016-02-09 05:40:58 +11:00
import PlexAPI
import PlexFunctions as PF
2016-09-02 03:20:09 +10:00
###############################################################################
log = logging.getLogger("PLEX."+__name__)
2016-09-02 03:44:15 +10:00
addonName = "PlexKodiConnect"
2016-09-02 03:20:09 +10:00
###############################################################################
2015-12-25 07:07:00 +11:00
class PlaybackUtils():
2016-02-20 06:03:06 +11:00
def __init__(self, item):
2016-01-30 06:07:21 +11:00
self.item = item
2016-02-09 05:40:58 +11:00
self.API = PlexAPI.API(item)
2015-12-25 07:07:00 +11:00
2016-09-02 03:20:09 +10:00
self.userid = window('currUserId')
self.server = window('pms_server')
2015-12-25 07:07:00 +11:00
2016-06-27 00:10:32 +10:00
if self.API.getType() == 'track':
self.pl = playlist.Playlist(typus='music')
else:
self.pl = playlist.Playlist(typus='video')
2015-12-25 07:07:00 +11:00
def play(self, itemid, dbid=None):
item = self.item
2016-02-09 05:40:58 +11:00
# Hack to get only existing entry in PMS response for THIS instance of
# playbackutils :-)
self.API = PlexAPI.API(item[0])
API = self.API
listitem = xbmcgui.ListItem()
2016-02-09 05:40:58 +11:00
playutils = putils.PlayUtils(item[0])
2016-01-30 06:07:21 +11:00
2016-09-02 03:20:09 +10:00
log.info("Play called.")
playurl = playutils.getPlayUrl()
if not playurl:
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), False, listitem)
if dbid in (None, 'plextrailer', 'plexnode'):
2016-04-17 21:36:41 +10:00
# Item is not in Kodi database, is a trailer or plex redirect
# e.g. plex.tv watch later
API.CreateListItemFromPlexItem(listitem)
self.setArtwork(listitem)
if dbid == 'plexnode':
# Need to get yet another xml to get final url
window('emby_%s.playmethod' % playurl, clear=True)
xml = downloadutils.DownloadUtils().downloadUrl(
'{server}%s' % item[0][0][0].attrib.get('key'))
if xml in (None, 401):
2016-09-02 03:20:09 +10:00
log.error('Could not download %s'
% item[0][0][0].attrib.get('key'))
2016-04-17 21:36:41 +10:00
return xbmcplugin.setResolvedUrl(
int(sys.argv[1]), False, listitem)
2016-09-02 03:20:09 +10:00
playurl = tryEncode(xml[0].attrib.get('key'))
2016-04-17 21:36:41 +10:00
window('emby_%s.playmethod' % playurl, value='DirectStream')
2016-02-20 06:03:06 +11:00
playmethod = window('emby_%s.playmethod' % playurl)
2016-02-09 05:40:58 +11:00
if playmethod == "Transcode":
2016-02-20 06:03:06 +11:00
window('emby_%s.playmethod' % playurl, clear=True)
2016-09-02 03:20:09 +10:00
playurl = tryEncode(playutils.audioSubsPref(
listitem, tryDecode(playurl)))
2016-02-20 06:03:06 +11:00
window('emby_%s.playmethod' % playurl, "Transcode")
2016-02-03 23:01:13 +11:00
listitem.setPath(playurl)
self.setProperties(playurl, listitem)
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
############### ORGANIZE CURRENT PLAYLIST ################
contextmenu_play = window('plex_contextplay') == 'true'
window('plex_contextplay', clear=True)
2016-11-09 06:51:34 +11:00
homeScreen = xbmc.getCondVisibility('Window.IsActive(home)')
2016-09-05 02:30:06 +10:00
kodiPl = self.pl.playlist
sizePlaylist = kodiPl.size()
if contextmenu_play:
# Need to start with the items we're inserting here
startPos = sizePlaylist
else:
# Can return -1
startPos = max(kodiPl.getposition(), 0)
2016-02-09 05:40:58 +11:00
self.currentPosition = startPos
2016-05-31 16:06:42 +10:00
propertiesPlayback = window('plex_playbackProps') == "true"
introsPlaylist = False
dummyPlaylist = False
log.info("Playing from contextmenu: %s" % contextmenu_play)
2016-09-02 03:20:09 +10:00
log.info("Playlist start position: %s" % startPos)
log.info("Playlist plugin position: %s" % self.currentPosition)
log.info("Playlist size: %s" % sizePlaylist)
############### RESUME POINT ################
2016-02-09 05:40:58 +11:00
seektime, runtime = API.getRuntime()
# We need to ensure we add the intro and additional parts only once.
# Otherwise we get a loop.
if not propertiesPlayback:
2016-05-31 16:06:42 +10:00
window('plex_playbackProps', value="true")
2016-09-02 03:20:09 +10:00
log.info("Setting up properties in playlist.")
2016-02-20 06:03:06 +11:00
if (not homeScreen and not seektime and
2016-11-09 06:51:34 +11:00
window('plex_customplaylist') != "true" and
not contextmenu_play):
2016-09-02 03:20:09 +10:00
log.debug("Adding dummy file to playlist.")
dummyPlaylist = True
2016-09-05 02:30:06 +10:00
kodiPl.add(playurl, listitem, index=startPos)
2016-11-09 06:51:34 +11:00
# Remove the original item from playlist
self.pl.removefromPlaylist(startPos+1)
# Readd the original item to playlist - via jsonrpc so we have full metadata
2016-02-09 05:40:58 +11:00
self.pl.insertintoPlaylist(
self.currentPosition+1,
dbid,
PF.KODITYPE_FROM_PLEXTYPE[API.getType()])
2016-02-09 05:40:58 +11:00
self.currentPosition += 1
2016-09-02 03:20:09 +10:00
############### -- CHECK FOR INTROS ################
2016-04-12 16:40:12 +10:00
if (settings('enableCinema') == "true" and not seektime):
# if we have any play them when the movie/show is not being resumed
2016-02-09 05:40:58 +11:00
xml = PF.GetPlexPlaylist(
itemid,
item.attrib.get('librarySectionUUID'),
mediatype=API.getType())
introsPlaylist = self.AddTrailers(xml)
2016-09-02 03:20:09 +10:00
############### -- ADD MAIN ITEM ONLY FOR HOMESCREEN ##############
2016-11-09 06:51:34 +11:00
if homeScreen and not seektime and not sizePlaylist:
# Extend our current playlist with the actual item to play
# only if there's no playlist first
2016-09-02 03:20:09 +10:00
log.info("Adding main item to playlist.")
2016-02-09 05:40:58 +11:00
self.pl.addtoPlaylist(
dbid,
PF.KODITYPE_FROM_PLEXTYPE[API.getType()])
2016-11-09 06:51:34 +11:00
elif contextmenu_play:
if window('useDirectPaths') == 'true':
# Cannot add via JSON with full metadata because then we
# Would be using the direct path
log.debug("Adding contextmenu item for direct paths")
if window('emby_%s.playmethod' % playurl) == "Transcode":
window('emby_%s.playmethod' % playurl,
clear=True)
playurl = tryEncode(playutils.audioSubsPref(
listitem, tryDecode(playurl)))
window('emby_%s.playmethod' % playurl,
value="Transcode")
self.setProperties(playurl, listitem)
self.setArtwork(listitem)
API.CreateListItemFromPlexItem(listitem)
kodiPl.add(playurl, listitem, index=self.currentPosition+1)
else:
# Full metadata
self.pl.insertintoPlaylist(
self.currentPosition+1,
dbid,
PF.KODITYPE_FROM_PLEXTYPE[API.getType()])
self.currentPosition += 1
if seektime:
window('plex_customplaylist.seektime', value=str(seektime))
# Ensure that additional parts are played after the main item
2016-02-09 05:40:58 +11:00
self.currentPosition += 1
############### -- CHECK FOR ADDITIONAL PARTS ################
2016-11-09 06:51:34 +11:00
if (len(item[0][0]) > 1 and
window('emby_%s.playmethod' % playurl) != "Transcode"):
# Only add to the playlist after intros have played
2016-02-09 05:40:58 +11:00
for counter, part in enumerate(item[0][0]):
2016-04-12 01:50:56 +10:00
# Never add first part
if counter == 0:
continue
2016-02-09 05:40:58 +11:00
# Set listitem and properties for each additional parts
API.setPartNumber(counter)
additionalListItem = xbmcgui.ListItem()
2016-02-09 05:40:58 +11:00
additionalPlayurl = playutils.getPlayUrl(
partNumber=counter)
2016-09-02 03:20:09 +10:00
log.debug("Adding additional part: %s" % counter)
2016-02-09 05:40:58 +11:00
self.setProperties(additionalPlayurl, additionalListItem)
self.setArtwork(additionalListItem)
# NEW to Plex
2016-03-15 03:47:05 +11:00
API.CreateListItemFromPlexItem(additionalListItem)
2016-09-05 02:30:06 +10:00
kodiPl.add(additionalPlayurl, additionalListItem,
index=self.currentPosition)
self.pl.verifyPlaylist()
2016-02-09 05:40:58 +11:00
self.currentPosition += 1
2016-11-07 00:10:09 +11:00
API.setPartNumber(0)
if dummyPlaylist:
# Added a dummy file to the playlist,
# because the first item is going to fail automatically.
2016-09-02 03:20:09 +10:00
log.info("Processed as a playlist. First item is skipped.")
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), False, listitem)
# We just skipped adding properties. Reset flag for next time.
elif propertiesPlayback:
2016-09-02 03:20:09 +10:00
log.debug("Resetting properties playback flag.")
2016-05-31 16:06:42 +10:00
window('plex_playbackProps', clear=True)
#self.pl.verifyPlaylist()
########## SETUP MAIN ITEM ##########
# For transcoding only, ask for audio/subs pref
2016-11-09 06:51:34 +11:00
if (window('emby_%s.playmethod' % playurl) == "Transcode" and
not contextmenu_play):
window('emby_%s.playmethod' % playurl, clear=True)
2016-09-02 03:20:09 +10:00
playurl = tryEncode(playutils.audioSubsPref(
listitem, tryDecode(playurl)))
2016-02-17 19:13:37 +11:00
window('emby_%s.playmethod' % playurl, value="Transcode")
2016-02-05 06:23:04 +11:00
listitem.setPath(playurl)
self.setProperties(playurl, listitem)
2016-02-03 23:01:13 +11:00
############### PLAYBACK ################
if (homeScreen and seektime and window('plex_customplaylist') != "true"
and not contextmenu_play):
2016-09-02 03:20:09 +10:00
log.info("Play as a widget item.")
2016-03-15 03:47:05 +11:00
API.CreateListItemFromPlexItem(listitem)
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
2016-05-31 16:06:42 +10:00
elif ((introsPlaylist and window('plex_customplaylist') == "true") or
(homeScreen and not sizePlaylist) or
contextmenu_play):
# Playlist was created just now, play it.
# Contextmenu plays always need this
2016-09-02 03:20:09 +10:00
log.info("Play playlist.")
xbmcplugin.endOfDirectory(int(sys.argv[1]), True, False, False)
2016-09-05 02:30:06 +10:00
xbmc.Player().play(kodiPl, startpos=startPos)
else:
2016-09-02 03:20:09 +10:00
log.info("Play as a regular item.")
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
2016-01-30 06:07:21 +11:00
2016-02-09 05:40:58 +11:00
def AddTrailers(self, xml):
"""
Adds trailers to a movie, if applicable. Returns True if trailers were
added
"""
# Failure when downloading trailer playQueue
2016-04-12 01:50:56 +10:00
if xml in (None, 401):
2016-02-09 05:40:58 +11:00
return False
# Failure when getting trailers, e.g. when no plex pass
if xml.attrib.get('size') == '1':
return False
2016-09-02 03:20:09 +10:00
if settings('askCinema') == "true":
2016-09-02 03:44:15 +10:00
resp = xbmcgui.Dialog().yesno(addonName, "Play trailers?")
2016-02-09 05:40:58 +11:00
if not resp:
# User selected to not play trailers
2016-09-02 03:20:09 +10:00
log.info("Skip trailers.")
2016-02-09 05:40:58 +11:00
return False
# Playurl needs to point back so we can get metadata!
path = "plugin://plugin.video.plexkodiconnect.movies/"
params = {
'mode': "play",
'dbid': 'plextrailer'
2016-02-09 05:40:58 +11:00
}
for counter, intro in enumerate(xml):
# Don't process the last item - it's the original movie
if counter == len(xml)-1:
break
# The server randomly returns intros, process them.
# introListItem = xbmcgui.ListItem()
# introPlayurl = putils.PlayUtils(intro).getPlayUrl()
introAPI = PlexAPI.API(intro)
params['id'] = introAPI.getRatingKey()
params['filename'] = introAPI.getKey()
introPlayurl = path + '?' + urlencode(params)
2016-09-02 03:20:09 +10:00
log.info("Adding Intro: %s" % introPlayurl)
2016-02-09 05:40:58 +11:00
self.pl.insertintoPlaylist(self.currentPosition, url=introPlayurl)
self.currentPosition += 1
return True
2015-12-25 07:07:00 +11:00
def setProperties(self, playurl, listitem):
# Set all properties necessary for plugin path playback
itemid = self.API.getRatingKey()
itemtype = self.API.getType()
userdata = self.API.getUserData()
2015-12-25 07:07:00 +11:00
embyitem = "emby_%s" % playurl
window('%s.runtime' % embyitem, value=str(userdata['Runtime']))
2016-02-17 19:13:37 +11:00
window('%s.type' % embyitem, value=itemtype)
window('%s.itemid' % embyitem, value=itemid)
window('%s.playcount' % embyitem, value=str(userdata['PlayCount']))
2015-12-25 07:07:00 +11:00
2016-02-09 05:40:58 +11:00
if itemtype == "episode":
window('%s.refreshid' % embyitem,
2016-02-20 06:03:06 +11:00
value=self.API.getParentRatingKey())
2015-12-25 07:07:00 +11:00
else:
2016-02-17 19:13:37 +11:00
window('%s.refreshid' % embyitem, value=itemid)
2015-12-25 07:07:00 +11:00
# Append external subtitles to stream
playmethod = window('%s.playmethod' % embyitem)
if playmethod in ("DirectStream", "DirectPlay"):
subtitles = self.API.externalSubs(playurl)
listitem.setSubtitles(subtitles)
2015-12-25 07:07:00 +11:00
self.setArtwork(listitem)
def setArtwork(self, listItem):
2016-02-09 05:40:58 +11:00
allartwork = self.API.getAllArtwork(parentInfo=True)
2015-12-25 07:07:00 +11:00
arttypes = {
'poster': "Primary",
'tvshow.poster': "Thumb",
2015-12-25 07:07:00 +11:00
'clearart': "Art",
'tvshow.clearart': "Art",
2016-02-09 05:40:58 +11:00
'clearart': "Primary",
'tvshow.clearart': "Primary",
2015-12-25 07:07:00 +11:00
'clearlogo': "Logo",
'tvshow.clearlogo': "Logo",
'discart': "Disc",
'fanart_image': "Backdrop",
'landscape': "Backdrop",
"banner": "Banner"
2015-12-25 07:07:00 +11:00
}
for arttype in arttypes:
art = arttypes[arttype]
if art == "Backdrop":
try:
# Backdrop is a list, grab the first backdrop
2015-12-25 07:07:00 +11:00
self.setArtProp(listItem, arttype, allartwork[art][0])
except:
pass
2015-12-25 07:07:00 +11:00
else:
self.setArtProp(listItem, arttype, allartwork[art])
def setArtProp(self, listItem, arttype, path):
if arttype in (
'thumb', 'fanart_image', 'small_poster', 'tiny_poster',
'medium_landscape', 'medium_poster', 'small_fanartimage',
'medium_fanartimage', 'fanart_noindicators'):
listItem.setProperty(arttype, path)
else:
listItem.setArt({arttype: path})