PlexKodiConnect/service.py

325 lines
12 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
2016-03-04 01:28:44 +11:00
###############################################################################
2016-08-30 03:27:05 +10:00
import logging
import os
import sys
2016-03-25 04:52:02 +11:00
import Queue
2015-03-14 08:24:59 +11:00
import xbmc
import xbmcaddon
2015-03-14 08:24:59 +11:00
import xbmcgui
2016-03-04 01:28:44 +11:00
###############################################################################
_addon = xbmcaddon.Addon(id='plugin.video.plexkodiconnect')
try:
2016-08-30 03:27:05 +10:00
_addon_path = _addon.getAddonInfo('path').decode('utf-8')
except TypeError:
2016-08-30 03:27:05 +10:00
_addon_path = _addon.getAddonInfo('path').decode()
try:
2016-08-30 03:27:05 +10:00
_base_resource = xbmc.translatePath(os.path.join(
_addon_path,
'resources',
'lib')).decode('utf-8')
except TypeError:
2016-08-30 03:27:05 +10:00
_base_resource = xbmc.translatePath(os.path.join(
_addon_path,
'resources',
'lib')).decode()
2016-08-30 03:27:05 +10:00
sys.path.append(_base_resource)
2015-03-14 08:24:59 +11:00
2016-03-04 01:28:44 +11:00
###############################################################################
2016-08-30 03:27:05 +10:00
from utils import settings, window, language as lang
import userclient
import clientinfo
import initialsetup
import kodimonitor
import librarysync
import videonodes
2016-03-22 03:15:22 +11:00
import websocket_client as wsc
2016-03-23 20:05:29 +11:00
import downloadutils
2015-04-07 03:17:32 +10:00
2015-12-28 02:27:49 +11:00
import PlexAPI
import PlexCompanion
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()
2016-10-23 02:15:10 +11:00
log = logging.getLogger("PLEX.service")
2016-09-05 00:48:57 +10:00
addonName = 'PlexKodiConnect'
2016-08-30 03:27:05 +10:00
###############################################################################
class Service():
2015-05-03 15:27:43 +10:00
welcome_msg = True
2015-05-03 15:27:43 +10:00
server_online = True
warn_auth = True
userclient_running = False
websocket_running = False
library_running = False
kodimonitor_running = False
plexCompanion_running = False
def __init__(self):
self.clientInfo = clientinfo.ClientInfo()
logLevel = self.getLogLevel()
self.monitor = xbmc.Monitor()
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',
value=xbmc.translatePath("special://profile"))
2016-10-23 02:15:10 +11:00
window('plex_context',
value='true' if settings('enableContext') == "true" else "")
2015-03-14 08:24:59 +11:00
# Initial logging
2016-09-05 00:48:57 +10:00
log.warn("======== START %s ========" % addonName)
2016-08-30 03:27:05 +10:00
log.warn("Platform: %s" % (self.clientInfo.getPlatform()))
log.warn("KODI Version: %s" % xbmc.getInfoLabel('System.BuildVersion'))
2016-09-05 00:48:57 +10:00
log.warn("%s Version: %s" % (addonName, self.clientInfo.getVersion()))
2016-08-30 03:27:05 +10:00
log.warn("Using plugin paths: %s"
% (settings('useDirectPaths') != "true"))
log.warn("Using a low powered device: %s"
% settings('low_powered_device'))
2016-08-30 03:27:05 +10:00
log.warn("Log Level: %s" % logLevel)
# Reset window props for profile switch
properties = [
2016-05-31 16:06:42 +10:00
"plex_online", "plex_serverStatus", "plex_onWake",
"plex_dbCheck", "plex_kodiScan",
"plex_shouldStop", "currUserId", "plex_dbScan",
"plex_initialScan", "plex_customplaylist", "plex_playbackProps",
2016-03-11 02:02:46 +11:00
"plex_runLibScan", "plex_username", "pms_token", "plex_token",
"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",
"kodiplextimeoffset", "countError", "countUnauthorized",
"plex_restricteduser", "plex_allows_mediaDeletion"
]
for prop in properties:
2016-02-03 10:49:22 +11:00
window(prop, clear=True)
# Clear video nodes properties
videonodes.VideoNodes().clearProperties()
2016-07-21 02:36:31 +10:00
# Set the minimum database version
2016-05-31 16:06:42 +10:00
window('plex_minDBVersion', value="1.1.5")
2015-04-07 03:17:32 +10:00
def getLogLevel(self):
try:
2016-08-30 03:27:05 +10:00
logLevel = int(settings('logLevel'))
except ValueError:
logLevel = 0
return logLevel
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.
monitor = self.monitor
kodiProfile = xbmc.translatePath("special://profile")
# Server auto-detect
initialsetup.InitialSetup().setup()
2016-03-30 03:44:13 +11:00
# Queue for background sync
2016-10-14 01:04:04 +11:00
queue = Queue.Queue()
2016-03-25 04:52:02 +11:00
2016-08-30 03:27:05 +10:00
connectMsg = True if settings('connectMsg') == 'true' else False
2016-04-08 00:25:16 +10:00
# Initialize important threads
user = userclient.UserClient()
2016-03-30 03:44:13 +11:00
ws = wsc.WebSocket(queue)
2016-03-25 04:52:02 +11:00
library = librarysync.LibrarySync(queue)
plx = PlexAPI.PlexAPI()
2016-01-25 20:36:24 +11:00
counter = 0
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:
# 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')))
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
if (user.currUser is not None) and user.HasAccess:
2016-07-21 02:36:31 +10:00
if not self.kodimonitor_running:
# Start up events
self.warn_auth = True
2016-04-08 00:25:16 +10:00
if connectMsg and self.welcome_msg:
# Reset authentication warnings
self.welcome_msg = False
xbmcgui.Dialog().notification(
2016-09-05 00:48:57 +10:00
heading=addonName,
2016-03-08 23:09:15 +11:00
message="%s %s" % (lang(33000), user.currUser),
2016-03-04 23:34:30 +11:00
icon="special://home/addons/plugin.video.plexkodiconnect/icon.png",
time=2000,
sound=False)
# Start monitoring kodi events
2016-08-07 23:33:36 +10:00
self.kodimonitor_running = kodimonitor.KodiMonitor()
# Start the Websocket Client
2016-03-22 03:15:22 +11:00
if not self.websocket_running:
self.websocket_running = True
ws.start()
# Start the syncing thread
if not self.library_running:
self.library_running = True
library.start()
# Start the Plex Companion thread
if not self.plexCompanion_running:
self.plexCompanion_running = True
2016-08-07 23:33:36 +10:00
plexCompanion = PlexCompanion.PlexCompanion()
plexCompanion.start()
else:
if (user.currUser is None) and self.warn_auth:
# Alert user is not authenticated and suppress future warning
self.warn_auth = False
2016-08-30 03:27:05 +10: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.
while user.HasAccess == False:
# Verify access with an API call
user.hasAccess()
2016-05-31 16:06:42 +10:00
if window('plex_online') != "true":
# Server went offline
break
if monitor.waitForAbort(5):
# Abort was requested while waiting. We should exit
break
xbmc.sleep(50)
else:
# Wait until Plex server is online
# or Kodi is shut down.
while not monitor.abortRequested():
2015-12-28 02:27:49 +11:00
server = user.getServer()
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
elif plx.CheckConnection(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-08-30 03:27:05 +10:00
log.error("Server is offline.")
2016-05-31 16:06:42 +10:00
window('plex_online', value="false")
# Suspend threads
window('suspend_LibraryThread', value='true')
xbmcgui.Dialog().notification(
2016-03-08 23:09:15 +11:00
heading=lang(33001),
message="%s %s"
2016-09-05 00:48:57 +10:00
% (addonName, lang(33002)),
icon="special://home/addons/plugin.video."
"plexkodiconnect/icon.png",
sound=False)
2015-05-03 15:27:43 +10:00
self.server_online = False
counter += 1
# Periodically check if the IP changed, e.g. per minute
if counter > 30:
counter = 0
setup = initialsetup.InitialSetup()
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
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
# Alert the user that server is online.
xbmcgui.Dialog().notification(
2016-09-05 00:48:57 +10:00
heading=addonName,
2016-03-08 23:09:15 +11:00
message=lang(33003),
icon="special://home/addons/plugin.video."
"plexkodiconnect/icon.png",
time=5000,
sound=False)
2015-05-03 15:27:43 +10:00
self.server_online = True
2016-08-30 03:27:05 +10:00
log.warn("Server %s is online and ready." % server)
2016-05-31 16:06:42 +10:00
window('plex_online', value="true")
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
# Start the userclient thread
if not self.userclient_running:
self.userclient_running = True
2015-05-03 15:27:43 +10:00
user.start()
2015-05-03 15:27:43 +10:00
break
if monitor.waitForAbort(2):
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)
2016-08-30 03:27:05 +10:00
window('plex_terminateNow', value='true')
try:
2016-03-23 20:05:29 +11:00
plexCompanion.stopThread()
except:
2016-08-30 03:27:05 +10:00
log.warn('plexCompanion already shut down')
try:
2016-03-23 20:05:29 +11:00
library.stopThread()
except:
2016-08-30 03:27:05 +10:00
log.warn('Library sync already shut down')
2015-04-03 21:13:01 +11:00
2016-03-22 03:15:22 +11:00
try:
ws.stopThread()
except:
2016-08-30 03:27:05 +10:00
log.warn('Websocket client already shut down')
2016-03-22 03:15:22 +11:00
try:
2016-03-23 20:05:29 +11:00
user.stopThread()
except:
2016-08-30 03:27:05 +10:00
log.warn('User client already shut down')
2015-05-03 15:27:43 +10:00
2016-03-25 04:52:02 +11:00
try:
downloadutils.DownloadUtils().stopSession()
except:
pass
2016-09-05 00:48:57 +10:00
log.warn("======== STOP %s ========" % addonName)
2015-05-17 22:11:50 +10:00
# Delay option
2016-08-30 03:27:05 +10:00
delay = int(settings('startupDelay'))
2016-08-30 03:27:05 +10:00
log.warn("Delaying Plex startup by: %s sec..." % delay)
if delay and xbmc.Monitor().waitForAbort(delay):
# Start the service
2016-08-30 03:27:05 +10:00
log.warn("Abort requested while waiting. PKC not started.")
else:
2016-03-04 23:34:30 +11:00
Service().ServiceEntryPoint()