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
|
|
|
###############################################################################
|
2018-06-22 03:24:37 +10:00
|
|
|
from __future__ import absolute_import, division, unicode_literals
|
2016-07-24 18:59:48 +10:00
|
|
|
import logging
|
2018-06-22 03:24:37 +10:00
|
|
|
from sys import argv
|
2017-01-03 00:07:24 +11:00
|
|
|
from urlparse import parse_qsl
|
2018-06-22 03:24:37 +10:00
|
|
|
from xbmc import sleep, executebuiltin
|
2018-08-04 23:11:21 +10:00
|
|
|
from xbmcgui import ListItem, getCurrentWindowId
|
2017-01-03 00:07:24 +11:00
|
|
|
from xbmcplugin import setResolvedUrl
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-06-22 03:24:37 +10:00
|
|
|
from resources.lib import entrypoint, utils, pickler, pkc_listitem, \
|
|
|
|
variables as v, loghandler
|
2018-08-06 15:51:59 +10:00
|
|
|
from resources.lib.tools import unicode_paths
|
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
|
|
|
loghandler.config()
|
2017-03-08 21:02:25 +11: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
|
|
|
|
2017-01-03 00:07:24 +11:00
|
|
|
HANDLE = int(argv[1])
|
|
|
|
|
2015-07-28 02:48:00 +10:00
|
|
|
|
2016-06-20 07:24:34 +10:00
|
|
|
class Main():
|
2015-07-28 02:48:00 +10:00
|
|
|
# MAIN ENTRY POINT
|
2017-01-03 00:07:24 +11:00
|
|
|
# @utils.profiling()
|
2015-07-28 02:48:00 +10:00
|
|
|
def __init__(self):
|
2018-06-24 03:15:24 +10:00
|
|
|
log.debug('Full sys.argv received: %s', argv)
|
2015-07-28 02:48:00 +10:00
|
|
|
# Parse parameters
|
2018-06-24 03:15:24 +10:00
|
|
|
path = unicode_paths.decode(argv[0])
|
|
|
|
arguments = unicode_paths.decode(argv[2])
|
|
|
|
params = dict(parse_qsl(arguments[1:]))
|
2017-03-08 20:58:08 +11:00
|
|
|
mode = params.get('mode', '')
|
|
|
|
itemid = params.get('id', '')
|
2017-01-03 00:07:24 +11:00
|
|
|
|
|
|
|
if mode == 'play':
|
2017-03-08 20:39:05 +11:00
|
|
|
self.play()
|
|
|
|
|
2017-03-14 07:39:07 +11:00
|
|
|
elif mode == 'plex_node':
|
|
|
|
self.play()
|
|
|
|
|
2017-03-08 20:39:05 +11:00
|
|
|
elif mode == 'ondeck':
|
2018-06-15 22:11:17 +10:00
|
|
|
entrypoint.on_deck_episodes(itemid,
|
|
|
|
params.get('tagname'),
|
|
|
|
int(params.get('limit')))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'recentepisodes':
|
2018-06-15 22:01:09 +10:00
|
|
|
entrypoint.recent_episodes(params.get('type'),
|
2018-06-15 22:00:12 +10:00
|
|
|
params.get('tagname'),
|
|
|
|
int(params.get('limit')))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'nextup':
|
2018-06-15 21:57:33 +10:00
|
|
|
entrypoint.next_up_episodes(params['tagname'],
|
|
|
|
int(params['limit']))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'inprogressepisodes':
|
2018-06-15 21:58:39 +10:00
|
|
|
entrypoint.in_progress_episodes(params['tagname'],
|
|
|
|
int(params['limit']))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'browseplex':
|
2017-03-09 02:21:00 +11:00
|
|
|
entrypoint.browse_plex(key=params.get('key'),
|
|
|
|
plex_section_id=params.get('id'))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'watchlater':
|
|
|
|
entrypoint.watchlater()
|
|
|
|
|
|
|
|
elif mode == 'channels':
|
|
|
|
entrypoint.channels()
|
|
|
|
|
2018-08-04 23:11:21 +10:00
|
|
|
elif mode == 'route_to_extras':
|
|
|
|
# Hack so we can store this path in the Kodi DB
|
|
|
|
handle = ('plugin://%s?mode=extras&plex_id=%s'
|
|
|
|
% (v.ADDON_ID, params.get('plex_id')))
|
|
|
|
if getCurrentWindowId() == 10025:
|
|
|
|
# Video Window
|
|
|
|
executebuiltin('Container.Update(\"%s\")' % handle)
|
|
|
|
else:
|
|
|
|
executebuiltin('ActivateWindow(videos, \"%s\")' % handle)
|
|
|
|
|
2018-05-05 03:03:27 +10:00
|
|
|
elif mode == 'extras':
|
|
|
|
entrypoint.extras(plex_id=params.get('plex_id'))
|
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'settings':
|
2017-03-08 20:39:05 +11:00
|
|
|
executebuiltin('Addon.OpenSettings(%s)' % v.ADDON_ID)
|
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'enterPMS':
|
2018-06-15 22:13:46 +10:00
|
|
|
entrypoint.create_new_pms()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'reset':
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.reset()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'togglePlexTV':
|
2018-06-15 21:44:46 +10:00
|
|
|
entrypoint.toggle_plex_tv_sign_in()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'resetauth':
|
2018-06-15 21:44:46 +10:00
|
|
|
entrypoint.reset_authorization()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'passwords':
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.passwords_xml()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
|
|
|
elif mode == 'switchuser':
|
2018-06-15 21:50:04 +10:00
|
|
|
entrypoint.switch_plex_user()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode in ('manualsync', 'repair'):
|
2018-06-22 03:24:37 +10:00
|
|
|
if pickler.pickl_window('plex_online') != 'true':
|
2017-03-08 20:39:05 +11:00
|
|
|
# Server is not online, do not run the sync
|
2018-09-19 00:26:40 +10:00
|
|
|
utils.messageDialog(utils.lang(29999), utils.lang(39205))
|
2017-03-08 21:02:25 +11:00
|
|
|
log.error('Not connected to a PMS.')
|
2017-03-08 20:39:05 +11:00
|
|
|
else:
|
|
|
|
if mode == 'repair':
|
2017-03-08 21:02:25 +11:00
|
|
|
log.info('Requesting repair lib sync')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('RUN_LIB_SCAN', 'repair')
|
2017-03-08 20:39:05 +11:00
|
|
|
elif mode == 'manualsync':
|
2017-03-08 21:02:25 +11:00
|
|
|
log.info('Requesting full library scan')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('RUN_LIB_SCAN', 'full')
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'texturecache':
|
2017-08-22 02:53:38 +10:00
|
|
|
log.info('Requesting texture caching of all textures')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('RUN_LIB_SCAN', 'textures')
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'chooseServer':
|
2018-06-15 21:44:46 +10:00
|
|
|
entrypoint.choose_pms_server()
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'refreshplaylist':
|
2017-03-08 20:39:05 +11:00
|
|
|
log.info('Requesting playlist/nodes refresh')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('RUN_LIB_SCAN', 'views')
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
elif mode == 'deviceid':
|
2017-03-08 20:39:05 +11:00
|
|
|
self.deviceid()
|
|
|
|
|
|
|
|
elif mode == 'fanart':
|
|
|
|
log.info('User requested fanarttv refresh')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('RUN_LIB_SCAN', 'fanart')
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2018-06-24 03:15:24 +10:00
|
|
|
elif '/extrafanart' in path:
|
|
|
|
plexpath = arguments[1:]
|
2017-03-08 20:58:08 +11:00
|
|
|
plexid = itemid
|
2018-06-15 22:05:48 +10:00
|
|
|
entrypoint.extra_fanart(plexid, plexpath)
|
|
|
|
entrypoint.get_video_files(plexid, plexpath)
|
2016-09-11 20:15:26 +10:00
|
|
|
|
2016-04-09 23:46:51 +10:00
|
|
|
# Called by e.g. 3rd party plugin video extras
|
2018-06-24 03:15:24 +10:00
|
|
|
elif ('/Extras' in path or '/VideoFiles' in path or
|
|
|
|
'/Extras' in arguments):
|
2017-03-08 20:58:08 +11:00
|
|
|
plexId = itemid or None
|
2018-06-15 22:05:48 +10:00
|
|
|
entrypoint.get_video_files(plexId, params)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2018-07-17 21:48:09 +10:00
|
|
|
elif mode == 'playlists':
|
2018-07-30 21:20:40 +10:00
|
|
|
entrypoint.playlists(params.get('content_type'))
|
2018-07-17 21:48:09 +10:00
|
|
|
|
2018-07-28 00:01:05 +10:00
|
|
|
elif mode == 'hub':
|
|
|
|
entrypoint.hub(params.get('type'))
|
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
2018-06-15 21:49:18 +10:00
|
|
|
entrypoint.show_main_menu(content_type=params.get('content_type'))
|
2017-03-08 20:39:05 +11:00
|
|
|
|
2017-08-22 02:53:38 +10:00
|
|
|
@staticmethod
|
|
|
|
def play():
|
2017-03-14 07:39:07 +11:00
|
|
|
"""
|
|
|
|
Start up playback_starter in main Python thread
|
|
|
|
"""
|
2018-04-16 02:13:48 +10:00
|
|
|
request = '%s&handle=%s' % (argv[2], HANDLE)
|
2017-03-08 21:02:25 +11:00
|
|
|
# Put the request into the 'queue'
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.plex_command('PLAY', request)
|
2018-04-16 02:13:48 +10:00
|
|
|
if HANDLE == -1:
|
|
|
|
# Handle -1 received, not waiting for main thread
|
|
|
|
return
|
2017-03-08 20:39:05 +11:00
|
|
|
# Wait for the result
|
2018-06-22 03:24:37 +10:00
|
|
|
while not pickler.pickl_window('plex_result'):
|
2017-03-08 20:39:05 +11:00
|
|
|
sleep(50)
|
2018-06-22 03:24:37 +10:00
|
|
|
result = pickler.unpickle_me()
|
2017-03-08 20:39:05 +11:00
|
|
|
if result is None:
|
|
|
|
log.error('Error encountered, aborting')
|
2018-06-22 03:24:37 +10:00
|
|
|
utils.dialog('notification',
|
|
|
|
heading='{plex}',
|
|
|
|
message=utils.lang(30128),
|
|
|
|
icon='{error}',
|
|
|
|
time=3000)
|
2017-03-08 20:39:05 +11:00
|
|
|
setResolvedUrl(HANDLE, False, ListItem())
|
|
|
|
elif result.listitem:
|
2018-06-22 03:24:37 +10:00
|
|
|
listitem = pkc_listitem.convert_pkc_to_listitem(result.listitem)
|
2017-03-08 20:39:05 +11:00
|
|
|
setResolvedUrl(HANDLE, True, listitem)
|
|
|
|
|
2017-08-22 02:53:38 +10:00
|
|
|
@staticmethod
|
|
|
|
def deviceid():
|
2018-06-22 03:24:37 +10:00
|
|
|
deviceId_old = pickler.pickl_window('plex_client_Id')
|
2018-07-04 16:05:24 +10:00
|
|
|
from resources.lib import clientinfo
|
2017-03-08 20:39:05 +11:00
|
|
|
try:
|
2018-07-04 16:05:24 +10:00
|
|
|
deviceId = clientinfo.getDeviceId(reset=True)
|
2017-03-08 20:39:05 +11:00
|
|
|
except Exception as e:
|
2017-03-08 21:02:25 +11:00
|
|
|
log.error('Failed to generate a new device Id: %s' % e)
|
2018-09-19 00:26:40 +10:00
|
|
|
utils.messageDialog(utils.lang(29999), utils.lang(33032))
|
2017-03-08 20:39:05 +11:00
|
|
|
else:
|
2017-03-08 21:02:25 +11:00
|
|
|
log.info('Successfully removed old device ID: %s New deviceId:'
|
|
|
|
'%s' % (deviceId_old, deviceId))
|
|
|
|
# 'Kodi will now restart to apply the changes'
|
2018-09-19 00:26:40 +10:00
|
|
|
utils.messageDialog(utils.lang(29999), utils.lang(33033))
|
2017-03-08 20:39:05 +11:00
|
|
|
executebuiltin('RestartApp')
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2017-08-22 02:53:38 +10:00
|
|
|
|
2017-03-08 21:02:25 +11:00
|
|
|
if __name__ == '__main__':
|
2017-03-08 20:39:05 +11:00
|
|
|
log.info('%s started' % v.ADDON_ID)
|
2016-06-20 07:24:34 +10:00
|
|
|
Main()
|
2017-03-08 20:39:05 +11:00
|
|
|
log.info('%s stopped' % v.ADDON_ID)
|