PlexKodiConnect/service.py

299 lines
12 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-03-04 01:28:44 +11:00
###############################################################################
from __future__ import unicode_literals # nice to fix os.walk unicode
from logging import getLogger
2017-01-25 04:48:13 +11:00
from os import path as os_path
2017-02-06 02:26:53 +11:00
from sys import path as sys_path, argv
from xbmc import translatePath, Monitor
2017-01-25 04:48:13 +11:00
from xbmcaddon import Addon
2015-03-14 08:24:59 +11:00
2016-03-04 01:28:44 +11:00
###############################################################################
2018-02-10 03:48:25 +11:00
_ADDON = Addon(id='plugin.video.plexkodiconnect')
try:
2018-02-10 03:48:25 +11:00
_ADDON_PATH = _ADDON.getAddonInfo('path').decode('utf-8')
except TypeError:
2018-02-10 03:48:25 +11:00
_ADDON_PATH = _ADDON.getAddonInfo('path').decode()
try:
2018-02-10 03:48:25 +11:00
_BASE_RESOURCE = translatePath(os_path.join(
_ADDON_PATH,
'resources',
'lib')).decode('utf-8')
except TypeError:
2018-02-10 03:48:25 +11:00
_BASE_RESOURCE = translatePath(os_path.join(
_ADDON_PATH,
'resources',
'lib')).decode()
2018-02-10 03:48:25 +11:00
sys_path.append(_BASE_RESOURCE)
2015-03-14 08:24:59 +11:00
2016-03-04 01:28:44 +11:00
###############################################################################
2018-02-10 03:48:25 +11:00
from utils import settings, window, language as lang, dialog
2016-12-28 03:33:52 +11:00
from userclient import UserClient
import initialsetup
2018-01-22 21:20:37 +11:00
from kodimonitor import KodiMonitor, SpecialMonitor
2016-12-28 03:33:52 +11:00
from librarysync import LibrarySync
2017-03-06 01:48:08 +11:00
from websocket_client import PMS_Websocket, Alexa_Websocket
2015-04-07 03:17:32 +10:00
2018-02-11 03:59:20 +11:00
from PlexFunctions import check_connection
2016-12-28 03:33:52 +11:00
from PlexCompanion import PlexCompanion
from command_pipeline import Monitor_Window
2018-04-16 00:34:45 +10:00
from playback_starter import PlaybackStarter
from playqueue import PlayqueueMonitor
from artwork import Image_Cache_Thread
2017-01-25 02:53:50 +11:00
import variables as v
import state
2015-12-28 02:27:49 +11:00
2016-03-04 01:28:44 +11:00
###############################################################################
2016-08-30 03:27:05 +10:00
import loghandler
loghandler.config()
2017-12-10 02:18:46 +11:00
LOG = getLogger("PLEX.service")
2016-08-30 03:27:05 +10:00
###############################################################################
class Service():
2015-05-03 15:27:43 +10:00
server_online = True
warn_auth = True
2016-12-28 03:33:52 +11:00
user = None
ws = None
library = None
plexCompanion = None
user_running = False
ws_running = False
2017-03-06 01:48:08 +11:00
alexa_running = False
library_running = False
plexCompanion_running = False
2016-12-28 03:33:52 +11:00
kodimonitor_running = False
2017-01-03 00:07:24 +11:00
playback_starter_running = False
image_cache_thread_running = False
def __init__(self):
# Initial logging
2017-12-10 02:18:46 +11:00
LOG.info("======== START %s ========", v.ADDON_NAME)
LOG.info("Platform: %s", v.PLATFORM)
LOG.info("KODI Version: %s", v.KODILONGVERSION)
LOG.info("%s Version: %s", v.ADDON_NAME, v.ADDON_VERSION)
2018-06-17 20:48:14 +10:00
LOG.info("PKC Direct Paths: %s", settings('useDirectPaths') == '1')
2017-12-10 02:18:46 +11:00
LOG.info("Number of sync threads: %s", settings('syncThreadNumber'))
LOG.info("Full sys.argv received: %s", argv)
self.monitor = Monitor()
2018-02-10 03:48:25 +11:00
# Load/Reset PKC entirely - important for user/Kodi profile switch
initialsetup.reload_pkc()
2015-04-07 03:17:32 +10:00
def __stop_PKC(self):
"""
Kodi's abortRequested is really unreliable :-(
"""
return self.monitor.abortRequested() or state.STOP_PKC
2015-03-14 08:24:59 +11:00
def ServiceEntryPoint(self):
# Important: Threads depending on abortRequest will not trigger
# if profile switch happens more than once.
__stop_PKC = self.__stop_PKC
monitor = self.monitor
2017-01-25 04:48:13 +11:00
kodiProfile = v.KODI_PROFILE
# Server auto-detect
initialsetup.InitialSetup().setup()
# Detect playback start early on
self.command_pipeline = Monitor_Window()
self.command_pipeline.start()
2016-12-28 03:33:52 +11:00
# Initialize important threads, handing over self for callback purposes
self.user = UserClient()
self.ws = PMS_Websocket()
self.alexa = Alexa_Websocket()
self.library = LibrarySync()
self.plexCompanion = PlexCompanion()
2018-01-22 21:20:37 +11:00
self.specialMonitor = SpecialMonitor()
2018-04-16 00:34:45 +10:00
self.playback_starter = PlaybackStarter()
self.playqueue = PlayqueueMonitor()
if settings('enableTextureCache') == "true":
self.image_cache_thread = Image_Cache_Thread()
2016-03-25 04:52:02 +11:00
2016-12-21 02:13:19 +11:00
welcome_msg = True
counter = 0
while not __stop_PKC():
2015-05-03 15:27:43 +10:00
if window('plex_kodiProfile') != kodiProfile:
# Profile change happened, terminate this thread and others
2017-12-10 02:18:46 +11:00
LOG.info("Kodi profile was: %s and changed to: %s. "
2018-02-10 03:48:25 +11:00
"Terminating old PlexKodiConnect thread.",
kodiProfile, window('plex_kodiProfile'))
break
2016-08-07 23:33:36 +10:00
# Before proceeding, need to make sure:
# 1. Server is online
# 2. User is set
# 3. User has access to the server
2016-05-31 16:06:42 +10:00
if window('plex_online') == "true":
# Plex server is online
# Verify if user is set and has access to the server
2018-04-19 16:11:25 +10:00
if (self.user.user is not None) and self.user.has_access:
2016-07-21 02:36:31 +10:00
if not self.kodimonitor_running:
# Start up events
self.warn_auth = True
2016-12-21 02:13:19 +11:00
if welcome_msg is True:
# Reset authentication warnings
2016-12-21 02:13:19 +11:00
welcome_msg = False
2017-01-25 06:04:53 +11:00
dialog('notification',
lang(29999),
"%s %s" % (lang(33000),
2018-04-19 16:11:25 +10:00
self.user.user),
2017-01-25 06:08:40 +11:00
icon='{plex}',
2017-01-25 06:04:53 +11:00
time=2000,
sound=False)
# Start monitoring kodi events
self.kodimonitor_running = KodiMonitor()
2018-01-22 21:20:37 +11:00
self.specialMonitor.start()
# Start the Websocket Client
2016-12-28 03:33:52 +11:00
if not self.ws_running:
self.ws_running = True
self.ws.start()
2017-03-06 01:48:08 +11:00
# Start the Alexa thread
2017-03-06 01:59:55 +11:00
if (not self.alexa_running and
settings('enable_alexa') == 'true'):
2017-03-06 01:48:08 +11:00
self.alexa_running = True
self.alexa.start()
# Start the syncing thread
if not self.library_running:
self.library_running = True
2016-12-28 03:33:52 +11:00
self.library.start()
# Start the Plex Companion thread
if not self.plexCompanion_running:
self.plexCompanion_running = True
2016-12-28 03:33:52 +11:00
self.plexCompanion.start()
2017-01-03 00:07:24 +11:00
if not self.playback_starter_running:
self.playback_starter_running = True
self.playback_starter.start()
self.playqueue.start()
if (not self.image_cache_thread_running and
settings('enableTextureCache') == "true"):
self.image_cache_thread_running = True
self.image_cache_thread.start()
else:
2018-04-19 16:11:25 +10:00
if (self.user.user is None) and self.warn_auth:
2016-12-28 03:33:52 +11:00
# Alert user is not authenticated and suppress future
# warning
self.warn_auth = False
2017-12-10 02:18:46 +11:00
LOG.warn("Not authenticated yet.")
# User access is restricted.
# Keep verifying until access is granted
# unless server goes offline or Kodi is shut down.
2018-04-18 16:39:41 +10:00
while self.user.has_access is False:
# Verify access with an API call
2018-04-18 16:39:41 +10:00
self.user.check_access()
2016-05-31 16:06:42 +10:00
if window('plex_online') != "true":
# Server went offline
break
if monitor.waitForAbort(3):
# Abort was requested while waiting. We should exit
break
else:
# Wait until Plex server is online
# or Kodi is shut down.
while not self.__stop_PKC():
2018-04-18 16:39:41 +10:00
server = self.user.get_server()
2016-03-04 23:34:30 +11:00
if server is False:
# No server info set in add-on settings
2015-05-03 15:27:43 +10:00
pass
2018-02-11 03:59:20 +11:00
elif check_connection(server, verifySSL=True) is False:
2016-03-04 23:34:30 +11:00
# Server is offline or cannot be reached
# Alert the user and suppress future warning
2015-05-03 15:27:43 +10:00
if self.server_online:
2016-12-21 02:13:19 +11:00
self.server_online = False
2016-05-31 16:06:42 +10:00
window('plex_online', value="false")
# Suspend threads
state.SUSPEND_LIBRARY_THREAD = True
2017-12-10 02:18:46 +11:00
LOG.error("Plex Media Server went offline")
2016-12-21 02:13:19 +11:00
if settings('show_pms_offline') == 'true':
2017-01-25 04:48:13 +11:00
dialog('notification',
lang(33001),
"%s %s" % (lang(29999), lang(33002)),
icon='{plex}',
sound=False)
counter += 1
# Periodically check if the IP changed, e.g. per minute
2016-12-21 02:13:19 +11:00
if counter > 20:
counter = 0
setup = initialsetup.InitialSetup()
2018-02-11 03:59:20 +11:00
tmp = setup.pick_pms()
if tmp is not None:
2018-02-11 03:59:20 +11:00
setup.write_pms_to_settings(tmp)
2015-03-14 08:24:59 +11:00
else:
2015-05-03 15:27:43 +10:00
# Server is online
counter = 0
2015-05-03 15:27:43 +10:00
if not self.server_online:
# Server was offline when Kodi started.
2015-05-03 15:27:43 +10:00
# Wait for server to be fully established.
if monitor.waitForAbort(5):
2015-05-03 15:27:43 +10:00
# Abort was requested while waiting.
break
2016-12-21 02:13:19 +11:00
self.server_online = True
# Alert the user that server is online.
2016-12-21 02:13:19 +11:00
if (welcome_msg is False and
settings('show_pms_offline') == 'true'):
2017-01-25 04:48:13 +11:00
dialog('notification',
lang(29999),
lang(33003),
icon='{plex}',
time=5000,
sound=False)
2018-02-10 03:48:25 +11:00
LOG.info("Server %s is online and ready.", server)
2016-05-31 16:06:42 +10:00
window('plex_online', value="true")
if state.AUTHENTICATED:
# Server got offline when we were authenticated.
# Hence resume threads
state.SUSPEND_LIBRARY_THREAD = False
2016-03-10 01:37:27 +11:00
# Start the userclient thread
2016-12-28 03:33:52 +11:00
if not self.user_running:
self.user_running = True
self.user.start()
2015-05-03 15:27:43 +10:00
break
2016-12-21 02:13:19 +11:00
if monitor.waitForAbort(3):
2015-05-03 15:27:43 +10:00
# Abort was requested while waiting.
break
2016-07-21 02:36:31 +10:00
if monitor.waitForAbort(0.05):
# Abort was requested while waiting. We should exit
break
2016-03-23 20:05:29 +11:00
# Terminating PlexKodiConnect
2016-03-23 20:05:29 +11:00
# Tell all threads to terminate (e.g. several lib sync threads)
state.STOP_PKC = True
2017-02-20 02:18:34 +11:00
window('plex_service_started', clear=True)
2018-02-10 03:48:25 +11:00
LOG.info("======== STOP %s ========", v.ADDON_NAME)
2015-05-17 22:11:50 +10:00
2017-02-20 02:18:34 +11:00
# Safety net - Kody starts PKC twice upon first installation!
if window('plex_service_started') == 'true':
2018-02-10 03:48:25 +11:00
EXIT = True
2017-02-20 02:18:34 +11:00
else:
window('plex_service_started', value='true')
2018-02-10 03:48:25 +11:00
EXIT = False
2017-02-20 02:18:34 +11:00
# Delay option
2018-02-10 03:48:25 +11:00
DELAY = int(settings('startupDelay'))
2018-02-10 03:48:25 +11:00
LOG.info("Delaying Plex startup by: %s sec...", DELAY)
if EXIT:
2017-12-10 02:18:46 +11:00
LOG.error('PKC service.py already started - exiting this instance')
2018-02-10 03:48:25 +11:00
elif DELAY and Monitor().waitForAbort(DELAY):
# Start the service
2017-12-10 02:18:46 +11:00
LOG.info("Abort requested while waiting. PKC not started.")
else:
2016-03-04 23:34:30 +11:00
Service().ServiceEntryPoint()