2015-07-22 14:53:59 +10:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-07-24 18:59:48 +10:00
|
|
|
import logging
|
2015-12-25 06:51:47 +11:00
|
|
|
import os
|
|
|
|
import sys
|
2015-07-28 02:48:00 +10:00
|
|
|
import urlparse
|
2015-05-04 01:39:12 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
import xbmc
|
|
|
|
import xbmcaddon
|
2016-03-10 18:26:39 +11:00
|
|
|
import xbmcgui
|
2016-09-17 23:17:01 +10:00
|
|
|
import xbmcplugin
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-05-07 21:15:02 +10:00
|
|
|
|
2016-05-07 21:25:51 +10:00
|
|
|
_addon = xbmcaddon.Addon(id='plugin.video.plexkodiconnect')
|
|
|
|
try:
|
2016-08-30 03:12:46 +10:00
|
|
|
_addon_path = _addon.getAddonInfo('path').decode('utf-8')
|
2016-05-07 21:25:51 +10:00
|
|
|
except TypeError:
|
2016-08-30 03:12:46 +10:00
|
|
|
_addon_path = _addon.getAddonInfo('path').decode()
|
2016-05-07 21:25:51 +10:00
|
|
|
try:
|
2016-08-30 03:12:46 +10:00
|
|
|
_base_resource = xbmc.translatePath(os.path.join(
|
|
|
|
_addon_path,
|
2016-05-07 21:25:51 +10:00
|
|
|
'resources',
|
|
|
|
'lib')).decode('utf-8')
|
|
|
|
except TypeError:
|
2016-08-30 03:12:46 +10:00
|
|
|
_base_resource = xbmc.translatePath(os.path.join(
|
|
|
|
_addon_path,
|
2016-05-07 21:25:51 +10:00
|
|
|
'resources',
|
|
|
|
'lib')).decode()
|
2016-08-30 03:12:46 +10:00
|
|
|
sys.path.append(_base_resource)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import entrypoint
|
2016-05-07 21:25:51 +10:00
|
|
|
import utils
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
###############################################################################
|
2015-05-05 21:27:45 +10:00
|
|
|
|
2016-07-24 18:59:48 +10:00
|
|
|
import loghandler
|
|
|
|
|
|
|
|
loghandler.config()
|
2016-08-30 03:12:46 +10:00
|
|
|
log = logging.getLogger("PLEX.default")
|
2015-07-28 02:48:00 +10:00
|
|
|
|
2016-08-30 03:12:46 +10:00
|
|
|
###############################################################################
|
2015-07-28 02:48:00 +10:00
|
|
|
|
|
|
|
|
2016-06-20 07:24:34 +10:00
|
|
|
class Main():
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2015-07-28 02:48:00 +10:00
|
|
|
# MAIN ENTRY POINT
|
2016-06-20 07:24:34 +10:00
|
|
|
#@utils.profiling()
|
2015-07-28 02:48:00 +10:00
|
|
|
def __init__(self):
|
|
|
|
# Parse parameters
|
2016-08-30 03:12:46 +10:00
|
|
|
log.warn("Full sys.argv received: %s" % sys.argv)
|
2015-07-28 02:48:00 +10:00
|
|
|
base_url = sys.argv[0]
|
|
|
|
params = urlparse.parse_qs(sys.argv[2][1:])
|
|
|
|
try:
|
|
|
|
mode = params['mode'][0]
|
2016-01-23 02:32:36 +11:00
|
|
|
itemid = params.get('id', '')
|
2015-12-25 06:51:47 +11:00
|
|
|
if itemid:
|
2016-01-23 01:37:20 +11:00
|
|
|
try:
|
|
|
|
itemid = itemid[0]
|
|
|
|
except:
|
|
|
|
pass
|
2015-07-28 02:48:00 +10:00
|
|
|
except:
|
|
|
|
params = {}
|
|
|
|
mode = ""
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
modes = {
|
|
|
|
|
|
|
|
'reset': utils.reset,
|
|
|
|
'resetauth': entrypoint.resetAuth,
|
|
|
|
'play': entrypoint.doPlayback,
|
|
|
|
'passwords': utils.passwordsXML,
|
|
|
|
'channels': entrypoint.BrowseChannels,
|
|
|
|
'channelsfolder': entrypoint.BrowseChannels,
|
2016-01-12 08:20:34 +11:00
|
|
|
'browsecontent': entrypoint.BrowseContent,
|
2016-01-22 21:10:42 +11:00
|
|
|
'getsubfolders': entrypoint.GetSubFolders,
|
2015-12-25 06:51:47 +11:00
|
|
|
'nextup': entrypoint.getNextUpEpisodes,
|
|
|
|
'inprogressepisodes': entrypoint.getInProgressEpisodes,
|
2015-12-26 20:42:13 +11:00
|
|
|
'recentepisodes': entrypoint.getRecentEpisodes,
|
2016-01-23 01:37:20 +11:00
|
|
|
'refreshplaylist': entrypoint.refreshPlaylist,
|
2016-01-25 20:36:24 +11:00
|
|
|
'companion': entrypoint.plexCompanion,
|
2016-03-01 20:10:11 +11:00
|
|
|
'switchuser': entrypoint.switchPlexUser,
|
2016-03-04 23:34:30 +11:00
|
|
|
'deviceid': entrypoint.resetDeviceId,
|
2016-03-15 03:47:05 +11:00
|
|
|
'delete': entrypoint.deleteItem,
|
2016-03-15 23:09:51 +11:00
|
|
|
'browseplex': entrypoint.BrowsePlexContent,
|
2016-03-24 22:34:39 +11:00
|
|
|
'ondeck': entrypoint.getOnDeck,
|
2016-04-17 21:36:41 +10:00
|
|
|
'chooseServer': entrypoint.chooseServer,
|
2016-05-30 00:52:00 +10:00
|
|
|
'watchlater': entrypoint.watchlater,
|
|
|
|
'enterPMS': entrypoint.enterPMS,
|
2016-06-20 02:30:21 +10:00
|
|
|
'togglePlexTV': entrypoint.togglePlexTV,
|
|
|
|
'playwatchlater': entrypoint.playWatchLater
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
2016-04-09 23:46:51 +10:00
|
|
|
|
2016-03-05 08:00:24 +11:00
|
|
|
if "/extrafanart" in sys.argv[0]:
|
2016-05-31 16:06:42 +10:00
|
|
|
plexpath = sys.argv[2][1:]
|
|
|
|
plexid = params.get('id', [""])[0]
|
|
|
|
entrypoint.getExtraFanArt(plexid, plexpath)
|
2016-08-30 03:12:46 +10:00
|
|
|
entrypoint.getVideoFiles(plexid, plexpath)
|
2016-06-20 07:24:34 +10:00
|
|
|
return
|
2016-04-09 23:46:51 +10:00
|
|
|
|
2016-09-11 20:15:26 +10:00
|
|
|
if mode == 'fanart':
|
|
|
|
log.info('User requested fanarttv refresh')
|
|
|
|
utils.window('plex_runLibScan', value='fanart')
|
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
# Called by e.g. 3rd party plugin video extras
|
|
|
|
if ("/Extras" in sys.argv[0] or "/VideoFiles" in sys.argv[0] or
|
|
|
|
"/Extras" in sys.argv[2]):
|
|
|
|
plexId = params.get('id', [None])[0]
|
|
|
|
entrypoint.getVideoFiles(plexId, params)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
if modes.get(mode):
|
|
|
|
# Simple functions
|
|
|
|
if mode == "play":
|
|
|
|
dbid = params.get('dbid')
|
2016-02-03 23:01:13 +11:00
|
|
|
# modes[mode](itemid, dbid)
|
2015-12-25 06:51:47 +11:00
|
|
|
modes[mode](itemid, dbid)
|
|
|
|
|
2016-03-16 00:19:56 +11:00
|
|
|
elif mode in ("nextup", "inprogressepisodes"):
|
2015-12-25 06:51:47 +11:00
|
|
|
limit = int(params['limit'][0])
|
|
|
|
modes[mode](itemid, limit)
|
2015-07-28 02:48:00 +10:00
|
|
|
|
2016-06-20 07:24:34 +10:00
|
|
|
elif mode in ("channels","getsubfolders"):
|
2015-12-25 06:51:47 +11:00
|
|
|
modes[mode](itemid)
|
2016-01-12 08:20:34 +11:00
|
|
|
|
|
|
|
elif mode == "browsecontent":
|
2016-06-20 07:24:34 +10:00
|
|
|
modes[mode](itemid, params.get('type',[""])[0], params.get('folderid',[""])[0])
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-03-15 03:47:05 +11:00
|
|
|
elif mode == 'browseplex':
|
|
|
|
modes[mode](
|
|
|
|
itemid,
|
|
|
|
params.get('type', [""])[0],
|
|
|
|
params.get('folderid', [""])[0])
|
|
|
|
|
2016-03-16 00:19:56 +11:00
|
|
|
elif mode in ('ondeck', 'recentepisodes'):
|
2016-03-15 23:09:51 +11:00
|
|
|
modes[mode](
|
|
|
|
itemid,
|
|
|
|
params.get('type', [""])[0],
|
|
|
|
params.get('tagname', [""])[0],
|
2016-03-16 00:19:56 +11:00
|
|
|
int(params.get('limit', [""])[0]))
|
2016-03-15 23:09:51 +11:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
elif mode == "channelsfolder":
|
|
|
|
folderid = params['folderid'][0]
|
|
|
|
modes[mode](itemid, folderid)
|
2016-01-23 01:37:20 +11:00
|
|
|
elif mode == "companion":
|
2016-01-30 06:07:21 +11:00
|
|
|
modes[mode](itemid, params=sys.argv[2])
|
2016-06-20 02:30:21 +10:00
|
|
|
elif mode == 'playwatchlater':
|
|
|
|
modes[mode](params.get('id')[0], params.get('viewOffset')[0])
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
|
|
|
modes[mode]()
|
|
|
|
else:
|
|
|
|
# Other functions
|
|
|
|
if mode == "settings":
|
2015-12-27 21:49:14 +11:00
|
|
|
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.plexkodiconnect)')
|
2016-05-16 00:02:19 +10:00
|
|
|
elif mode in ("manualsync", "repair"):
|
2016-05-31 16:06:42 +10:00
|
|
|
if utils.window('plex_online') != "true":
|
2016-02-10 18:07:52 +11:00
|
|
|
# Server is not online, do not run the sync
|
2016-05-16 00:02:19 +10:00
|
|
|
xbmcgui.Dialog().ok(
|
|
|
|
"PlexKodiConnect",
|
|
|
|
"Unable to run the sync, the add-on is not connected "
|
|
|
|
"to a Plex server.")
|
2016-08-30 03:12:46 +10:00
|
|
|
log.error("Not connected to a PMS.")
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
2016-04-07 19:57:34 +10:00
|
|
|
if mode == 'repair':
|
|
|
|
utils.window('plex_runLibScan', value="repair")
|
2016-09-17 23:17:01 +10:00
|
|
|
log.info("Requesting repair lib sync")
|
2016-04-07 19:57:34 +10:00
|
|
|
elif mode == 'manualsync':
|
2016-09-17 23:17:01 +10:00
|
|
|
log.info("Requesting full library scan")
|
2016-04-07 19:57:34 +10:00
|
|
|
utils.window('plex_runLibScan', value="full")
|
2015-12-26 20:42:13 +11:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
elif mode == "texturecache":
|
2016-09-17 22:48:40 +10:00
|
|
|
utils.window('plex_runLibScan', value='del_textures')
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
|
|
|
entrypoint.doMainListing()
|
|
|
|
|
2016-06-20 07:24:34 +10:00
|
|
|
if __name__ == "__main__":
|
2016-08-30 03:12:46 +10:00
|
|
|
log.info('plugin.video.plexkodiconnect started')
|
2016-06-20 07:24:34 +10:00
|
|
|
Main()
|
2016-08-30 03:12:46 +10:00
|
|
|
log.info('plugin.video.plexkodiconnect stopped')
|