PlexKodiConnect/resources/lib/playback_starter.py

50 lines
1.7 KiB
Python
Raw Normal View History

2017-01-03 00:07:24 +11:00
# -*- coding: utf-8 -*-
###############################################################################
2017-12-10 00:35:08 +11:00
from logging import getLogger
2017-01-03 00:07:24 +11:00
from threading import Thread
from urlparse import parse_qsl
from pickler import pickle_me, Playback_Successful
2018-01-11 06:14:05 +11:00
import playback
from context_entry import ContextMenu
import state
2017-01-03 00:07:24 +11:00
###############################################################################
LOG = getLogger("PLEX." + __name__)
2017-01-03 00:07:24 +11:00
###############################################################################
class Playback_Starter(Thread):
"""
Processes new plays
"""
def triage(self, item):
_, params = item.split('?', 1)
2017-01-03 00:07:24 +11:00
params = dict(parse_qsl(params))
mode = params.get('mode')
LOG.debug('Received mode: %s, params: %s', mode, params)
2018-01-11 06:14:05 +11:00
if mode == 'play':
2018-01-29 03:21:28 +11:00
playback.playback_triage(plex_id=params.get('plex_id'),
plex_type=params.get('plex_type'),
path=item)
2018-01-11 06:14:05 +11:00
elif mode == 'plex_node':
2018-01-29 03:21:28 +11:00
playback.process_indirect(params['key'], params['offset'])
2018-01-11 06:14:05 +11:00
elif mode == 'context_menu':
2018-02-16 05:47:01 +11:00
ContextMenu(kodi_id=params['kodi_id'],
kodi_type=params['kodi_type'])
2017-01-03 00:07:24 +11:00
def run(self):
queue = state.COMMAND_PIPELINE_QUEUE
LOG.info("----===## Starting Playback_Starter ##===----")
2017-01-03 00:07:24 +11:00
while True:
item = queue.get()
if item is None:
# Need to shutdown - initiated by command_pipeline
2017-01-03 00:07:24 +11:00
break
else:
self.triage(item)
queue.task_done()
LOG.info("----===## Playback_Starter stopped ##===----")