2015-12-25 07:07:00 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-03-17 03:02:22 +11:00
|
|
|
###############################################################################
|
2017-12-10 00:35:08 +11:00
|
|
|
from logging import getLogger
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2018-01-22 04:31:49 +11:00
|
|
|
from xbmc import Player
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2018-01-26 03:15:38 +11:00
|
|
|
from utils import window
|
2018-01-22 04:31:49 +11:00
|
|
|
from downloadutils import DownloadUtils as DU
|
|
|
|
from plexbmchelper.subscribers import LOCKER
|
2017-01-25 02:04:42 +11:00
|
|
|
import variables as v
|
2017-05-18 04:22:16 +10:00
|
|
|
import state
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-03-17 03:02:22 +11:00
|
|
|
###############################################################################
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2017-12-10 00:35:08 +11:00
|
|
|
LOG = getLogger("PLEX." + __name__)
|
2016-09-02 03:41:55 +10:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2018-01-26 03:15:38 +11:00
|
|
|
@LOCKER.lockthis
|
|
|
|
def playback_cleanup():
|
|
|
|
"""
|
|
|
|
PKC cleanup after playback ends/is stopped
|
|
|
|
"""
|
|
|
|
# We might have saved a transient token from a user flinging media via
|
|
|
|
# Companion (if we could not use the playqueue to store the token)
|
|
|
|
state.PLEX_TRANSIENT_TOKEN = None
|
|
|
|
for item in ('plex_customplaylist',
|
|
|
|
'plex_customplaylist.seektime',
|
|
|
|
'plex_forcetranscode'):
|
|
|
|
window(item, clear=True)
|
|
|
|
for playerid in state.ACTIVE_PLAYERS:
|
|
|
|
status = state.PLAYER_STATES[playerid]
|
|
|
|
# Remember the last played item later
|
|
|
|
state.OLD_PLAYER_STATES[playerid] = dict(status)
|
|
|
|
# Stop transcoding
|
|
|
|
if status['playmethod'] == 'Transcode':
|
|
|
|
LOG.info('Tell the PMS to stop transcoding')
|
|
|
|
DU().downloadUrl(
|
|
|
|
'{server}/video/:/transcode/universal/stop',
|
|
|
|
parameters={'session': v.PKC_MACHINE_IDENTIFIER})
|
|
|
|
# Reset the player's status
|
|
|
|
status = dict(state.PLAYSTATE)
|
|
|
|
# As all playback has halted, reset the players that have been active
|
|
|
|
state.ACTIVE_PLAYERS = []
|
|
|
|
LOG.info('Finished PKC playback cleanup')
|
|
|
|
|
|
|
|
|
2017-12-10 00:35:08 +11:00
|
|
|
class PKC_Player(Player):
|
2015-12-25 07:07:00 +11:00
|
|
|
def __init__(self):
|
2017-12-10 00:35:08 +11:00
|
|
|
Player.__init__(self)
|
2017-12-09 05:43:06 +11:00
|
|
|
LOG.info("Started playback monitor.")
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
def onPlayBackStarted(self):
|
2016-03-17 03:02:22 +11:00
|
|
|
"""
|
2016-09-02 03:41:55 +10:00
|
|
|
Will be called when xbmc starts playing a file.
|
2016-03-17 03:02:22 +11:00
|
|
|
"""
|
2018-01-22 04:31:49 +11:00
|
|
|
pass
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-21 10:21:39 +11:00
|
|
|
def onPlayBackPaused(self):
|
2018-01-22 04:31:49 +11:00
|
|
|
"""
|
|
|
|
Will be called when playback is paused
|
|
|
|
"""
|
|
|
|
pass
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-21 10:21:39 +11:00
|
|
|
def onPlayBackResumed(self):
|
2018-01-22 04:31:49 +11:00
|
|
|
"""
|
|
|
|
Will be called when playback is resumed
|
|
|
|
"""
|
|
|
|
pass
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-21 10:21:39 +11:00
|
|
|
def onPlayBackSeek(self, time, seekOffset):
|
2018-01-22 04:31:49 +11:00
|
|
|
"""
|
|
|
|
Will be called when user seeks to a certain time during playback
|
|
|
|
"""
|
|
|
|
pass
|
2016-06-01 03:02:11 +10:00
|
|
|
|
2016-02-21 10:21:39 +11:00
|
|
|
def onPlayBackStopped(self):
|
2018-01-22 04:31:49 +11:00
|
|
|
"""
|
|
|
|
Will be called when playback is stopped by the user
|
|
|
|
"""
|
2017-12-09 05:43:06 +11:00
|
|
|
LOG.info("ONPLAYBACK_STOPPED")
|
2018-01-26 03:15:38 +11:00
|
|
|
playback_cleanup()
|
2016-03-17 04:01:07 +11:00
|
|
|
|
2018-01-22 04:31:49 +11:00
|
|
|
def onPlayBackEnded(self):
|
|
|
|
"""
|
|
|
|
Will be called when playback ends due to the media file being finished
|
|
|
|
"""
|
|
|
|
LOG.info("ONPLAYBACK_ENDED")
|
2018-01-26 03:15:38 +11:00
|
|
|
playback_cleanup()
|