2015-07-22 23:16:08 +10:00
|
|
|
# -*- coding: utf-8 -*-
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2016-03-04 01:28:44 +11:00
|
|
|
###############################################################################
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2016-08-30 03:27:05 +10:00
|
|
|
import logging
|
2017-01-25 04:48:13 +11:00
|
|
|
from os import path as os_path
|
|
|
|
from sys import path as sys_path
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2017-01-25 04:48:13 +11:00
|
|
|
from xbmc import translatePath, Monitor, sleep
|
|
|
|
from xbmcaddon import Addon
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2016-03-04 01:28:44 +11:00
|
|
|
###############################################################################
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2017-01-25 04:48:13 +11:00
|
|
|
_addon = Addon(id='plugin.video.plexkodiconnect')
|
2016-05-07 21:25:51 +10:00
|
|
|
try:
|
2016-08-30 03:27:05 +10:00
|
|
|
_addon_path = _addon.getAddonInfo('path').decode('utf-8')
|
2016-05-07 21:25:51 +10:00
|
|
|
except TypeError:
|
2016-08-30 03:27:05 +10:00
|
|
|
_addon_path = _addon.getAddonInfo('path').decode()
|
2016-05-07 21:25:51 +10:00
|
|
|
try:
|
2017-01-25 04:48:13 +11:00
|
|
|
_base_resource = translatePath(os_path.join(
|
2016-08-30 03:27:05 +10:00
|
|
|
_addon_path,
|
2016-05-07 21:25:51 +10:00
|
|
|
'resources',
|
|
|
|
'lib')).decode('utf-8')
|
|
|
|
except TypeError:
|
2017-01-25 04:48:13 +11:00
|
|
|
_base_resource = translatePath(os_path.join(
|
2016-08-30 03:27:05 +10:00
|
|
|
_addon_path,
|
2016-05-07 21:25:51 +10:00
|
|
|
'resources',
|
|
|
|
'lib')).decode()
|
2017-01-25 04:48:13 +11:00
|
|
|
sys_path.append(_base_resource)
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2016-03-04 01:28:44 +11:00
|
|
|
###############################################################################
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2017-01-25 04:48:13 +11:00
|
|
|
from utils import settings, window, language as lang, dialog
|
2016-12-28 03:33:52 +11:00
|
|
|
from userclient import UserClient
|
2015-12-25 06:51:47 +11:00
|
|
|
import initialsetup
|
2016-12-28 03:33:52 +11:00
|
|
|
from kodimonitor import KodiMonitor
|
|
|
|
from librarysync import LibrarySync
|
2015-12-25 06:51:47 +11:00
|
|
|
import videonodes
|
2016-12-28 03:33:52 +11:00
|
|
|
from websocket_client import WebSocket
|
2016-03-23 20:05:29 +11:00
|
|
|
import downloadutils
|
2016-12-28 03:33:52 +11:00
|
|
|
from playqueue import Playqueue
|
2015-04-07 03:17:32 +10:00
|
|
|
|
2015-12-28 02:27:49 +11:00
|
|
|
import PlexAPI
|
2016-12-28 03:33:52 +11:00
|
|
|
from PlexCompanion import PlexCompanion
|
2017-01-03 00:07:24 +11:00
|
|
|
from monitor_kodi_play import Monitor_Kodi_Play
|
|
|
|
from playback_starter import Playback_Starter
|
2017-01-21 03:21:51 +11:00
|
|
|
from artwork import Image_Cache_Thread
|
2017-01-25 02:53:50 +11:00
|
|
|
import variables as v
|
2015-12-28 02:27:49 +11:00
|
|
|
|
2016-03-04 01:28:44 +11:00
|
|
|
###############################################################################
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2016-08-30 03:27:05 +10:00
|
|
|
import loghandler
|
|
|
|
|
|
|
|
loghandler.config()
|
2016-10-23 02:15:10 +11:00
|
|
|
log = logging.getLogger("PLEX.service")
|
2016-08-30 03:27:05 +10:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
class Service():
|
2015-05-03 15:27:43 +10:00
|
|
|
|
|
|
|
server_online = True
|
2015-12-25 06:51:47 +11:00
|
|
|
warn_auth = True
|
|
|
|
|
2016-12-28 03:33:52 +11:00
|
|
|
user = None
|
|
|
|
ws = None
|
|
|
|
library = None
|
|
|
|
plexCompanion = None
|
|
|
|
playqueue = None
|
|
|
|
|
|
|
|
user_running = False
|
|
|
|
ws_running = False
|
2015-12-25 06:51:47 +11:00
|
|
|
library_running = False
|
2016-01-23 01:37:20 +11:00
|
|
|
plexCompanion_running = False
|
2016-12-28 03:33:52 +11:00
|
|
|
playqueue_running = False
|
|
|
|
kodimonitor_running = False
|
2017-01-03 00:07:24 +11:00
|
|
|
playback_starter_running = False
|
2017-01-21 03:21:51 +11:00
|
|
|
image_cache_thread_running = False
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
def __init__(self):
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2016-04-08 00:41:27 +10:00
|
|
|
logLevel = self.getLogLevel()
|
2017-01-25 04:48:13 +11:00
|
|
|
self.monitor = Monitor()
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-05-31 16:06:42 +10:00
|
|
|
window('plex_logLevel', value=str(logLevel))
|
2016-08-30 03:27:05 +10:00
|
|
|
window('plex_kodiProfile',
|
2017-01-25 04:48:13 +11:00
|
|
|
value=translatePath("special://profile"))
|
2016-10-23 02:15:10 +11:00
|
|
|
window('plex_context',
|
|
|
|
value='true' if settings('enableContext') == "true" else "")
|
2017-01-21 00:41:28 +11:00
|
|
|
window('fetch_pms_item_number',
|
|
|
|
value=settings('fetch_pms_item_number'))
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-06-05 16:05:40 +10:00
|
|
|
# Initial logging
|
2017-01-25 02:53:50 +11:00
|
|
|
log.warn("======== START %s ========" % v.ADDON_NAME)
|
|
|
|
log.warn("Platform: %s" % v.PLATFORM)
|
2017-01-25 04:48:13 +11:00
|
|
|
log.warn("KODI Version: %s" % v.KODILONGVERSION)
|
2017-01-25 02:53:50 +11:00
|
|
|
log.warn("%s Version: %s" % (v.ADDON_NAME, v.ADDON_VERSION))
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Using plugin paths: %s"
|
|
|
|
% (settings('useDirectPaths') != "true"))
|
2016-12-21 02:13:19 +11:00
|
|
|
log.warn("Number of sync threads: %s"
|
|
|
|
% settings('syncThreadNumber'))
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Log Level: %s" % logLevel)
|
2015-06-05 16:05:40 +10:00
|
|
|
|
|
|
|
# Reset window props for profile switch
|
2015-12-25 06:51:47 +11:00
|
|
|
properties = [
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2016-05-31 16:06:42 +10:00
|
|
|
"plex_online", "plex_serverStatus", "plex_onWake",
|
|
|
|
"plex_dbCheck", "plex_kodiScan",
|
|
|
|
"plex_shouldStop", "currUserId", "plex_dbScan",
|
2016-12-28 03:33:52 +11:00
|
|
|
"plex_initialScan", "plex_customplayqueue", "plex_playbackProps",
|
2016-03-11 02:02:46 +11:00
|
|
|
"plex_runLibScan", "plex_username", "pms_token", "plex_token",
|
2016-03-14 20:40:49 +11:00
|
|
|
"pms_server", "plex_machineIdentifier", "plex_servername",
|
2016-04-15 19:57:49 +10:00
|
|
|
"plex_authenticated", "PlexUserImage", "useDirectPaths",
|
2016-06-13 01:22:22 +10:00
|
|
|
"suspend_LibraryThread", "plex_terminateNow",
|
2016-10-24 04:38:21 +11:00
|
|
|
"kodiplextimeoffset", "countError", "countUnauthorized",
|
2017-01-03 00:07:24 +11:00
|
|
|
"plex_restricteduser", "plex_allows_mediaDeletion",
|
2017-01-16 04:01:27 +11:00
|
|
|
"plex_play_new_item", "plex_result", "plex_force_transcode_pix"
|
2015-06-05 16:05:40 +10:00
|
|
|
]
|
2015-12-25 06:51:47 +11:00
|
|
|
for prop in properties:
|
2016-02-03 10:49:22 +11:00
|
|
|
window(prop, clear=True)
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
# Clear video nodes properties
|
|
|
|
videonodes.VideoNodes().clearProperties()
|
2016-07-21 02:36:31 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
# Set the minimum database version
|
2017-02-02 06:44:23 +11:00
|
|
|
window('plex_minDBVersion', value="1.5.10")
|
2015-04-07 03:17:32 +10:00
|
|
|
|
2016-04-08 00:41:27 +10:00
|
|
|
def getLogLevel(self):
|
|
|
|
try:
|
2016-08-30 03:27:05 +10:00
|
|
|
logLevel = int(settings('logLevel'))
|
2016-04-08 00:41:27 +10:00
|
|
|
except ValueError:
|
|
|
|
logLevel = 0
|
|
|
|
return logLevel
|
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
def ServiceEntryPoint(self):
|
2015-12-25 06:51:47 +11:00
|
|
|
# Important: Threads depending on abortRequest will not trigger
|
|
|
|
# if profile switch happens more than once.
|
|
|
|
monitor = self.monitor
|
2017-01-25 04:48:13 +11:00
|
|
|
kodiProfile = v.KODI_PROFILE
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2017-01-03 00:07:24 +11:00
|
|
|
# Detect playback start early on
|
|
|
|
self.monitor_kodi_play = Monitor_Kodi_Play(self)
|
|
|
|
self.monitor_kodi_play.start()
|
|
|
|
|
2015-06-05 16:05:40 +10:00
|
|
|
# Server auto-detect
|
2016-05-31 15:36:52 +10:00
|
|
|
initialsetup.InitialSetup().setup()
|
2015-06-05 16:05:40 +10:00
|
|
|
|
2016-12-28 03:33:52 +11:00
|
|
|
# Initialize important threads, handing over self for callback purposes
|
|
|
|
self.user = UserClient(self)
|
|
|
|
self.ws = WebSocket(self)
|
|
|
|
self.library = LibrarySync(self)
|
|
|
|
self.plexCompanion = PlexCompanion(self)
|
|
|
|
self.playqueue = Playqueue(self)
|
2017-01-03 00:07:24 +11:00
|
|
|
self.playback_starter = Playback_Starter(self)
|
2017-01-21 03:21:51 +11:00
|
|
|
if settings('enableTextureCache') == "true":
|
|
|
|
self.image_cache_thread = Image_Cache_Thread()
|
2016-03-25 04:52:02 +11:00
|
|
|
|
2016-01-23 01:37:20 +11:00
|
|
|
plx = PlexAPI.PlexAPI()
|
2016-01-25 20:36:24 +11:00
|
|
|
|
2016-12-21 02:13:19 +11:00
|
|
|
welcome_msg = True
|
2016-05-30 04:00:14 +10:00
|
|
|
counter = 0
|
2015-12-25 06:51:47 +11:00
|
|
|
while not monitor.abortRequested():
|
2015-05-03 15:27:43 +10:00
|
|
|
|
2016-05-31 16:06:42 +10:00
|
|
|
if window('plex_kodiProfile') != kodiProfile:
|
2015-12-25 06:51:47 +11:00
|
|
|
# Profile change happened, terminate this thread and others
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Kodi profile was: %s and changed to: %s. "
|
|
|
|
"Terminating old PlexKodiConnect thread."
|
|
|
|
% (kodiProfile, window('plex_kodiProfile')))
|
2015-12-25 06:51:47 +11:00
|
|
|
break
|
2016-08-07 23:33:36 +10:00
|
|
|
|
2015-06-05 16:05:40 +10:00
|
|
|
# Before proceeding, need to make sure:
|
|
|
|
# 1. Server is online
|
|
|
|
# 2. User is set
|
|
|
|
# 3. User has access to the server
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2016-05-31 16:06:42 +10:00
|
|
|
if window('plex_online') == "true":
|
|
|
|
# Plex server is online
|
2015-06-05 16:05:40 +10:00
|
|
|
# Verify if user is set and has access to the server
|
2016-12-28 03:33:52 +11:00
|
|
|
if (self.user.currUser is not None) and self.user.HasAccess:
|
2016-07-21 02:36:31 +10:00
|
|
|
if not self.kodimonitor_running:
|
2015-06-16 17:11:38 +10:00
|
|
|
# Start up events
|
|
|
|
self.warn_auth = True
|
2016-12-21 02:13:19 +11:00
|
|
|
if welcome_msg is True:
|
2015-12-25 06:51:47 +11:00
|
|
|
# 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),
|
|
|
|
self.user.currUser),
|
2017-01-25 06:08:40 +11:00
|
|
|
icon='{plex}',
|
2017-01-25 06:04:53 +11:00
|
|
|
time=2000,
|
|
|
|
sound=False)
|
2015-12-25 06:51:47 +11:00
|
|
|
# Start monitoring kodi events
|
2016-12-28 03:33:52 +11:00
|
|
|
self.kodimonitor_running = KodiMonitor(self)
|
|
|
|
# Start playqueue client
|
|
|
|
if not self.playqueue_running:
|
|
|
|
self.playqueue_running = True
|
|
|
|
self.playqueue.start()
|
2015-06-16 17:11:38 +10:00
|
|
|
# Start the Websocket Client
|
2016-12-28 03:33:52 +11:00
|
|
|
if not self.ws_running:
|
|
|
|
self.ws_running = True
|
|
|
|
self.ws.start()
|
2015-12-25 06:51:47 +11:00
|
|
|
# Start the syncing thread
|
|
|
|
if not self.library_running:
|
|
|
|
self.library_running = True
|
2016-12-28 03:33:52 +11:00
|
|
|
self.library.start()
|
2016-03-24 02:07:09 +11:00
|
|
|
# Start the Plex Companion thread
|
2016-04-27 01:15:05 +10:00
|
|
|
if not self.plexCompanion_running:
|
2016-03-24 02:07:09 +11:00
|
|
|
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()
|
2017-02-01 19:12:35 +11:00
|
|
|
if (not self.image_cache_thread_running and
|
|
|
|
settings('enableTextureCache') == "true"):
|
2017-01-21 03:21:51 +11:00
|
|
|
self.image_cache_thread_running = True
|
|
|
|
self.image_cache_thread.start()
|
2015-05-12 17:34:03 +10:00
|
|
|
else:
|
2016-12-28 03:33:52 +11:00
|
|
|
if (self.user.currUser is None) and self.warn_auth:
|
|
|
|
# Alert user is not authenticated and suppress future
|
|
|
|
# warning
|
2015-05-12 17:34:03 +10:00
|
|
|
self.warn_auth = False
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Not authenticated yet.")
|
2015-05-12 17:34:03 +10:00
|
|
|
|
2015-06-05 16:05:40 +10:00
|
|
|
# User access is restricted.
|
|
|
|
# Keep verifying until access is granted
|
|
|
|
# unless server goes offline or Kodi is shut down.
|
2016-12-28 03:33:52 +11:00
|
|
|
while self.user.HasAccess is False:
|
2015-06-05 16:05:40 +10:00
|
|
|
# Verify access with an API call
|
2016-12-28 03:33:52 +11:00
|
|
|
self.user.hasAccess()
|
2015-05-13 08:08:39 +10:00
|
|
|
|
2016-05-31 16:06:42 +10:00
|
|
|
if window('plex_online') != "true":
|
2015-05-14 14:48:35 +10:00
|
|
|
# Server went offline
|
|
|
|
break
|
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
if monitor.waitForAbort(5):
|
2015-05-12 18:16:34 +10:00
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
2017-01-25 04:48:13 +11:00
|
|
|
sleep(50)
|
2015-04-02 06:07:29 +11:00
|
|
|
else:
|
2016-05-31 15:36:52 +10:00
|
|
|
# Wait until Plex server is online
|
2015-06-05 16:05:40 +10:00
|
|
|
# or Kodi is shut down.
|
2015-12-25 06:51:47 +11:00
|
|
|
while not monitor.abortRequested():
|
2016-12-28 03:33:52 +11:00
|
|
|
server = self.user.getServer()
|
2016-03-04 23:34:30 +11:00
|
|
|
if server is False:
|
2015-06-05 16:05:40 +10:00
|
|
|
# No server info set in add-on settings
|
2015-05-03 15:27:43 +10:00
|
|
|
pass
|
2016-04-07 00:24:03 +10:00
|
|
|
elif plx.CheckConnection(server, verifySSL=True) is False:
|
2016-03-04 23:34:30 +11:00
|
|
|
# Server is offline or cannot be reached
|
2015-06-05 16:05:40 +10:00
|
|
|
# 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")
|
2016-04-13 21:30:25 +10:00
|
|
|
# Suspend threads
|
|
|
|
window('suspend_LibraryThread', value='true')
|
2016-12-21 02:13:19 +11:00
|
|
|
log.error("Plex Media Server went offline")
|
|
|
|
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)
|
2016-05-30 04:00:14 +10:00
|
|
|
counter += 1
|
|
|
|
# Periodically check if the IP changed, e.g. per minute
|
2016-12-21 02:13:19 +11:00
|
|
|
if counter > 20:
|
2016-05-30 04:00:14 +10:00
|
|
|
counter = 0
|
2016-05-31 15:36:52 +10:00
|
|
|
setup = initialsetup.InitialSetup()
|
2016-05-30 04:00:14 +10:00
|
|
|
tmp = setup.PickPMS()
|
|
|
|
if tmp is not None:
|
|
|
|
setup.WritePMStoSettings(tmp)
|
2015-03-14 08:24:59 +11:00
|
|
|
else:
|
2015-05-03 15:27:43 +10:00
|
|
|
# Server is online
|
2016-05-30 04:00:14 +10:00
|
|
|
counter = 0
|
2015-05-03 15:27:43 +10:00
|
|
|
if not self.server_online:
|
2015-06-05 16:05:40 +10:00
|
|
|
# Server was offline when Kodi started.
|
2015-05-03 15:27:43 +10:00
|
|
|
# Wait for server to be fully established.
|
2015-12-25 06:51:47 +11:00
|
|
|
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
|
2015-06-05 16:05:40 +10:00
|
|
|
# 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)
|
2016-12-21 02:13:19 +11:00
|
|
|
log.info("Server %s is online and ready." % server)
|
2016-05-31 16:06:42 +10:00
|
|
|
window('plex_online', value="true")
|
2016-04-13 21:30:25 +10:00
|
|
|
if window('plex_authenticated') == 'true':
|
|
|
|
# Server got offline when we were authenticated.
|
|
|
|
# Hence resume threads
|
|
|
|
window('suspend_LibraryThread', clear=True)
|
2016-03-10 01:37:27 +11:00
|
|
|
|
2015-12-25 06:51:47 +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()
|
2016-01-23 01:37:20 +11:00
|
|
|
|
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
|
2015-04-12 19:49:02 +10:00
|
|
|
|
2016-07-21 02:36:31 +10:00
|
|
|
if monitor.waitForAbort(0.05):
|
2015-06-05 16:05:40 +10:00
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
2015-08-23 02:17:54 +10:00
|
|
|
|
2016-03-23 20:05:29 +11:00
|
|
|
# Terminating PlexKodiConnect
|
2015-09-24 21:59:26 +10:00
|
|
|
|
2016-03-23 20:05:29 +11:00
|
|
|
# Tell all threads to terminate (e.g. several lib sync threads)
|
2016-08-30 03:27:05 +10:00
|
|
|
window('plex_terminateNow', value='true')
|
2016-02-08 03:26:44 +11:00
|
|
|
try:
|
2016-12-28 03:33:52 +11:00
|
|
|
self.plexCompanion.stopThread()
|
2016-02-08 03:26:44 +11:00
|
|
|
except:
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn('plexCompanion already shut down')
|
2016-02-08 03:26:44 +11:00
|
|
|
try:
|
2016-12-28 03:33:52 +11:00
|
|
|
self.library.stopThread()
|
2016-02-08 03:26:44 +11:00
|
|
|
except:
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn('Library sync already shut down')
|
2016-03-22 03:15:22 +11:00
|
|
|
try:
|
2016-12-28 03:33:52 +11:00
|
|
|
self.ws.stopThread()
|
2016-03-22 03:15:22 +11:00
|
|
|
except:
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn('Websocket client already shut down')
|
2016-02-08 03:26:44 +11:00
|
|
|
try:
|
2016-12-28 03:33:52 +11:00
|
|
|
self.user.stopThread()
|
2016-02-08 03:26:44 +11:00
|
|
|
except:
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn('User client already shut down')
|
2016-03-25 04:52:02 +11:00
|
|
|
try:
|
|
|
|
downloadutils.DownloadUtils().stopSession()
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
|
2017-01-25 02:53:50 +11:00
|
|
|
log.warn("======== STOP %s ========" % v.ADDON_NAME)
|
2015-05-17 22:11:50 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
# Delay option
|
2016-08-30 03:27:05 +10:00
|
|
|
delay = int(settings('startupDelay'))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Delaying Plex startup by: %s sec..." % delay)
|
2017-01-25 04:48:13 +11:00
|
|
|
if delay and Monitor().waitForAbort(delay):
|
2015-12-25 06:51:47 +11:00
|
|
|
# Start the service
|
2016-08-30 03:27:05 +10:00
|
|
|
log.warn("Abort requested while waiting. PKC not started.")
|
2015-12-25 06:51:47 +11:00
|
|
|
else:
|
2016-03-04 23:34:30 +11:00
|
|
|
Service().ServiceEntryPoint()
|