2015-12-25 07:07:00 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
import json
|
|
|
|
import os
|
|
|
|
import sys
|
2016-04-17 21:36:41 +10:00
|
|
|
import urllib
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcaddon
|
|
|
|
import xbmcgui
|
|
|
|
import xbmcvfs
|
|
|
|
import xbmcplugin
|
|
|
|
|
|
|
|
import artwork
|
|
|
|
import utils
|
|
|
|
import clientinfo
|
|
|
|
import downloadutils
|
|
|
|
import read_embyserver as embyserver
|
|
|
|
import embydb_functions as embydb
|
|
|
|
import playbackutils as pbutils
|
|
|
|
import playutils
|
2016-02-10 23:50:04 +11:00
|
|
|
import playlist
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-28 02:33:02 +11:00
|
|
|
import PlexFunctions
|
2016-03-15 03:47:05 +11:00
|
|
|
import PlexAPI
|
2016-01-02 00:40:40 +11:00
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-30 06:07:21 +11:00
|
|
|
# For logging only
|
2016-04-07 02:23:51 +10:00
|
|
|
addonName = 'PlexKodiConnect'
|
2016-02-03 23:01:13 +11:00
|
|
|
title = "%s %s" % (addonName, __name__)
|
2016-01-30 06:07:21 +11:00
|
|
|
|
|
|
|
|
2016-02-03 23:01:13 +11:00
|
|
|
def plexCompanion(fullurl, params):
|
2016-01-30 06:07:21 +11:00
|
|
|
params = PlexFunctions.LiteralEval(params[26:])
|
2016-02-03 23:01:13 +11:00
|
|
|
|
|
|
|
if (params['machineIdentifier'] !=
|
2016-01-30 06:07:21 +11:00
|
|
|
utils.window('plex_machineIdentifier')):
|
|
|
|
utils.logMsg(
|
|
|
|
title,
|
|
|
|
"Command was not for us, machineIdentifier controller: %s, "
|
|
|
|
"our machineIdentifier : %s"
|
2016-02-03 23:01:13 +11:00
|
|
|
% (params['machineIdentifier'],
|
2016-01-30 06:07:21 +11:00
|
|
|
utils.window('plex_machineIdentifier')), -1)
|
|
|
|
return
|
2016-02-03 23:01:13 +11:00
|
|
|
|
2016-02-01 02:13:40 +11:00
|
|
|
library, key, query = PlexFunctions.ParseContainerKey(
|
2016-02-03 23:01:13 +11:00
|
|
|
params['containerKey'])
|
2016-01-30 06:07:21 +11:00
|
|
|
# Construct a container key that works always (get rid of playlist args)
|
2016-02-03 23:01:13 +11:00
|
|
|
utils.window('containerKey', '/'+library+'/'+key)
|
2016-01-30 06:07:21 +11:00
|
|
|
|
|
|
|
if 'playQueues' in library:
|
|
|
|
utils.logMsg(title, "Playing a playQueue. Query was: %s" % query, 1)
|
|
|
|
# Playing a playlist that we need to fetch from PMS
|
2016-02-01 02:13:40 +11:00
|
|
|
xml = PlexFunctions.GetPlayQueue(key)
|
2016-02-10 23:50:04 +11:00
|
|
|
if xml is None:
|
2016-01-30 06:07:21 +11:00
|
|
|
utils.logMsg(
|
|
|
|
title, "Error getting PMS playlist for key %s" % key, -1)
|
2016-02-10 23:50:04 +11:00
|
|
|
return
|
2016-02-01 02:13:40 +11:00
|
|
|
else:
|
2016-02-10 23:50:04 +11:00
|
|
|
resume = PlexFunctions.ConvertPlexToKodiTime(
|
|
|
|
params.get('offset', 0))
|
|
|
|
itemids = []
|
|
|
|
for item in xml:
|
|
|
|
itemids.append(item.get('ratingKey'))
|
|
|
|
return playlist.Playlist().playAll(itemids, resume)
|
|
|
|
|
2016-02-01 02:13:40 +11:00
|
|
|
else:
|
|
|
|
utils.logMsg(
|
|
|
|
title, "Not knowing what to do for now - no playQueue sent", -1)
|
2016-01-30 06:07:21 +11:00
|
|
|
|
|
|
|
|
2016-03-24 22:34:39 +11:00
|
|
|
def chooseServer():
|
|
|
|
"""
|
|
|
|
Lets user choose from list of PMS (signs out & signs in)
|
|
|
|
"""
|
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
|
|
|
utils.logMsg(title, "Choosing PMS server requested, starting", 0)
|
|
|
|
dialog = xbmcgui.Dialog()
|
|
|
|
# Resetting, please wait
|
|
|
|
dialog.notification(
|
|
|
|
heading=addonName,
|
|
|
|
message=string(39207),
|
|
|
|
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
|
|
|
time=3000,
|
|
|
|
sound=False)
|
|
|
|
# Pause library sync thread - user needs to be auth in order to sync
|
|
|
|
utils.window('suspend_LibraryThread', value='true')
|
2016-04-08 17:29:48 +10:00
|
|
|
# Wait max for 5 seconds for all lib scans to shutdown
|
2016-03-24 22:34:39 +11:00
|
|
|
counter = 0
|
|
|
|
while utils.window('emby_dbScan') == 'true':
|
2016-04-08 17:29:48 +10:00
|
|
|
if counter > 100:
|
2016-03-24 22:34:39 +11:00
|
|
|
# Failed to reset PMS and plex.tv connects. Try to restart Kodi.
|
|
|
|
dialog.ok(addonName,
|
|
|
|
string(39208))
|
|
|
|
# Resuming threads, just in case
|
|
|
|
utils.window('suspend_LibraryThread', clear=True)
|
|
|
|
utils.logMsg(title, "Could not stop library sync, aborting", -1)
|
|
|
|
return
|
|
|
|
counter += 1
|
|
|
|
xbmc.sleep(50)
|
|
|
|
utils.logMsg(title, "Successfully stopped library sync", 0)
|
|
|
|
|
|
|
|
# Reset connection details
|
|
|
|
utils.settings('plex_machineIdentifier', value="")
|
|
|
|
utils.settings('plex_servername', value="")
|
|
|
|
utils.settings('https', value="")
|
|
|
|
utils.settings('ipaddress', value="")
|
|
|
|
utils.settings('port', value="")
|
|
|
|
|
|
|
|
# Log out currently signed in user:
|
|
|
|
utils.window('emby_serverStatus', value="401")
|
|
|
|
|
|
|
|
# Above method needs to have run its course! Hence wait
|
|
|
|
counter = 0
|
|
|
|
while utils.window('emby_serverStatus') == "401":
|
|
|
|
if counter > 100:
|
|
|
|
dialog.ok(addonName,
|
|
|
|
string(39208))
|
|
|
|
utils.logMsg(title, "Could not sign out, aborting", -1)
|
|
|
|
return
|
|
|
|
counter += 1
|
|
|
|
xbmc.sleep(50)
|
|
|
|
# Suspend the user client during procedure
|
|
|
|
utils.window('suspend_Userclient', value='true')
|
|
|
|
|
|
|
|
import initialsetup
|
|
|
|
initialsetup.InitialSetup().setup(chooseServer=True)
|
|
|
|
# Request lib sync to get user view data (e.g. watched/unwatched)
|
|
|
|
utils.window('plex_runLibScan', value='full')
|
|
|
|
# Restart user client
|
|
|
|
utils.window('suspend_Userclient', clear=True)
|
|
|
|
utils.logMsg(title, "Choosing new PMS complete", 0)
|
|
|
|
|
|
|
|
|
2016-03-08 19:20:06 +11:00
|
|
|
def reConnect():
|
2016-03-04 23:34:30 +11:00
|
|
|
"""
|
2016-03-08 19:20:06 +11:00
|
|
|
Triggers login to plex.tv and re-authorization
|
2016-03-04 23:34:30 +11:00
|
|
|
"""
|
2016-03-08 19:20:06 +11:00
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
2016-03-24 22:34:39 +11:00
|
|
|
utils.logMsg(title, "Connection resets requested", 0)
|
2016-03-08 19:20:06 +11:00
|
|
|
dialog = xbmcgui.Dialog()
|
2016-03-24 02:07:09 +11:00
|
|
|
# Resetting, please wait
|
2016-03-08 19:20:06 +11:00
|
|
|
dialog.notification(
|
|
|
|
heading=addonName,
|
|
|
|
message=string(39207),
|
|
|
|
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
2016-03-24 22:34:39 +11:00
|
|
|
time=3000,
|
2016-03-08 19:20:06 +11:00
|
|
|
sound=False)
|
2016-03-10 01:37:27 +11:00
|
|
|
# Pause library sync thread - user needs to be auth in order to sync
|
|
|
|
utils.window('suspend_LibraryThread', value='true')
|
2016-03-24 22:34:39 +11:00
|
|
|
# Wait max for 25 seconds for all lib scans to finish
|
2016-03-08 19:20:06 +11:00
|
|
|
counter = 0
|
|
|
|
while utils.window('emby_dbScan') == 'true':
|
2016-03-24 02:07:09 +11:00
|
|
|
if counter > 500:
|
|
|
|
# Failed to reset PMS and plex.tv connects. Try to restart Kodi.
|
2016-03-24 22:34:39 +11:00
|
|
|
dialog.ok(addonName,
|
|
|
|
string(39208))
|
2016-03-08 19:20:06 +11:00
|
|
|
# Resuming threads, just in case
|
|
|
|
utils.window('suspend_LibraryThread', clear=True)
|
2016-03-24 22:34:39 +11:00
|
|
|
utils.logMsg(title, "Could not stop library sync, aborting", -1)
|
2016-03-08 19:20:06 +11:00
|
|
|
return
|
2016-03-10 01:37:27 +11:00
|
|
|
counter += 1
|
|
|
|
xbmc.sleep(50)
|
2016-03-24 02:07:09 +11:00
|
|
|
|
2016-03-24 22:34:39 +11:00
|
|
|
utils.logMsg(title, "Successfully stopped library sync", 0)
|
|
|
|
|
2016-03-24 02:07:09 +11:00
|
|
|
# Delete plex credentials in settings
|
|
|
|
utils.settings('myplexlogin', value="true")
|
|
|
|
utils.settings('plexLogin', value="")
|
|
|
|
utils.settings('plexToken', value=""),
|
|
|
|
utils.settings('plexid', value="")
|
|
|
|
utils.settings('plexHomeSize', value="1")
|
|
|
|
utils.settings('plexAvatar', value="")
|
|
|
|
|
|
|
|
# Reset connection details
|
|
|
|
utils.settings('plex_machineIdentifier', value="")
|
|
|
|
utils.settings('plex_servername', value="")
|
|
|
|
utils.settings('https', value="")
|
|
|
|
utils.settings('ipaddress', value="")
|
|
|
|
utils.settings('port', value="")
|
|
|
|
|
2016-03-10 01:37:27 +11:00
|
|
|
# Log out currently signed in user:
|
|
|
|
utils.window('emby_serverStatus', value="401")
|
|
|
|
|
|
|
|
# Above method needs to have run its course! Hence wait
|
|
|
|
counter = 0
|
|
|
|
while utils.window('emby_serverStatus') == "401":
|
|
|
|
if counter > 100:
|
2016-03-24 22:34:39 +11:00
|
|
|
dialog.ok(addonName,
|
|
|
|
string(39208))
|
|
|
|
utils.logMsg(title, "Could not sign out, aborting", -1)
|
2016-03-10 01:37:27 +11:00
|
|
|
return
|
|
|
|
counter += 1
|
|
|
|
xbmc.sleep(50)
|
|
|
|
# Suspend the user client during procedure
|
|
|
|
utils.window('suspend_Userclient', value='true')
|
2016-03-08 19:20:06 +11:00
|
|
|
|
2016-03-04 23:34:30 +11:00
|
|
|
import initialsetup
|
|
|
|
initialsetup.InitialSetup().setup(forcePlexTV=True)
|
2016-03-08 19:20:06 +11:00
|
|
|
# Request lib sync to get user view data (e.g. watched/unwatched)
|
|
|
|
utils.window('plex_runLibScan', value='full')
|
2016-03-10 01:37:27 +11:00
|
|
|
# Restart user client
|
|
|
|
utils.window('suspend_Userclient', clear=True)
|
2016-03-24 22:34:39 +11:00
|
|
|
utils.logMsg(title, "Complete reconnection to plex.tv and PMS complete", 0)
|
2016-03-04 23:34:30 +11:00
|
|
|
|
|
|
|
|
2016-02-03 23:01:13 +11:00
|
|
|
def PassPlaylist(xml, resume=None):
|
|
|
|
"""
|
|
|
|
resume in KodiTime - seconds.
|
|
|
|
"""
|
|
|
|
# Set window properties to make them available later for other threads
|
|
|
|
windowArgs = [
|
2016-02-07 22:38:50 +11:00
|
|
|
# 'containerKey'
|
2016-02-03 23:01:13 +11:00
|
|
|
'playQueueID',
|
2016-02-07 22:38:50 +11:00
|
|
|
'playQueueVersion']
|
2016-02-03 23:01:13 +11:00
|
|
|
for arg in windowArgs:
|
2016-02-07 22:38:50 +11:00
|
|
|
utils.window(arg, value=xml.attrib.get(arg))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-03 23:01:13 +11:00
|
|
|
# Get resume point
|
|
|
|
resume1 = PlexFunctions.ConvertPlexToKodiTime(utils.IntFromStr(
|
2016-02-04 23:33:16 +11:00
|
|
|
xml.attrib.get('playQueueSelectedItemOffset', 0)))
|
2016-02-03 23:01:13 +11:00
|
|
|
resume2 = resume
|
|
|
|
resume = max(resume1, resume2)
|
2016-02-01 02:13:40 +11:00
|
|
|
|
2016-02-03 23:01:13 +11:00
|
|
|
pbutils.PlaybackUtils(xml).StartPlay(
|
2016-02-05 01:06:34 +11:00
|
|
|
resume=resume,
|
|
|
|
resumeId=xml.attrib.get('playQueueSelectedItemID', None))
|
2016-01-23 01:37:20 +11:00
|
|
|
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
def doPlayback(itemid, dbid):
|
2016-02-03 23:01:13 +11:00
|
|
|
"""
|
|
|
|
Called only for a SINGLE element, not playQueues
|
2016-03-16 00:32:10 +11:00
|
|
|
|
|
|
|
Always to return with a "setResolvedUrl"
|
2016-02-03 23:01:13 +11:00
|
|
|
"""
|
2016-04-17 21:36:41 +10:00
|
|
|
if dbid == 'plexnode':
|
|
|
|
# Plex redirect, e.g. watch later. Need to get actual URLs
|
|
|
|
xml = downloadutils.DownloadUtils().downloadUrl(itemid,
|
|
|
|
authenticate=False)
|
|
|
|
if xml in (None, 401):
|
|
|
|
utils.logMsg(title, "Could not resolve url %s" % itemid, -1)
|
|
|
|
return xbmcplugin.setResolvedUrl(
|
|
|
|
int(sys.argv[1]), False, xbmcgui.ListItem())
|
|
|
|
return pbutils.PlaybackUtils(xml).play(None, dbid)
|
|
|
|
|
2016-03-14 20:40:49 +11:00
|
|
|
if utils.window('plex_authenticated') != "true":
|
|
|
|
utils.logMsg('doPlayback', 'Not yet authenticated for a PMS, abort '
|
|
|
|
'starting playback', -1)
|
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
|
|
|
# Not yet connected to a PMS server
|
|
|
|
xbmcgui.Dialog().notification(
|
2016-04-09 23:46:51 +10:00
|
|
|
addonName,
|
|
|
|
string(39210),
|
|
|
|
xbmcgui.NOTIFICATION_ERROR,
|
|
|
|
7000,
|
|
|
|
True)
|
2016-03-16 00:32:10 +11:00
|
|
|
return xbmcplugin.setResolvedUrl(
|
|
|
|
int(sys.argv[1]), False, xbmcgui.ListItem())
|
2016-02-03 23:01:13 +11:00
|
|
|
|
2016-04-17 21:36:41 +10:00
|
|
|
xml = PlexFunctions.GetPlexMetadata(itemid)
|
|
|
|
if xml in (None, 401):
|
2016-03-16 00:32:10 +11:00
|
|
|
return xbmcplugin.setResolvedUrl(
|
|
|
|
int(sys.argv[1]), False, xbmcgui.ListItem())
|
|
|
|
# Everything OK
|
2016-04-17 21:36:41 +10:00
|
|
|
return pbutils.PlaybackUtils(xml).play(itemid, dbid)
|
2016-02-09 05:40:58 +11:00
|
|
|
|
|
|
|
# utils.logMsg(title, "doPlayback called with itemid=%s, dbid=%s"
|
|
|
|
# % (itemid, dbid), 1)
|
|
|
|
# item = PlexFunctions.GetPlexMetadata(itemid)
|
|
|
|
# API = PlexAPI.API(item[0])
|
|
|
|
# # If resume != 0, then we don't need to build a playlist for trailers etc.
|
|
|
|
# # No idea how we could otherwise get resume timing out of Kodi
|
|
|
|
# resume, runtime = API.getRuntime()
|
|
|
|
# if resume == 0:
|
|
|
|
# uuid = item.attrib.get('librarySectionUUID', None)
|
|
|
|
# if uuid:
|
|
|
|
# if utils.settings('askCinema') == "true":
|
|
|
|
# trailers = xbmcgui.Dialog().yesno(addonName, "Play trailers?")
|
|
|
|
# else:
|
|
|
|
# trailers = True
|
|
|
|
# if trailers:
|
|
|
|
# playQueue = PlexFunctions.GetPlexPlaylist(
|
|
|
|
# API.getRatingKey(), uuid, mediatype=API.getType())
|
|
|
|
# if playQueue is not None:
|
|
|
|
# return PassPlaylist(playQueue)
|
|
|
|
# else:
|
|
|
|
# utils.logMsg(title, "Error: no valid playQueue", -1)
|
|
|
|
# else:
|
|
|
|
# # E.g trailers being directly played
|
|
|
|
# utils.logMsg(title, "No librarySectionUUID found.", 1)
|
|
|
|
|
|
|
|
# # Play only 1 item, not playQueue
|
|
|
|
# pbutils.PlaybackUtils(item).StartPlay(resume=resume,
|
|
|
|
# resumeId=None)
|
2016-02-01 02:13:40 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
##### DO RESET AUTH #####
|
|
|
|
def resetAuth():
|
|
|
|
# User tried login and failed too many times
|
2016-03-04 00:00:48 +11:00
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
2015-12-25 07:07:00 +11:00
|
|
|
resp = xbmcgui.Dialog().yesno(
|
2016-03-04 00:00:48 +11:00
|
|
|
heading="Warning",
|
2016-03-08 23:00:03 +11:00
|
|
|
line1=string(39206))
|
2015-12-25 07:07:00 +11:00
|
|
|
if resp == 1:
|
2016-01-25 02:12:28 +11:00
|
|
|
utils.logMsg("PLEX", "Reset login attempts.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
utils.window('emby_serverStatus', value="Auth")
|
|
|
|
else:
|
2015-12-27 21:49:14 +11:00
|
|
|
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.plexkodiconnect)')
|
2015-12-25 07:07:00 +11:00
|
|
|
def addDirectoryItem(label, path, folder=True):
|
|
|
|
li = xbmcgui.ListItem(label, path=path)
|
2015-12-27 21:49:14 +11:00
|
|
|
li.setThumbnailImage("special://home/addons/plugin.video.plexkodiconnect/icon.png")
|
|
|
|
li.setArt({"fanart":"special://home/addons/plugin.video.plexkodiconnect/fanart.jpg"})
|
|
|
|
li.setArt({"landscape":"special://home/addons/plugin.video.plexkodiconnect/fanart.jpg"})
|
2015-12-25 07:07:00 +11:00
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url=path, listitem=li, isFolder=folder)
|
|
|
|
|
|
|
|
def doMainListing():
|
2016-03-04 00:00:48 +11:00
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
2015-12-25 07:07:00 +11:00
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'files')
|
|
|
|
# Get emby nodes from the window props
|
|
|
|
embyprops = utils.window('Emby.nodes.total')
|
|
|
|
if embyprops:
|
|
|
|
totalnodes = int(embyprops)
|
|
|
|
for i in range(totalnodes):
|
|
|
|
path = utils.window('Emby.nodes.%s.index' % i)
|
|
|
|
if not path:
|
|
|
|
path = utils.window('Emby.nodes.%s.content' % i)
|
|
|
|
label = utils.window('Emby.nodes.%s.title' % i)
|
2016-04-26 21:53:19 +10:00
|
|
|
node_type = utils.window('Emby.nodes.%s.type' % i)
|
2016-01-18 19:45:39 +11:00
|
|
|
#because we do not use seperate entrypoints for each content type, we need to figure out which items to show in each listing.
|
2016-01-22 21:10:42 +11:00
|
|
|
#for now we just only show picture nodes in the picture library video nodes in the video library and all nodes in any other window
|
2016-04-26 21:53:19 +10:00
|
|
|
if path and xbmc.getCondVisibility("Window.IsActive(Pictures)") and node_type == "photos":
|
2015-12-25 07:07:00 +11:00
|
|
|
addDirectoryItem(label, path)
|
2016-04-26 21:53:19 +10:00
|
|
|
elif path and xbmc.getCondVisibility("Window.IsActive(VideoLibrary)") and node_type != "photos":
|
2016-01-19 06:48:44 +11:00
|
|
|
addDirectoryItem(label, path)
|
|
|
|
elif path and not xbmc.getCondVisibility("Window.IsActive(VideoLibrary) | Window.IsActive(Pictures) | Window.IsActive(MusicLibrary)"):
|
2015-12-25 07:07:00 +11:00
|
|
|
addDirectoryItem(label, path)
|
2016-01-20 07:27:58 +11:00
|
|
|
|
2016-04-17 21:36:41 +10:00
|
|
|
# Plex Watch later
|
|
|
|
addDirectoryItem(string(39211),
|
|
|
|
"plugin://plugin.video.plexkodiconnect/?mode=watchlater")
|
2016-03-11 02:04:01 +11:00
|
|
|
# Plex user switch
|
2016-03-23 20:13:31 +11:00
|
|
|
addDirectoryItem(string(39200) + utils.window('plex_username'),
|
2016-03-11 02:04:01 +11:00
|
|
|
"plugin://plugin.video.plexkodiconnect/"
|
|
|
|
"?mode=switchuser")
|
2016-01-25 20:36:24 +11:00
|
|
|
|
2016-01-20 07:27:58 +11:00
|
|
|
#experimental live tv nodes
|
2016-03-03 20:11:32 +11:00
|
|
|
# addDirectoryItem("Live Tv Channels (experimental)", "plugin://plugin.video.plexkodiconnect/?mode=browsecontent&type=tvchannels&folderid=root")
|
|
|
|
# addDirectoryItem("Live Tv Recordings (experimental)", "plugin://plugin.video.plexkodiconnect/?mode=browsecontent&type=recordings&folderid=root")
|
2016-01-20 07:27:58 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# some extra entries for settings and stuff. TODO --> localize the labels
|
2016-03-04 00:00:48 +11:00
|
|
|
addDirectoryItem(string(39201), "plugin://plugin.video.plexkodiconnect/?mode=settings")
|
2016-03-03 20:11:32 +11:00
|
|
|
# addDirectoryItem("Add user to session", "plugin://plugin.video.plexkodiconnect/?mode=adduser")
|
2016-03-04 00:00:48 +11:00
|
|
|
addDirectoryItem(string(39203), "plugin://plugin.video.plexkodiconnect/?mode=refreshplaylist")
|
|
|
|
addDirectoryItem(string(39204), "plugin://plugin.video.plexkodiconnect/?mode=manualsync")
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
|
2016-02-29 16:20:59 +11:00
|
|
|
|
|
|
|
##### Generate a new deviceId
|
|
|
|
def resetDeviceId():
|
|
|
|
|
|
|
|
dialog = xbmcgui.Dialog()
|
|
|
|
language = utils.language
|
|
|
|
|
2016-03-24 18:26:08 +11:00
|
|
|
deviceId_old = utils.window('plex_client_Id')
|
2016-02-29 16:20:59 +11:00
|
|
|
try:
|
|
|
|
deviceId = clientinfo.ClientInfo().getDeviceId(reset=True)
|
|
|
|
except Exception as e:
|
2016-03-01 20:40:30 +11:00
|
|
|
utils.logMsg(addonName,
|
|
|
|
"Failed to generate a new device Id: %s" % e, 1)
|
2016-02-29 16:20:59 +11:00
|
|
|
dialog.ok(
|
2016-03-01 20:40:30 +11:00
|
|
|
heading=addonName,
|
2016-03-08 23:00:03 +11:00
|
|
|
line1=language(33032))
|
2016-02-29 16:20:59 +11:00
|
|
|
else:
|
2016-03-01 20:40:30 +11:00
|
|
|
utils.logMsg(addonName,
|
|
|
|
"Successfully removed old deviceId: %s New deviceId: %s"
|
|
|
|
% (deviceId_old, deviceId), 1)
|
2016-02-29 16:20:59 +11:00
|
|
|
dialog.ok(
|
2016-03-01 20:40:30 +11:00
|
|
|
heading=addonName,
|
2016-03-08 23:00:03 +11:00
|
|
|
line1=language(33033))
|
2016-02-29 16:20:59 +11:00
|
|
|
xbmc.executebuiltin('RestartApp')
|
|
|
|
|
2016-03-10 13:15:45 +11:00
|
|
|
##### Delete Item
|
2016-03-10 10:05:35 +11:00
|
|
|
def deleteItem():
|
|
|
|
|
|
|
|
# Serves as a keymap action
|
|
|
|
if xbmc.getInfoLabel('ListItem.Property(embyid)'): # If we already have the embyid
|
|
|
|
embyid = xbmc.getInfoLabel('ListItem.Property(embyid)')
|
|
|
|
else:
|
2016-03-10 13:15:45 +11:00
|
|
|
dbid = xbmc.getInfoLabel('ListItem.DBID')
|
|
|
|
itemtype = xbmc.getInfoLabel('ListItem.DBTYPE')
|
|
|
|
|
|
|
|
if not itemtype:
|
|
|
|
|
|
|
|
if xbmc.getCondVisibility('Container.Content(albums)'):
|
|
|
|
itemtype = "album"
|
|
|
|
elif xbmc.getCondVisibility('Container.Content(artists)'):
|
|
|
|
itemtype = "artist"
|
|
|
|
elif xbmc.getCondVisibility('Container.Content(songs)'):
|
|
|
|
itemtype = "song"
|
|
|
|
elif xbmc.getCondVisibility('Container.Content(pictures)'):
|
|
|
|
itemtype = "picture"
|
|
|
|
else:
|
|
|
|
utils.logMsg("EMBY delete", "Unknown type, unable to proceed.", 1)
|
|
|
|
return
|
|
|
|
|
2016-03-10 10:05:35 +11:00
|
|
|
embyconn = utils.kodiSQL('emby')
|
|
|
|
embycursor = embyconn.cursor()
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
item = emby_db.getItem_byKodiId(dbid, itemtype)
|
|
|
|
embycursor.close()
|
|
|
|
|
|
|
|
try:
|
|
|
|
embyid = item[0]
|
|
|
|
except TypeError:
|
|
|
|
utils.logMsg("EMBY delete", "Unknown embyId, unable to proceed.", 1)
|
|
|
|
return
|
|
|
|
|
|
|
|
if utils.settings('skipContextMenu') != "true":
|
|
|
|
resp = xbmcgui.Dialog().yesno(
|
|
|
|
heading="Confirm delete",
|
|
|
|
line1=("Delete file from Emby Server? This will "
|
|
|
|
"also delete the file(s) from disk!"))
|
|
|
|
if not resp:
|
|
|
|
utils.logMsg("EMBY delete", "User skipped deletion for: %s." % embyid, 1)
|
|
|
|
return
|
|
|
|
|
|
|
|
doUtils = downloadutils.DownloadUtils()
|
|
|
|
url = "{server}/emby/Items/%s?format=json" % embyid
|
|
|
|
utils.logMsg("EMBY delete", "Deleting request: %s" % embyid, 0)
|
2016-04-26 21:53:19 +10:00
|
|
|
doUtils.downloadUrl(url, action_type="DELETE")
|
2016-03-10 10:05:35 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
##### ADD ADDITIONAL USERS #####
|
|
|
|
def addUser():
|
|
|
|
|
|
|
|
doUtils = downloadutils.DownloadUtils()
|
2015-12-25 09:16:58 +11:00
|
|
|
art = artwork.Artwork()
|
2015-12-25 07:07:00 +11:00
|
|
|
clientInfo = clientinfo.ClientInfo()
|
|
|
|
deviceId = clientInfo.getDeviceId()
|
|
|
|
deviceName = clientInfo.getDeviceName()
|
2016-03-11 02:02:46 +11:00
|
|
|
userid = utils.window('currUserId')
|
2015-12-25 07:07:00 +11:00
|
|
|
dialog = xbmcgui.Dialog()
|
|
|
|
|
|
|
|
# Get session
|
|
|
|
url = "{server}/emby/Sessions?DeviceId=%s&format=json" % deviceId
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
|
|
|
|
try:
|
|
|
|
sessionId = result[0]['Id']
|
|
|
|
additionalUsers = result[0]['AdditionalUsers']
|
|
|
|
# Add user to session
|
|
|
|
userlist = {}
|
|
|
|
users = []
|
|
|
|
url = "{server}/emby/Users?IsDisabled=false&IsHidden=false&format=json"
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
|
|
|
|
# pull the list of users
|
|
|
|
for user in result:
|
|
|
|
name = user['Name']
|
|
|
|
userId = user['Id']
|
|
|
|
if userid != userId:
|
|
|
|
userlist[name] = userId
|
|
|
|
users.append(name)
|
|
|
|
|
|
|
|
# Display dialog if there's additional users
|
|
|
|
if additionalUsers:
|
|
|
|
|
|
|
|
option = dialog.select("Add/Remove user from the session", ["Add user", "Remove user"])
|
|
|
|
# Users currently in the session
|
|
|
|
additionalUserlist = {}
|
|
|
|
additionalUsername = []
|
|
|
|
# Users currently in the session
|
|
|
|
for user in additionalUsers:
|
|
|
|
name = user['UserName']
|
|
|
|
userId = user['UserId']
|
|
|
|
additionalUserlist[name] = userId
|
|
|
|
additionalUsername.append(name)
|
|
|
|
|
|
|
|
if option == 1:
|
|
|
|
# User selected Remove user
|
|
|
|
resp = dialog.select("Remove user from the session", additionalUsername)
|
|
|
|
if resp > -1:
|
|
|
|
selected = additionalUsername[resp]
|
|
|
|
selected_userId = additionalUserlist[selected]
|
|
|
|
url = "{server}/emby/Sessions/%s/Users/%s" % (sessionId, selected_userId)
|
2016-04-26 21:53:19 +10:00
|
|
|
doUtils.downloadUrl(url, postBody={}, action_type="DELETE")
|
2015-12-25 07:07:00 +11:00
|
|
|
dialog.notification(
|
|
|
|
heading="Success!",
|
|
|
|
message="%s removed from viewing session" % selected,
|
2015-12-27 21:49:14 +11:00
|
|
|
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
2015-12-25 07:07:00 +11:00
|
|
|
time=1000)
|
|
|
|
|
|
|
|
# clear picture
|
|
|
|
position = utils.window('EmbyAdditionalUserPosition.%s' % selected_userId)
|
|
|
|
utils.window('EmbyAdditionalUserImage.%s' % position, clear=True)
|
|
|
|
return
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
|
|
|
elif option == 0:
|
|
|
|
# User selected Add user
|
|
|
|
for adduser in additionalUsername:
|
|
|
|
try: # Remove from selected already added users. It is possible they are hidden.
|
|
|
|
users.remove(adduser)
|
|
|
|
except: pass
|
|
|
|
|
|
|
|
elif option < 0:
|
|
|
|
# User cancelled
|
|
|
|
return
|
|
|
|
|
|
|
|
# Subtract any additional users
|
|
|
|
utils.logMsg("EMBY", "Displaying list of users: %s" % users)
|
|
|
|
resp = dialog.select("Add user to the session", users)
|
|
|
|
# post additional user
|
|
|
|
if resp > -1:
|
|
|
|
selected = users[resp]
|
|
|
|
selected_userId = userlist[selected]
|
|
|
|
url = "{server}/emby/Sessions/%s/Users/%s" % (sessionId, selected_userId)
|
2016-04-26 21:53:19 +10:00
|
|
|
doUtils.downloadUrl(url, postBody={}, action_type="POST")
|
2015-12-25 07:07:00 +11:00
|
|
|
dialog.notification(
|
|
|
|
heading="Success!",
|
|
|
|
message="%s added to viewing session" % selected,
|
2015-12-27 21:49:14 +11:00
|
|
|
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
2015-12-25 07:07:00 +11:00
|
|
|
time=1000)
|
|
|
|
|
|
|
|
except:
|
|
|
|
utils.logMsg("EMBY", "Failed to add user to session.")
|
|
|
|
dialog.notification(
|
|
|
|
heading="Error",
|
|
|
|
message="Unable to add/remove user from the session.",
|
|
|
|
icon=xbmcgui.NOTIFICATION_ERROR)
|
|
|
|
|
|
|
|
# Add additional user images
|
|
|
|
# always clear the individual items first
|
|
|
|
totalNodes = 10
|
|
|
|
for i in range(totalNodes):
|
|
|
|
if not utils.window('EmbyAdditionalUserImage.%s' % i):
|
|
|
|
break
|
2015-12-25 09:16:58 +11:00
|
|
|
utils.window('EmbyAdditionalUserImage.%s' % i, clear=True)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
url = "{server}/emby/Sessions?DeviceId=%s" % deviceId
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
additionalUsers = result[0]['AdditionalUsers']
|
|
|
|
count = 0
|
|
|
|
for additionaluser in additionalUsers:
|
2015-12-25 09:16:58 +11:00
|
|
|
userid = additionaluser['UserId']
|
|
|
|
url = "{server}/emby/Users/%s?format=json" % userid
|
2015-12-25 07:07:00 +11:00
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
utils.window('EmbyAdditionalUserImage.%s' % count,
|
2015-12-25 09:16:58 +11:00
|
|
|
value=art.getUserArtwork(result['Id'], 'Primary'))
|
|
|
|
utils.window('EmbyAdditionalUserPosition.%s' % userid, value=str(count))
|
2015-12-25 07:07:00 +11:00
|
|
|
count +=1
|
|
|
|
|
2016-01-25 20:36:24 +11:00
|
|
|
|
|
|
|
def switchPlexUser():
|
|
|
|
"""
|
|
|
|
Signs out currently logged in user (if applicable). Triggers sign-in of a
|
|
|
|
new user
|
|
|
|
"""
|
|
|
|
# Guess these user avatars are a future feature. Skipping for now
|
|
|
|
# Delete any userimages. Since there's always only 1 user: position = 0
|
|
|
|
# position = 0
|
|
|
|
# utils.window('EmbyAdditionalUserImage.%s' % position, clear=True)
|
2016-01-27 22:18:54 +11:00
|
|
|
utils.logMsg("entrypoint switchPlexUser",
|
|
|
|
"Plex home user switch requested", 0)
|
2016-01-25 20:36:24 +11:00
|
|
|
# Pause library sync thread - user needs to be auth in order to sync
|
2016-01-27 01:13:03 +11:00
|
|
|
utils.window('suspend_LibraryThread', value='true')
|
2016-03-03 19:35:35 +11:00
|
|
|
# Wait to ensure that any sync already going on has finished
|
2016-03-10 01:53:46 +11:00
|
|
|
counter = 0
|
2016-03-04 01:28:44 +11:00
|
|
|
while utils.window('emby_dbScan') == 'true':
|
2016-03-10 01:53:46 +11:00
|
|
|
if counter > 100:
|
|
|
|
# Something went wrong, aborting
|
|
|
|
# Resuming threads, just in case
|
|
|
|
utils.window('suspend_LibraryThread', clear=True)
|
|
|
|
# Abort reConnection
|
|
|
|
return
|
|
|
|
counter += 1
|
|
|
|
xbmc.sleep(50)
|
|
|
|
|
2016-04-08 00:13:02 +10:00
|
|
|
# First remove playlists
|
|
|
|
utils.deletePlaylists()
|
|
|
|
# Remove video nodes
|
|
|
|
utils.deleteNodes()
|
2016-01-25 20:36:24 +11:00
|
|
|
# Log out currently signed in user:
|
|
|
|
utils.window('emby_serverStatus', value="401")
|
|
|
|
# Request lib sync to get user view data (e.g. watched/unwatched)
|
2016-03-03 20:11:32 +11:00
|
|
|
utils.window('plex_runLibScan', value='full')
|
2016-01-25 20:36:24 +11:00
|
|
|
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
##### THEME MUSIC/VIDEOS #####
|
|
|
|
def getThemeMedia():
|
|
|
|
|
|
|
|
doUtils = downloadutils.DownloadUtils()
|
|
|
|
dialog = xbmcgui.Dialog()
|
|
|
|
playback = None
|
|
|
|
|
|
|
|
# Choose playback method
|
|
|
|
resp = dialog.select("Playback method for your themes", ["Direct Play", "Direct Stream"])
|
|
|
|
if resp == 0:
|
|
|
|
playback = "DirectPlay"
|
|
|
|
elif resp == 1:
|
|
|
|
playback = "DirectStream"
|
|
|
|
else:
|
|
|
|
return
|
|
|
|
|
2016-05-07 21:15:02 +10:00
|
|
|
library = utils.tryDecode(xbmc.translatePath(
|
|
|
|
"special://profile/addon_data/plugin.video.plexkodiconnect/library/"))
|
2015-12-25 07:07:00 +11:00
|
|
|
# Create library directory
|
2016-03-08 02:30:50 +11:00
|
|
|
if not utils.IfExists(library):
|
2015-12-25 07:07:00 +11:00
|
|
|
xbmcvfs.mkdir(library)
|
|
|
|
|
|
|
|
# Set custom path for user
|
2016-05-07 21:15:02 +10:00
|
|
|
tvtunes_path = utils.tryDecode(xbmc.translatePath(
|
|
|
|
"special://profile/addon_data/script.tvtunes/"))
|
2015-12-25 07:07:00 +11:00
|
|
|
if xbmcvfs.exists(tvtunes_path):
|
|
|
|
tvtunes = xbmcaddon.Addon(id="script.tvtunes")
|
|
|
|
tvtunes.setSetting('custom_path_enable', "true")
|
|
|
|
tvtunes.setSetting('custom_path', library)
|
|
|
|
utils.logMsg("EMBY", "TV Tunes custom path is enabled and set.", 1)
|
|
|
|
else:
|
|
|
|
# if it does not exist this will not work so warn user
|
|
|
|
# often they need to edit the settings first for it to be created.
|
|
|
|
dialog.ok(
|
|
|
|
heading="Warning",
|
|
|
|
line1=(
|
|
|
|
"The settings file does not exist in tvtunes. ",
|
|
|
|
"Go to the tvtunes addon and change a setting, then come back and re-run."))
|
|
|
|
xbmc.executebuiltin('Addon.OpenSettings(script.tvtunes)')
|
|
|
|
return
|
|
|
|
|
|
|
|
# Get every user view Id
|
2016-02-10 21:00:32 +11:00
|
|
|
with embydb.GetEmbyDB() as emby_db:
|
2016-02-10 20:04:49 +11:00
|
|
|
viewids = emby_db.getViews()
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
# Get Ids with Theme Videos
|
|
|
|
itemIds = {}
|
|
|
|
for view in viewids:
|
|
|
|
url = "{server}/emby/Users/{UserId}/Items?HasThemeVideo=True&ParentId=%s&format=json" % view
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
if result['TotalRecordCount'] != 0:
|
|
|
|
for item in result['Items']:
|
|
|
|
itemId = item['Id']
|
|
|
|
folderName = item['Name']
|
2016-05-07 21:15:02 +10:00
|
|
|
folderName = utils.normalize_string(
|
|
|
|
utils.tryEncode(folderName))
|
2015-12-25 07:07:00 +11:00
|
|
|
itemIds[itemId] = folderName
|
|
|
|
|
|
|
|
# Get paths for theme videos
|
|
|
|
for itemId in itemIds:
|
|
|
|
nfo_path = xbmc.translatePath(
|
2015-12-27 21:49:14 +11:00
|
|
|
"special://profile/addon_data/plugin.video.plexkodiconnect/library/%s/" % itemIds[itemId])
|
2015-12-25 07:07:00 +11:00
|
|
|
# Create folders for each content
|
|
|
|
if not xbmcvfs.exists(nfo_path):
|
|
|
|
xbmcvfs.mkdir(nfo_path)
|
|
|
|
# Where to put the nfos
|
|
|
|
nfo_path = "%s%s" % (nfo_path, "tvtunes.nfo")
|
|
|
|
|
|
|
|
url = "{server}/emby/Items/%s/ThemeVideos?format=json" % itemId
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
|
|
|
|
# Create nfo and write themes to it
|
2016-01-18 20:00:32 +11:00
|
|
|
nfo_file = xbmcvfs.File(nfo_path, 'w')
|
2015-12-25 07:07:00 +11:00
|
|
|
pathstowrite = ""
|
|
|
|
# May be more than one theme
|
|
|
|
for theme in result['Items']:
|
|
|
|
putils = playutils.PlayUtils(theme)
|
|
|
|
if playback == "DirectPlay":
|
|
|
|
playurl = putils.directPlay()
|
|
|
|
else:
|
|
|
|
playurl = putils.directStream()
|
2016-05-07 21:15:02 +10:00
|
|
|
pathstowrite += ('<file>%s</file>' % utils.tryEncode(playurl))
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Check if the item has theme songs and add them
|
|
|
|
url = "{server}/emby/Items/%s/ThemeSongs?format=json" % itemId
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
|
|
|
|
# May be more than one theme
|
|
|
|
for theme in result['Items']:
|
|
|
|
putils = playutils.PlayUtils(theme)
|
|
|
|
if playback == "DirectPlay":
|
|
|
|
playurl = putils.directPlay()
|
|
|
|
else:
|
|
|
|
playurl = putils.directStream()
|
2016-05-07 21:15:02 +10:00
|
|
|
pathstowrite += ('<file>%s</file>' % utils.tryEncode(playurl))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
nfo_file.write(
|
|
|
|
'<tvtunes>%s</tvtunes>' % pathstowrite
|
|
|
|
)
|
|
|
|
# Close nfo file
|
|
|
|
nfo_file.close()
|
|
|
|
|
|
|
|
# Get Ids with Theme songs
|
|
|
|
musicitemIds = {}
|
|
|
|
for view in viewids:
|
|
|
|
url = "{server}/emby/Users/{UserId}/Items?HasThemeSong=True&ParentId=%s&format=json" % view
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
if result['TotalRecordCount'] != 0:
|
|
|
|
for item in result['Items']:
|
|
|
|
itemId = item['Id']
|
|
|
|
folderName = item['Name']
|
2016-05-07 21:15:02 +10:00
|
|
|
folderName = utils.normalize_string(
|
|
|
|
utils.tryEncode(folderName))
|
2015-12-25 07:07:00 +11:00
|
|
|
musicitemIds[itemId] = folderName
|
|
|
|
|
|
|
|
# Get paths
|
|
|
|
for itemId in musicitemIds:
|
|
|
|
|
|
|
|
# if the item was already processed with video themes back out
|
|
|
|
if itemId in itemIds:
|
|
|
|
continue
|
|
|
|
|
|
|
|
nfo_path = xbmc.translatePath(
|
2015-12-27 21:49:14 +11:00
|
|
|
"special://profile/addon_data/plugin.video.plexkodiconnect/library/%s/" % musicitemIds[itemId])
|
2015-12-25 07:07:00 +11:00
|
|
|
# Create folders for each content
|
|
|
|
if not xbmcvfs.exists(nfo_path):
|
|
|
|
xbmcvfs.mkdir(nfo_path)
|
|
|
|
# Where to put the nfos
|
|
|
|
nfo_path = "%s%s" % (nfo_path, "tvtunes.nfo")
|
|
|
|
|
|
|
|
url = "{server}/emby/Items/%s/ThemeSongs?format=json" % itemId
|
|
|
|
result = doUtils.downloadUrl(url)
|
|
|
|
|
|
|
|
# Create nfo and write themes to it
|
2016-01-18 20:00:32 +11:00
|
|
|
nfo_file = xbmcvfs.File(nfo_path, 'w')
|
2015-12-25 07:07:00 +11:00
|
|
|
pathstowrite = ""
|
|
|
|
# May be more than one theme
|
|
|
|
for theme in result['Items']:
|
|
|
|
putils = playutils.PlayUtils(theme)
|
|
|
|
if playback == "DirectPlay":
|
|
|
|
playurl = putils.directPlay()
|
|
|
|
else:
|
|
|
|
playurl = putils.directStream()
|
2016-05-07 21:15:02 +10:00
|
|
|
pathstowrite += ('<file>%s</file>' % utils.tryEncode(playurl))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
nfo_file.write(
|
|
|
|
'<tvtunes>%s</tvtunes>' % pathstowrite
|
|
|
|
)
|
|
|
|
# Close nfo file
|
|
|
|
nfo_file.close()
|
|
|
|
|
|
|
|
dialog.notification(
|
|
|
|
heading="Emby for Kodi",
|
|
|
|
message="Themes added!",
|
2015-12-27 21:49:14 +11:00
|
|
|
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
|
2015-12-25 07:07:00 +11:00
|
|
|
time=1000,
|
|
|
|
sound=False)
|
|
|
|
|
2015-12-26 20:42:13 +11:00
|
|
|
##### REFRESH EMBY PLAYLISTS #####
|
|
|
|
def refreshPlaylist():
|
2016-03-03 20:11:32 +11:00
|
|
|
utils.logMsg(addonName, 'Requesting playlist/nodes refresh', 0)
|
|
|
|
utils.window('plex_runLibScan', value="views")
|
2015-12-26 20:42:13 +11:00
|
|
|
|
|
|
|
|
2016-01-22 21:10:42 +11:00
|
|
|
#### SHOW SUBFOLDERS FOR NODE #####
|
|
|
|
def GetSubFolders(nodeindex):
|
|
|
|
nodetypes = ["",".recent",".recentepisodes",".inprogress",".inprogressepisodes",".unwatched",".nextepisodes",".sets",".genres",".random",".recommended"]
|
|
|
|
for node in nodetypes:
|
|
|
|
title = utils.window('Emby.nodes.%s%s.title' %(nodeindex,node))
|
|
|
|
if title:
|
|
|
|
path = utils.window('Emby.nodes.%s%s.content' %(nodeindex,node))
|
|
|
|
addDirectoryItem(title, path)
|
|
|
|
xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
|
2016-01-20 07:27:58 +11:00
|
|
|
##### BROWSE EMBY NODES DIRECTLY #####
|
2016-04-26 21:53:19 +10:00
|
|
|
def BrowseContent(viewname, browse_type="", folderid=""):
|
|
|
|
|
2016-01-12 08:20:34 +11:00
|
|
|
emby = embyserver.Read_EmbyServer()
|
2016-01-20 07:27:58 +11:00
|
|
|
art = artwork.Artwork()
|
|
|
|
doUtils = downloadutils.DownloadUtils()
|
2016-01-22 21:10:42 +11:00
|
|
|
|
|
|
|
#folderid used as filter ?
|
2016-03-15 23:09:51 +11:00
|
|
|
if folderid in ["recent","recentepisodes","inprogress","inprogressepisodes","unwatched","nextepisodes","sets","genres","random","recommended"]:
|
2016-04-26 21:53:19 +10:00
|
|
|
filter_type = folderid
|
2016-01-22 21:10:42 +11:00
|
|
|
folderid = ""
|
|
|
|
else:
|
2016-04-26 21:53:19 +10:00
|
|
|
filter_type = ""
|
2016-01-22 21:10:42 +11:00
|
|
|
|
2016-01-13 11:03:35 +11:00
|
|
|
xbmcplugin.setPluginCategory(int(sys.argv[1]), viewname)
|
|
|
|
#get views for root level
|
2016-01-12 08:20:34 +11:00
|
|
|
if not folderid:
|
2016-03-15 03:47:05 +11:00
|
|
|
views = PlexFunctions.GetPlexCollections()
|
2016-01-12 08:20:34 +11:00
|
|
|
for view in views:
|
2016-05-07 21:15:02 +10:00
|
|
|
if view.get("name") == utils.tryDecode(viewname):
|
2016-01-12 08:20:34 +11:00
|
|
|
folderid = view.get("id")
|
2016-04-26 21:53:19 +10:00
|
|
|
break
|
2016-01-13 11:03:35 +11:00
|
|
|
|
2016-04-26 21:53:19 +10:00
|
|
|
if viewname is not None:
|
2016-05-07 21:15:02 +10:00
|
|
|
utils.logMsg("BrowseContent", "viewname: %s - type: %s - folderid: %s "
|
|
|
|
"- filter: %s" % (utils.tryDecode(viewname),
|
|
|
|
utils.tryDecode(browse_type),
|
|
|
|
utils.tryDecode(folderid),
|
|
|
|
utils.tryDecode(filter_type)))
|
2016-01-13 11:03:35 +11:00
|
|
|
#set the correct params for the content type
|
|
|
|
#only proceed if we have a folderid
|
2016-01-12 08:20:34 +11:00
|
|
|
if folderid:
|
2016-04-26 21:53:19 +10:00
|
|
|
if browse_type.lower() == "homevideos":
|
2016-01-13 11:03:35 +11:00
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
|
|
|
itemtype = "Video,Folder,PhotoAlbum"
|
2016-04-26 21:53:19 +10:00
|
|
|
elif browse_type.lower() == "photos":
|
2016-01-13 11:03:35 +11:00
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'files')
|
2016-03-05 10:20:24 +11:00
|
|
|
itemtype = "Photo,PhotoAlbum,Folder"
|
2016-01-13 11:03:35 +11:00
|
|
|
else:
|
|
|
|
itemtype = ""
|
|
|
|
|
|
|
|
#get the actual listing
|
2016-04-26 21:53:19 +10:00
|
|
|
if browse_type == "recordings":
|
2016-01-20 07:27:58 +11:00
|
|
|
listing = emby.getTvRecordings(folderid)
|
2016-04-26 21:53:19 +10:00
|
|
|
elif browse_type == "tvchannels":
|
2016-01-20 07:27:58 +11:00
|
|
|
listing = emby.getTvChannels()
|
2016-04-26 21:53:19 +10:00
|
|
|
elif filter_type == "recent":
|
2016-01-22 21:10:42 +11:00
|
|
|
listing = emby.getFilteredSection(folderid, itemtype=itemtype.split(",")[0], sortby="DateCreated", recursive=True, limit=25, sortorder="Descending")
|
2016-04-26 21:53:19 +10:00
|
|
|
elif filter_type == "random":
|
2016-01-22 21:10:42 +11:00
|
|
|
listing = emby.getFilteredSection(folderid, itemtype=itemtype.split(",")[0], sortby="Random", recursive=True, limit=150, sortorder="Descending")
|
2016-04-26 21:53:19 +10:00
|
|
|
elif filter_type == "recommended":
|
|
|
|
listing = emby.getFilteredSection(folderid, itemtype=itemtype.split(",")[0], sortby="SortName", recursive=True, limit=25, sortorder="Ascending", filter_type="IsFavorite")
|
|
|
|
elif filter_type == "sets":
|
|
|
|
listing = emby.getFilteredSection(folderid, itemtype=itemtype.split(",")[1], sortby="SortName", recursive=True, limit=25, sortorder="Ascending", filter_type="IsFavorite")
|
2016-01-13 11:03:35 +11:00
|
|
|
else:
|
2016-01-13 11:26:07 +11:00
|
|
|
listing = emby.getFilteredSection(folderid, itemtype=itemtype, recursive=False)
|
2016-01-13 11:03:35 +11:00
|
|
|
|
|
|
|
#process the listing
|
2016-01-13 11:26:07 +11:00
|
|
|
if listing:
|
|
|
|
for item in listing.get("Items"):
|
2016-01-20 07:27:58 +11:00
|
|
|
li = createListItemFromEmbyItem(item,art,doUtils)
|
2016-01-13 11:26:07 +11:00
|
|
|
if item.get("IsFolder") == True:
|
|
|
|
#for folders we add an additional browse request, passing the folderId
|
2016-05-07 21:15:02 +10:00
|
|
|
path = "%s?id=%s&mode=browsecontent&type=%s&folderid=%s" \
|
|
|
|
% (utils.tryDecode(sys.argv[0]),
|
|
|
|
utils.tryDecode(viewname),
|
|
|
|
utils.tryDecode(browse_type),
|
|
|
|
utils.tryDecode(item.get("Id")))
|
2016-01-13 11:26:07 +11:00
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url=path, listitem=li, isFolder=True)
|
|
|
|
else:
|
|
|
|
#playable item, set plugin path and mediastreams
|
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url=li.getProperty("path"), listitem=li)
|
2016-01-12 08:20:34 +11:00
|
|
|
|
|
|
|
|
2016-04-26 21:53:19 +10:00
|
|
|
if filter_type == "recent":
|
2016-01-13 11:03:35 +11:00
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_DATE)
|
|
|
|
else:
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_TITLE)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_DATE)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RATING)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RUNTIME)
|
|
|
|
|
2016-03-04 20:00:25 +11:00
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
|
2016-01-13 11:03:35 +11:00
|
|
|
##### CREATE LISTITEM FROM EMBY METADATA #####
|
2016-01-20 07:27:58 +11:00
|
|
|
def createListItemFromEmbyItem(item,art=artwork.Artwork(),doUtils=downloadutils.DownloadUtils()):
|
2016-04-26 22:41:58 +10:00
|
|
|
API = PlexAPI.API(item)
|
2016-01-13 11:03:35 +11:00
|
|
|
itemid = item['Id']
|
|
|
|
|
|
|
|
title = item.get('Name')
|
|
|
|
li = xbmcgui.ListItem(title)
|
|
|
|
|
|
|
|
premieredate = item.get('PremiereDate',"")
|
|
|
|
if not premieredate: premieredate = item.get('DateCreated',"")
|
|
|
|
if premieredate:
|
|
|
|
premieredatelst = premieredate.split('T')[0].split("-")
|
|
|
|
premieredate = "%s.%s.%s" %(premieredatelst[2],premieredatelst[1],premieredatelst[0])
|
|
|
|
|
|
|
|
li.setProperty("embyid",itemid)
|
|
|
|
|
|
|
|
allart = art.getAllArtwork(item)
|
|
|
|
|
2016-01-13 23:24:26 +11:00
|
|
|
if item["Type"] == "Photo":
|
2016-01-13 11:03:35 +11:00
|
|
|
#listitem setup for pictures...
|
|
|
|
img_path = allart.get('Primary')
|
|
|
|
li.setProperty("path",img_path)
|
2016-01-13 11:26:07 +11:00
|
|
|
picture = doUtils.downloadUrl("{server}/Items/%s/Images" %itemid)
|
|
|
|
if picture:
|
|
|
|
picture = picture[0]
|
|
|
|
if picture.get("Width") > picture.get("Height"):
|
|
|
|
li.setArt( {"fanart": img_path}) #add image as fanart for use with skinhelper auto thumb/backgrund creation
|
2016-01-13 23:24:26 +11:00
|
|
|
li.setInfo('pictures', infoLabels={ "picturepath": img_path, "date": premieredate, "size": picture.get("Size"), "exif:width": str(picture.get("Width")), "exif:height": str(picture.get("Height")), "title": title})
|
2016-01-13 11:03:35 +11:00
|
|
|
li.setThumbnailImage(img_path)
|
2016-01-13 23:24:26 +11:00
|
|
|
li.setProperty("plot",API.getOverview())
|
2016-01-13 11:03:35 +11:00
|
|
|
li.setIconImage('DefaultPicture.png')
|
|
|
|
else:
|
|
|
|
#normal video items
|
|
|
|
li.setProperty('IsPlayable', 'true')
|
|
|
|
path = "%s?id=%s&mode=play" % (sys.argv[0], item.get("Id"))
|
|
|
|
li.setProperty("path",path)
|
|
|
|
genre = API.getGenres()
|
|
|
|
overlay = 0
|
|
|
|
userdata = API.getUserData()
|
2016-01-20 07:27:58 +11:00
|
|
|
runtime = item.get("RunTimeTicks",0)/ 10000000.0
|
2016-01-13 11:03:35 +11:00
|
|
|
seektime = userdata['Resume']
|
|
|
|
if seektime:
|
2016-01-24 05:51:39 +11:00
|
|
|
li.setProperty("resumetime", str(seektime))
|
2016-01-20 07:27:58 +11:00
|
|
|
li.setProperty("totaltime", str(runtime))
|
2016-01-13 11:03:35 +11:00
|
|
|
|
|
|
|
played = userdata['Played']
|
|
|
|
if played: overlay = 7
|
2016-01-13 23:24:26 +11:00
|
|
|
else: overlay = 6
|
2016-01-13 11:03:35 +11:00
|
|
|
playcount = userdata['PlayCount']
|
|
|
|
if playcount is None:
|
|
|
|
playcount = 0
|
2016-01-12 08:20:34 +11:00
|
|
|
|
2016-01-13 11:03:35 +11:00
|
|
|
rating = item.get('CommunityRating')
|
|
|
|
if not rating: rating = userdata['UserRating']
|
|
|
|
|
|
|
|
# Populate the extradata list and artwork
|
|
|
|
extradata = {
|
|
|
|
'id': itemid,
|
|
|
|
'rating': rating,
|
|
|
|
'year': item.get('ProductionYear'),
|
|
|
|
'genre': genre,
|
|
|
|
'playcount': str(playcount),
|
|
|
|
'title': title,
|
|
|
|
'plot': API.getOverview(),
|
|
|
|
'Overlay': str(overlay),
|
2016-01-20 07:27:58 +11:00
|
|
|
'duration': runtime
|
2016-01-13 11:03:35 +11:00
|
|
|
}
|
2016-01-20 07:27:58 +11:00
|
|
|
if premieredate:
|
|
|
|
extradata["premieredate"] = premieredate
|
|
|
|
extradata["date"] = premieredate
|
2016-01-13 11:03:35 +11:00
|
|
|
li.setInfo('video', infoLabels=extradata)
|
2016-01-20 07:27:58 +11:00
|
|
|
if allart.get('Primary'):
|
|
|
|
li.setThumbnailImage(allart.get('Primary'))
|
|
|
|
else: li.setThumbnailImage('DefaultTVShows.png')
|
2016-01-13 11:03:35 +11:00
|
|
|
li.setIconImage('DefaultTVShows.png')
|
|
|
|
if not allart.get('Background'): #add image as fanart for use with skinhelper auto thumb/backgrund creation
|
|
|
|
li.setArt( {"fanart": allart.get('Primary') } )
|
|
|
|
else:
|
|
|
|
pbutils.PlaybackUtils(item).setArtwork(li)
|
2016-01-20 07:27:58 +11:00
|
|
|
|
2016-01-13 11:03:35 +11:00
|
|
|
mediastreams = API.getMediaStreams()
|
2016-01-20 07:27:58 +11:00
|
|
|
videostreamFound = False
|
2016-01-13 11:03:35 +11:00
|
|
|
if mediastreams:
|
|
|
|
for key, value in mediastreams.iteritems():
|
2016-01-20 07:27:58 +11:00
|
|
|
if key == "video" and value: videostreamFound = True
|
2016-01-13 11:03:35 +11:00
|
|
|
if value: li.addStreamInfo(key, value[0])
|
2016-01-20 07:27:58 +11:00
|
|
|
if not videostreamFound:
|
|
|
|
#just set empty streamdetails to prevent errors in the logs
|
|
|
|
li.addStreamInfo("video", {'duration': runtime})
|
2016-01-13 11:03:35 +11:00
|
|
|
|
|
|
|
return li
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
##### BROWSE EMBY CHANNELS #####
|
|
|
|
def BrowseChannels(itemid, folderid=None):
|
|
|
|
|
|
|
|
_addon_id = int(sys.argv[1])
|
|
|
|
_addon_url = sys.argv[0]
|
|
|
|
doUtils = downloadutils.DownloadUtils()
|
|
|
|
art = artwork.Artwork()
|
|
|
|
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'files')
|
|
|
|
if folderid:
|
|
|
|
url = (
|
|
|
|
"{server}/emby/Channels/%s/Items?userid={UserId}&folderid=%s&format=json"
|
|
|
|
% (itemid, folderid))
|
|
|
|
elif itemid == "0":
|
|
|
|
# id 0 is the root channels folder
|
|
|
|
url = "{server}/emby/Channels?{UserId}&format=json"
|
|
|
|
else:
|
|
|
|
url = "{server}/emby/Channels/%s/Items?UserId={UserId}&format=json" % itemid
|
|
|
|
|
|
|
|
result = doUtils.downloadUrl(url)
|
2016-01-20 07:27:58 +11:00
|
|
|
if result and result.get("Items"):
|
|
|
|
for item in result.get("Items"):
|
2015-12-25 07:07:00 +11:00
|
|
|
itemid = item['Id']
|
|
|
|
itemtype = item['Type']
|
2016-01-20 07:27:58 +11:00
|
|
|
li = createListItemFromEmbyItem(item,art,doUtils)
|
2016-04-05 20:02:15 +10:00
|
|
|
if itemtype == "ChannelFolderItem":
|
|
|
|
isFolder = True
|
|
|
|
else:
|
|
|
|
isFolder = False
|
2015-12-25 07:07:00 +11:00
|
|
|
channelId = item.get('ChannelId', "")
|
|
|
|
channelName = item.get('ChannelName', "")
|
|
|
|
if itemtype == "Channel":
|
|
|
|
path = "%s?id=%s&mode=channels" % (_addon_url, itemid)
|
|
|
|
xbmcplugin.addDirectoryItem(handle=_addon_id, url=path, listitem=li, isFolder=True)
|
|
|
|
elif isFolder:
|
|
|
|
path = "%s?id=%s&mode=channelsfolder&folderid=%s" % (_addon_url, channelId, itemid)
|
|
|
|
xbmcplugin.addDirectoryItem(handle=_addon_id, url=path, listitem=li, isFolder=True)
|
|
|
|
else:
|
|
|
|
path = "%s?id=%s&mode=play" % (_addon_url, itemid)
|
|
|
|
li.setProperty('IsPlayable', 'true')
|
|
|
|
xbmcplugin.addDirectoryItem(handle=_addon_id, url=path, listitem=li)
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
|
|
|
|
##### LISTITEM SETUP FOR VIDEONODES #####
|
2016-04-27 18:37:24 +10:00
|
|
|
def createListItem(item, appendShowTitle=False, appendSxxExx=False):
|
2015-12-25 07:07:00 +11:00
|
|
|
title = item['title']
|
|
|
|
li = xbmcgui.ListItem(title)
|
|
|
|
li.setProperty('IsPlayable', "true")
|
|
|
|
|
2016-04-27 18:37:24 +10:00
|
|
|
metadata = {
|
2015-12-25 07:07:00 +11:00
|
|
|
'duration': str(item['runtime']/60),
|
|
|
|
'Plot': item['plot'],
|
|
|
|
'Playcount': item['playcount']
|
|
|
|
}
|
|
|
|
|
|
|
|
if "episode" in item:
|
|
|
|
episode = item['episode']
|
|
|
|
metadata['Episode'] = episode
|
|
|
|
|
|
|
|
if "season" in item:
|
|
|
|
season = item['season']
|
|
|
|
metadata['Season'] = season
|
|
|
|
|
|
|
|
if season and episode:
|
|
|
|
li.setProperty('episodeno', "s%.2de%.2d" % (season, episode))
|
2016-04-27 18:37:24 +10:00
|
|
|
if appendSxxExx is True:
|
|
|
|
title = "S%.2dE%.2d - %s" % (season, episode, title)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if "firstaired" in item:
|
|
|
|
metadata['Premiered'] = item['firstaired']
|
|
|
|
|
|
|
|
if "showtitle" in item:
|
|
|
|
metadata['TVshowTitle'] = item['showtitle']
|
2016-04-27 18:37:24 +10:00
|
|
|
if appendShowTitle is True:
|
|
|
|
title = item['showtitle'] + ' - ' + title
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if "rating" in item:
|
|
|
|
metadata['Rating'] = str(round(float(item['rating']),1))
|
|
|
|
|
|
|
|
if "director" in item:
|
|
|
|
metadata['Director'] = " / ".join(item['director'])
|
|
|
|
|
|
|
|
if "writer" in item:
|
|
|
|
metadata['Writer'] = " / ".join(item['writer'])
|
|
|
|
|
|
|
|
if "cast" in item:
|
|
|
|
cast = []
|
|
|
|
castandrole = []
|
|
|
|
for person in item['cast']:
|
|
|
|
name = person['name']
|
|
|
|
cast.append(name)
|
|
|
|
castandrole.append((name, person['role']))
|
|
|
|
metadata['Cast'] = cast
|
|
|
|
metadata['CastAndRole'] = castandrole
|
|
|
|
|
2016-04-27 18:37:24 +10:00
|
|
|
metadata['Title'] = title
|
|
|
|
li.setLabel(title)
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
li.setInfo(type="Video", infoLabels=metadata)
|
|
|
|
li.setProperty('resumetime', str(item['resume']['position']))
|
|
|
|
li.setProperty('totaltime', str(item['resume']['total']))
|
|
|
|
li.setArt(item['art'])
|
|
|
|
li.setThumbnailImage(item['art'].get('thumb',''))
|
|
|
|
li.setIconImage('DefaultTVShows.png')
|
|
|
|
li.setProperty('dbid', str(item['episodeid']))
|
|
|
|
li.setProperty('fanart_image', item['art'].get('tvshow.fanart',''))
|
|
|
|
for key, value in item['streamdetails'].iteritems():
|
|
|
|
for stream in value:
|
|
|
|
li.addStreamInfo(key, stream)
|
|
|
|
|
|
|
|
return li
|
|
|
|
|
|
|
|
##### GET NEXTUP EPISODES FOR TAGNAME #####
|
|
|
|
def getNextUpEpisodes(tagname, limit):
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
# if the addon is called with nextup parameter,
|
|
|
|
# we return the nextepisodes list of the given tagname
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
|
|
|
# First we get a list of all the TV shows - filtered by tag
|
|
|
|
query = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': "libTvShows",
|
|
|
|
'method': "VideoLibrary.GetTVShows",
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'sort': {'order': "descending", 'method': "lastplayed"},
|
|
|
|
'filter': {
|
|
|
|
'and': [
|
|
|
|
{'operator': "true", 'field': "inprogress", 'value': ""},
|
2016-02-06 07:30:32 +11:00
|
|
|
{'operator': "is", 'field': "tag", 'value': "%s" % tagname}
|
2015-12-25 07:07:00 +11:00
|
|
|
]},
|
|
|
|
'properties': ['title', 'studio', 'mpaa', 'file', 'art']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
# If we found any, find the oldest unwatched show for each one.
|
|
|
|
try:
|
|
|
|
items = result['result']['tvshows']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for item in items:
|
|
|
|
if utils.settings('ignoreSpecialsNextEpisodes') == "true":
|
|
|
|
query = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'tvshowid': item['tvshowid'],
|
|
|
|
'sort': {'method': "episode"},
|
|
|
|
'filter': {
|
|
|
|
'and': [
|
|
|
|
{'operator': "lessthan", 'field': "playcount", 'value': "1"},
|
|
|
|
{'operator': "greaterthan", 'field': "season", 'value': "0"}
|
|
|
|
]},
|
|
|
|
'properties': [
|
|
|
|
"title", "playcount", "season", "episode", "showtitle",
|
|
|
|
"plot", "file", "rating", "resume", "tvshowid", "art",
|
|
|
|
"streamdetails", "firstaired", "runtime", "writer",
|
|
|
|
"dateadded", "lastplayed"
|
|
|
|
],
|
|
|
|
'limits': {"end": 1}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
query = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'tvshowid': item['tvshowid'],
|
|
|
|
'sort': {'method': "episode"},
|
|
|
|
'filter': {'operator': "lessthan", 'field': "playcount", 'value': "1"},
|
|
|
|
'properties': [
|
|
|
|
"title", "playcount", "season", "episode", "showtitle",
|
|
|
|
"plot", "file", "rating", "resume", "tvshowid", "art",
|
|
|
|
"streamdetails", "firstaired", "runtime", "writer",
|
|
|
|
"dateadded", "lastplayed"
|
|
|
|
],
|
|
|
|
'limits': {"end": 1}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
episodes = result['result']['episodes']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for episode in episodes:
|
|
|
|
li = createListItem(episode)
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
2015-12-26 18:50:32 +11:00
|
|
|
url=episode['file'],
|
2015-12-25 07:07:00 +11:00
|
|
|
listitem=li)
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
if count == limit:
|
|
|
|
break
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
|
|
|
|
##### GET INPROGRESS EPISODES FOR TAGNAME #####
|
|
|
|
def getInProgressEpisodes(tagname, limit):
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
# if the addon is called with inprogressepisodes parameter,
|
|
|
|
# we return the inprogressepisodes list of the given tagname
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
|
|
|
# First we get a list of all the in-progress TV shows - filtered by tag
|
|
|
|
query = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': "libTvShows",
|
|
|
|
'method': "VideoLibrary.GetTVShows",
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'sort': {'order': "descending", 'method': "lastplayed"},
|
|
|
|
'filter': {
|
|
|
|
'and': [
|
|
|
|
{'operator': "true", 'field': "inprogress", 'value': ""},
|
2016-02-06 07:30:32 +11:00
|
|
|
{'operator': "is", 'field': "tag", 'value': "%s" % tagname}
|
2015-12-25 07:07:00 +11:00
|
|
|
]},
|
|
|
|
'properties': ['title', 'studio', 'mpaa', 'file', 'art']
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
# If we found any, find the oldest unwatched show for each one.
|
|
|
|
try:
|
|
|
|
items = result['result']['tvshows']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for item in items:
|
|
|
|
query = {
|
|
|
|
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
|
|
|
|
'tvshowid': item['tvshowid'],
|
|
|
|
'sort': {'method': "episode"},
|
|
|
|
'filter': {'operator': "true", 'field': "inprogress", 'value': ""},
|
|
|
|
'properties': [
|
|
|
|
"title", "playcount", "season", "episode", "showtitle", "plot",
|
|
|
|
"file", "rating", "resume", "tvshowid", "art", "cast",
|
|
|
|
"streamdetails", "firstaired", "runtime", "writer",
|
|
|
|
"dateadded", "lastplayed"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
episodes = result['result']['episodes']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for episode in episodes:
|
|
|
|
li = createListItem(episode)
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
2015-12-26 18:50:32 +11:00
|
|
|
url=episode['file'],
|
2015-12-25 07:07:00 +11:00
|
|
|
listitem=li)
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
if count == limit:
|
|
|
|
break
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
|
|
|
|
##### GET RECENT EPISODES FOR TAGNAME #####
|
2016-03-16 00:19:56 +11:00
|
|
|
# def getRecentEpisodes(tagname, limit):
|
|
|
|
def getRecentEpisodes(viewid, mediatype, tagname, limit):
|
2015-12-25 07:07:00 +11:00
|
|
|
count = 0
|
|
|
|
# if the addon is called with recentepisodes parameter,
|
|
|
|
# we return the recentepisodes list of the given tagname
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
2016-05-13 04:43:53 +10:00
|
|
|
appendShowTitle = utils.settings('RecentTvAppendShow') == 'true'
|
|
|
|
appendSxxExx = utils.settings('RecentTvAppendSeason') == 'true'
|
2015-12-25 07:07:00 +11:00
|
|
|
# First we get a list of all the TV shows - filtered by tag
|
|
|
|
query = {
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': "libTvShows",
|
|
|
|
'method': "VideoLibrary.GetTVShows",
|
|
|
|
'params': {
|
|
|
|
'sort': {'order': "descending", 'method': "dateadded"},
|
2016-02-06 07:30:32 +11:00
|
|
|
'filter': {'operator': "is", 'field': "tag", 'value': "%s" % tagname},
|
2015-12-25 07:07:00 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
# If we found any, find the oldest unwatched show for each one.
|
|
|
|
try:
|
2016-03-16 00:19:56 +11:00
|
|
|
items = result['result'][mediatype]
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
# No items, empty folder
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
return
|
|
|
|
|
|
|
|
allshowsIds = set()
|
|
|
|
for item in items:
|
|
|
|
allshowsIds.add(item['tvshowid'])
|
|
|
|
|
|
|
|
query = {
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
'sort': {'order': "descending", 'method': "dateadded"},
|
|
|
|
'properties': [
|
|
|
|
"title", "playcount", "season", "episode", "showtitle", "plot",
|
|
|
|
"file", "rating", "resume", "tvshowid", "art", "streamdetails",
|
|
|
|
"firstaired", "runtime", "cast", "writer", "dateadded", "lastplayed"
|
|
|
|
],
|
|
|
|
"limits": {"end": limit}
|
|
|
|
}
|
|
|
|
}
|
2016-05-16 02:26:07 +10:00
|
|
|
if utils.settings('TVShowWatched') == 'false':
|
2016-05-16 01:24:44 +10:00
|
|
|
query['params']['filter'] = {
|
|
|
|
'operator': "lessthan",
|
|
|
|
'field': "playcount",
|
|
|
|
'value': "1"
|
|
|
|
}
|
2016-03-16 00:19:56 +11:00
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
episodes = result['result']['episodes']
|
2015-12-25 07:07:00 +11:00
|
|
|
except (KeyError, TypeError):
|
|
|
|
pass
|
|
|
|
else:
|
2016-03-16 00:19:56 +11:00
|
|
|
for episode in episodes:
|
|
|
|
if episode['tvshowid'] in allshowsIds:
|
2016-04-27 18:37:24 +10:00
|
|
|
li = createListItem(episode,
|
|
|
|
appendShowTitle=appendShowTitle,
|
|
|
|
appendSxxExx=appendSxxExx)
|
2016-03-16 00:19:56 +11:00
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url=episode['file'],
|
|
|
|
listitem=li)
|
|
|
|
count += 1
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-03-16 00:19:56 +11:00
|
|
|
if count == limit:
|
|
|
|
break
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
|
|
|
|
def getVideoFiles(plexId, params):
|
|
|
|
"""
|
|
|
|
GET VIDEO EXTRAS FOR LISTITEM
|
|
|
|
|
|
|
|
returns the video files for the item as plugin listing, can be used for
|
|
|
|
browsing the actual files or videoextras etc.
|
|
|
|
"""
|
|
|
|
if plexId is None:
|
|
|
|
filename = params.get('filename')
|
|
|
|
if filename is not None:
|
|
|
|
filename = filename[0]
|
|
|
|
import re
|
|
|
|
regex = re.compile(r'''library/metadata/(\d+)''')
|
|
|
|
filename = regex.findall(filename)
|
|
|
|
try:
|
|
|
|
plexId = filename[0]
|
|
|
|
except IndexError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
if plexId is None:
|
|
|
|
utils.logMsg(title, 'No Plex ID found, abort getting Extras', 0)
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
|
|
|
|
item = PlexFunctions.GetPlexMetadata(plexId)
|
|
|
|
try:
|
|
|
|
path = item[0][0][0].attrib['file']
|
|
|
|
except:
|
|
|
|
utils.logMsg(title, 'Could not get file path for item %s'
|
|
|
|
% plexId, -1)
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
# Assign network protocol
|
|
|
|
if path.startswith('\\\\'):
|
|
|
|
path = path.replace('\\\\', 'smb://')
|
|
|
|
path = path.replace('\\', '/')
|
|
|
|
# Plex returns Windows paths as e.g. 'c:\slfkjelf\slfje\file.mkv'
|
|
|
|
elif '\\' in path:
|
|
|
|
path = path.replace('\\', '\\\\')
|
|
|
|
# Directory only, get rid of filename (!! exists() needs / or \ at end)
|
|
|
|
path = path.replace(os.path.basename(path), '')
|
|
|
|
# Only proceed if we can access this folder
|
|
|
|
if xbmcvfs.exists(path):
|
|
|
|
# Careful, returns encoded strings!
|
|
|
|
dirs, files = xbmcvfs.listdir(path)
|
|
|
|
for file in files:
|
2016-05-07 21:15:02 +10:00
|
|
|
file = path + utils.tryDecode(file)
|
2016-04-09 23:46:51 +10:00
|
|
|
li = xbmcgui.ListItem(file, path=file)
|
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),
|
2016-05-07 21:15:02 +10:00
|
|
|
url=utils.tryEncode(file),
|
2016-04-09 23:46:51 +10:00
|
|
|
listitem=li)
|
|
|
|
for dir in dirs:
|
2016-05-07 21:15:02 +10:00
|
|
|
dir = path + utils.tryDecode(dir)
|
2016-04-09 23:46:51 +10:00
|
|
|
li = xbmcgui.ListItem(dir, path=dir)
|
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]),
|
2016-05-07 21:15:02 +10:00
|
|
|
url=utils.tryEncode(dir),
|
2016-04-09 23:46:51 +10:00
|
|
|
listitem=li,
|
|
|
|
isFolder=True)
|
2016-04-09 23:51:30 +10:00
|
|
|
else:
|
|
|
|
utils.logMsg(title, 'Kodi cannot access folder %s' % path, 0)
|
2016-03-05 08:00:24 +11:00
|
|
|
xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
2016-04-09 23:46:51 +10:00
|
|
|
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
##### GET EXTRAFANART FOR LISTITEM #####
|
2016-03-05 00:03:15 +11:00
|
|
|
def getExtraFanArt(embyId,embyPath):
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
emby = embyserver.Read_EmbyServer()
|
|
|
|
art = artwork.Artwork()
|
|
|
|
|
|
|
|
# Get extrafanart for listitem
|
2016-01-07 09:22:10 +11:00
|
|
|
# will be called by skinhelper script to get the extrafanart
|
2015-12-25 07:07:00 +11:00
|
|
|
try:
|
2016-01-07 09:22:10 +11:00
|
|
|
# for tvshows we get the embyid just from the path
|
2016-03-05 00:03:15 +11:00
|
|
|
if not embyId:
|
|
|
|
if "plugin.video.emby" in embyPath:
|
|
|
|
embyId = embyPath.split("/")[-2]
|
2016-01-07 09:22:10 +11:00
|
|
|
|
|
|
|
if embyId:
|
|
|
|
#only proceed if we actually have a emby id
|
|
|
|
utils.logMsg("EMBY", "Requesting extrafanart for Id: %s" % embyId, 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
# We need to store the images locally for this to work
|
|
|
|
# because of the caching system in xbmc
|
2016-05-07 21:15:02 +10:00
|
|
|
fanartDir = utils.tryDecode(xbmc.translatePath(
|
|
|
|
"special://thumbnails/emby/%s/" % embyId))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if not xbmcvfs.exists(fanartDir):
|
|
|
|
# Download the images to the cache directory
|
|
|
|
xbmcvfs.mkdirs(fanartDir)
|
|
|
|
item = emby.getItem(embyId)
|
|
|
|
if item:
|
|
|
|
backdrops = art.getAllArtwork(item)['Backdrop']
|
|
|
|
tags = item['BackdropImageTags']
|
|
|
|
count = 0
|
|
|
|
for backdrop in backdrops:
|
|
|
|
# Same ordering as in artwork
|
|
|
|
tag = tags[count]
|
2016-01-18 22:05:05 +11:00
|
|
|
if os.path.supports_unicode_filenames:
|
|
|
|
fanartFile = os.path.join(fanartDir, "fanart%s.jpg" % tag)
|
|
|
|
else:
|
2016-05-07 21:15:02 +10:00
|
|
|
fanartFile = os.path.join(
|
|
|
|
utils.tryEncode(fanartDir),
|
|
|
|
"fanart%s.jpg" % utils.tryEncode(tag))
|
2015-12-25 07:07:00 +11:00
|
|
|
li = xbmcgui.ListItem(tag, path=fanartFile)
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url=fanartFile,
|
|
|
|
listitem=li)
|
|
|
|
xbmcvfs.copy(backdrop, fanartFile)
|
|
|
|
count += 1
|
|
|
|
else:
|
|
|
|
utils.logMsg("EMBY", "Found cached backdrop.", 2)
|
|
|
|
# Use existing cached images
|
|
|
|
dirs, files = xbmcvfs.listdir(fanartDir)
|
|
|
|
for file in files:
|
2016-05-07 21:15:02 +10:00
|
|
|
fanartFile = os.path.join(fanartDir, utils.tryDecode(file))
|
2015-12-25 07:07:00 +11:00
|
|
|
li = xbmcgui.ListItem(file, path=fanartFile)
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url=fanartFile,
|
|
|
|
listitem=li)
|
|
|
|
except Exception as e:
|
2016-03-05 00:03:15 +11:00
|
|
|
utils.logMsg("EMBY", "Error getting extrafanart: %s" % e, 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
# Always do endofdirectory to prevent errors in the logs
|
2016-03-04 00:00:48 +11:00
|
|
|
xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
|
|
|
|
|
|
|
|
def RunLibScan(mode):
|
|
|
|
if utils.window('emby_online') != "true":
|
|
|
|
# Server is not online, do not run the sync
|
|
|
|
string = xbmcaddon.Addon().getLocalizedString
|
|
|
|
xbmcgui.Dialog().ok(heading=addonName,
|
2016-03-08 23:00:03 +11:00
|
|
|
line1=string(39205))
|
2016-03-04 00:00:48 +11:00
|
|
|
else:
|
|
|
|
utils.window('plex_runLibScan', value='full')
|
2016-03-15 03:47:05 +11:00
|
|
|
|
|
|
|
|
|
|
|
def BrowsePlexContent(viewid, mediatype="", nodetype=""):
|
|
|
|
"""
|
|
|
|
Plex:
|
|
|
|
viewid: PMS name of the library
|
|
|
|
mediatype: mediatype, e.g. 'movies', 'tvshows', 'photos'
|
|
|
|
nodetype: e.g. 'ondeck'
|
|
|
|
"""
|
|
|
|
utils.logMsg(title, "BrowsePlexContent called with viewid: %s, mediatype: %s, nodetype: %s" % (viewid, mediatype, nodetype), 1)
|
|
|
|
|
|
|
|
if nodetype == 'ondeck':
|
|
|
|
xml = PlexFunctions.GetPlexOnDeck(
|
|
|
|
viewid,
|
|
|
|
containerSize=int(utils.settings('limitindex')))
|
|
|
|
if not xml:
|
|
|
|
utils.logMsg(title, "Cannot get view for section %s" % viewid, -1)
|
|
|
|
return
|
|
|
|
|
|
|
|
viewname = xml.attrib.get('librarySectionTitle')
|
|
|
|
xbmcplugin.setPluginCategory(int(sys.argv[1]), viewname)
|
|
|
|
|
|
|
|
# set the correct params for the content type
|
|
|
|
if mediatype.lower() == "homevideos, tvshows":
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
|
|
|
itemtype = "Video,Folder,PhotoAlbum"
|
|
|
|
elif mediatype.lower() == "photos":
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'files')
|
|
|
|
itemtype = "Photo,PhotoAlbum,Folder"
|
|
|
|
else:
|
|
|
|
itemtype = ""
|
|
|
|
|
|
|
|
# process the listing
|
|
|
|
for item in xml:
|
|
|
|
API = PlexAPI.API(item)
|
|
|
|
li = API.CreateListItemFromPlexItem()
|
|
|
|
if item.tag == 'Directory':
|
|
|
|
# for folders we add an additional browse request, passing the
|
|
|
|
# folderId
|
|
|
|
li.setProperty('IsFolder', 'true')
|
|
|
|
li.setProperty('IsPlayable', 'false')
|
2016-05-07 21:15:02 +10:00
|
|
|
path = "%s?id=%s&mode=browsecontent&type=%s&folderid=%s" \
|
|
|
|
% (utils.tryDecode(sys.argv[0]),
|
|
|
|
utils.tryDecode(viewname),
|
|
|
|
utils.tryDecode(type),
|
|
|
|
utils.tryDecode(item.get("Id")))
|
2016-03-15 03:47:05 +11:00
|
|
|
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url=path, listitem=li, isFolder=True)
|
|
|
|
else:
|
|
|
|
# playable item, set plugin path and mediastreams
|
|
|
|
path = "%s?id=%s&mode=play" % (sys.argv[0], API.getRatingKey())
|
|
|
|
li.setProperty("path", path)
|
|
|
|
API.AddStreamInfo(li)
|
|
|
|
pbutils.PlaybackUtils(item).setArtwork(li)
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url=li.getProperty("path"),
|
|
|
|
listitem=li)
|
|
|
|
|
|
|
|
if filter == "recent":
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_DATE)
|
|
|
|
else:
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_TITLE)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_DATE)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RATING)
|
|
|
|
xbmcplugin.addSortMethod(int(sys.argv[1]), xbmcplugin.SORT_METHOD_VIDEO_RUNTIME)
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
2016-03-15 23:09:51 +11:00
|
|
|
|
|
|
|
|
|
|
|
def getOnDeck(viewid, mediatype, tagname, limit):
|
|
|
|
"""
|
|
|
|
Retrieves Plex On Deck items, currently only for TV shows
|
|
|
|
|
|
|
|
Input:
|
|
|
|
viewid: Plex id of the library section, e.g. '1'
|
|
|
|
mediatype: Kodi mediatype, e.g. 'tvshows', 'movies',
|
|
|
|
'homevideos', 'photos'
|
|
|
|
tagname: Name of the Plex library, e.g. "My Movies"
|
2016-03-16 00:19:56 +11:00
|
|
|
limit: Max. number of items to retrieve, e.g. 50
|
2016-03-15 23:09:51 +11:00
|
|
|
"""
|
2016-04-18 19:23:05 +10:00
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'episodes')
|
2016-05-13 04:43:53 +10:00
|
|
|
appendShowTitle = utils.settings('OnDeckTvAppendShow') == 'true'
|
|
|
|
appendSxxExx = utils.settings('OnDeckTvAppendSeason') == 'true'
|
2016-04-18 19:23:05 +10:00
|
|
|
if utils.settings('OnDeckTVextended') == 'false':
|
|
|
|
# Chances are that this view is used on Kodi startup
|
|
|
|
# Wait till we've connected to a PMS. At most 30s
|
|
|
|
counter = 0
|
|
|
|
while utils.window('plex_authenticated') != 'true':
|
|
|
|
counter += 1
|
|
|
|
if counter >= 300:
|
2016-05-13 04:43:53 +10:00
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]), False)
|
2016-04-18 19:23:05 +10:00
|
|
|
xbmc.sleep(100)
|
|
|
|
xml = downloadutils.DownloadUtils().downloadUrl(
|
|
|
|
'{server}/library/sections/%s/onDeck' % viewid)
|
|
|
|
if xml in (None, 401):
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]))
|
|
|
|
params = {
|
|
|
|
'mode': "play"
|
|
|
|
}
|
2016-04-22 18:26:40 +10:00
|
|
|
for item in xml:
|
|
|
|
API = PlexAPI.API(item)
|
2016-04-27 18:37:24 +10:00
|
|
|
listitem = API.CreateListItemFromPlexItem(
|
|
|
|
appendShowTitle=appendShowTitle,
|
|
|
|
appendSxxExx=appendSxxExx)
|
2016-04-22 18:26:40 +10:00
|
|
|
API.AddStreamInfo(listitem)
|
|
|
|
pbutils.PlaybackUtils(item).setArtwork(listitem)
|
2016-05-13 04:43:53 +10:00
|
|
|
if utils.settings('useDirectPaths') == 'true':
|
|
|
|
url = API.getFilePath()
|
|
|
|
else:
|
|
|
|
params = {
|
|
|
|
'mode': "play",
|
|
|
|
'id': API.getRatingKey(),
|
|
|
|
'dbid': listitem.getProperty('dbid')
|
|
|
|
}
|
|
|
|
url = "plugin://plugin.video.plexkodiconnect.tvshows/?%s" \
|
|
|
|
% urllib.urlencode(params)
|
2016-04-22 18:26:40 +10:00
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
2016-05-13 04:43:53 +10:00
|
|
|
url=url,
|
2016-04-22 18:26:40 +10:00
|
|
|
listitem=listitem)
|
2016-04-18 19:23:05 +10:00
|
|
|
return xbmcplugin.endOfDirectory(
|
|
|
|
handle=int(sys.argv[1]),
|
2016-05-13 04:43:53 +10:00
|
|
|
cacheToDisc=utils.settings('enableTextureCache') == 'true')
|
2016-04-18 19:23:05 +10:00
|
|
|
|
2016-03-15 23:09:51 +11:00
|
|
|
# if the addon is called with nextup parameter,
|
|
|
|
# we return the nextepisodes list of the given tagname
|
|
|
|
# First we get a list of all the TV shows - filtered by tag
|
|
|
|
query = {
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': "libTvShows",
|
|
|
|
'method': "VideoLibrary.GetTVShows",
|
|
|
|
'params': {
|
|
|
|
'sort': {'order': "descending", 'method': "lastplayed"},
|
|
|
|
'filter': {
|
|
|
|
'and': [
|
|
|
|
{'operator': "true", 'field': "inprogress", 'value': ""},
|
|
|
|
{'operator': "is", 'field': "tag", 'value': "%s" % tagname}
|
|
|
|
]}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
# If we found any, find the oldest unwatched show for each one.
|
|
|
|
try:
|
|
|
|
items = result['result'][mediatype]
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
# Now items retrieved - empty directory
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
|
|
|
return
|
|
|
|
|
|
|
|
query = {
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
'sort': {'method': "episode"},
|
|
|
|
'limits': {"end": 1},
|
|
|
|
'properties': [
|
|
|
|
"title", "playcount", "season", "episode", "showtitle",
|
|
|
|
"plot", "file", "rating", "resume", "tvshowid", "art",
|
|
|
|
"streamdetails", "firstaired", "runtime", "cast", "writer",
|
|
|
|
"dateadded", "lastplayed"
|
|
|
|
],
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if utils.settings('ignoreSpecialsNextEpisodes') == "true":
|
|
|
|
query['params']['filter'] = {
|
|
|
|
'and': [
|
|
|
|
{'operator': "lessthan", 'field': "playcount", 'value': "1"},
|
|
|
|
{'operator': "greaterthan", 'field': "season", 'value': "0"}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
else:
|
|
|
|
query['params']['filter'] = {
|
|
|
|
'or': [
|
|
|
|
{'operator': "lessthan", 'field': "playcount", 'value': "1"},
|
|
|
|
{'operator': "true", 'field': "inprogress", 'value': ""}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
|
|
|
|
# Are there any episodes still in progress/not yet finished watching?!?
|
|
|
|
# Then we should show this episode, NOT the "next up"
|
|
|
|
inprogrQuery = {
|
|
|
|
'jsonrpc': "2.0",
|
|
|
|
'id': 1,
|
|
|
|
'method': "VideoLibrary.GetEpisodes",
|
|
|
|
'params': {
|
|
|
|
'sort': {'method': "episode"},
|
|
|
|
'filter': {'operator': "true", 'field': "inprogress", 'value': ""},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
inprogrQuery['params']['properties'] = query['params']['properties']
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for item in items:
|
|
|
|
inprogrQuery['params']['tvshowid'] = item['tvshowid']
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(inprogrQuery))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
episodes = result['result']['episodes']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
# No, there are no episodes not yet finished. Get "next up"
|
|
|
|
query['params']['tvshowid'] = item['tvshowid']
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(query))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
episodes = result['result']['episodes']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
# Also no episodes currently coming up
|
|
|
|
continue
|
|
|
|
for episode in episodes:
|
|
|
|
# There will always be only 1 episode ('limit=1')
|
2016-04-27 18:37:24 +10:00
|
|
|
li = createListItem(episode,
|
|
|
|
appendShowTitle=appendShowTitle,
|
|
|
|
appendSxxExx=appendSxxExx)
|
2016-03-15 23:09:51 +11:00
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url=episode['file'],
|
2016-04-19 23:20:03 +10:00
|
|
|
listitem=li,
|
2016-03-15 23:09:51 +11:00
|
|
|
isFolder=False)
|
|
|
|
|
|
|
|
count += 1
|
|
|
|
if count >= limit:
|
|
|
|
break
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(handle=int(sys.argv[1]))
|
2016-04-17 21:36:41 +10:00
|
|
|
|
|
|
|
|
|
|
|
def watchlater():
|
|
|
|
"""
|
|
|
|
Listing for plex.tv Watch Later section (if signed in to plex.tv)
|
|
|
|
"""
|
|
|
|
if utils.window('plex_token') == '':
|
|
|
|
utils.logMsg(title, 'No watch later - not signed in to plex.tv', -1)
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]), False)
|
|
|
|
if utils.settings('plex_restricteduser') == 'true':
|
|
|
|
utils.logMsg(title, 'No watch later - restricted user', -1)
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]), False)
|
|
|
|
|
|
|
|
xml = downloadutils.DownloadUtils().downloadUrl(
|
|
|
|
'https://plex.tv/pms/playlists/queue/all',
|
|
|
|
authenticate=False,
|
|
|
|
headerOptions={'X-Plex-Token': utils.window('plex_token')})
|
|
|
|
if xml in (None, 401):
|
|
|
|
utils.logMsg(title,
|
|
|
|
'Could not download watch later list from plex.tv', -1)
|
|
|
|
return xbmcplugin.endOfDirectory(int(sys.argv[1]), False)
|
|
|
|
|
|
|
|
utils.logMsg(title, 'Displaying watch later plex.tv items', 1)
|
|
|
|
xbmcplugin.setContent(int(sys.argv[1]), 'movies')
|
|
|
|
url = "plugin://plugin.video.plexkodiconnect.movies/"
|
|
|
|
params = {
|
|
|
|
'mode': "play",
|
|
|
|
'dbid': 'plexnode'
|
|
|
|
}
|
|
|
|
for item in xml:
|
|
|
|
API = PlexAPI.API(item)
|
|
|
|
listitem = API.CreateListItemFromPlexItem()
|
|
|
|
API.AddStreamInfo(listitem)
|
|
|
|
pbutils.PlaybackUtils(item).setArtwork(listitem)
|
|
|
|
params['id'] = item.attrib.get('key')
|
|
|
|
xbmcplugin.addDirectoryItem(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
url="%s?%s" % (url, urllib.urlencode(params)),
|
|
|
|
listitem=listitem)
|
|
|
|
|
|
|
|
xbmcplugin.endOfDirectory(
|
|
|
|
handle=int(sys.argv[1]),
|
|
|
|
cacheToDisc=True if utils.settings('enableTextureCache') == 'true'
|
|
|
|
else False)
|