Added server online check
This commit is contained in:
parent
6ec92da158
commit
9020c1c908
4 changed files with 193 additions and 129 deletions
|
@ -71,7 +71,7 @@ class DownloadUtils():
|
||||||
url = "{server}/mediabrowser/Sessions?DeviceId=%s&format=json" % deviceId
|
url = "{server}/mediabrowser/Sessions?DeviceId=%s&format=json" % deviceId
|
||||||
result = self.downloadUrl(url)
|
result = self.downloadUrl(url)
|
||||||
# sessionId result
|
# sessionId result
|
||||||
self.logMsg("Session result: %s" % result, 1)
|
self.logMsg("Session result: %s" % result, 2)
|
||||||
self.sessionId = result[0][u'Id']
|
self.sessionId = result[0][u'Id']
|
||||||
|
|
||||||
# Settings for capabilities
|
# Settings for capabilities
|
||||||
|
@ -152,6 +152,8 @@ class DownloadUtils():
|
||||||
timeout = self.timeout
|
timeout = self.timeout
|
||||||
default_link = ""
|
default_link = ""
|
||||||
|
|
||||||
|
try:
|
||||||
|
|
||||||
# If user is authenticated
|
# If user is authenticated
|
||||||
if (authenticate):
|
if (authenticate):
|
||||||
# Get requests session
|
# Get requests session
|
||||||
|
@ -173,7 +175,7 @@ class DownloadUtils():
|
||||||
# If user is not authenticated
|
# If user is not authenticated
|
||||||
elif not authenticate:
|
elif not authenticate:
|
||||||
|
|
||||||
self.logMsg("URL: %s" % url, 1)
|
self.logMsg("URL: %s" % url, 2)
|
||||||
header = self.getHeader(authenticate=False)
|
header = self.getHeader(authenticate=False)
|
||||||
verifyssl = False
|
verifyssl = False
|
||||||
|
|
||||||
|
@ -190,14 +192,11 @@ class DownloadUtils():
|
||||||
r = requests.post(url, params=postBody, headers=header, timeout=timeout, verify=verifyssl)
|
r = requests.post(url, params=postBody, headers=header, timeout=timeout, verify=verifyssl)
|
||||||
|
|
||||||
# Process the response
|
# Process the response
|
||||||
try:
|
|
||||||
r.raise_for_status()
|
|
||||||
|
|
||||||
if r.status_code == 204:
|
if r.status_code == 204:
|
||||||
# No response in body
|
# No body in the response
|
||||||
self.logMsg("====== 204 Success ======", 2)
|
self.logMsg("====== 204 Success ======", 2)
|
||||||
return default_link
|
return default_link
|
||||||
# Response code 200
|
|
||||||
elif r.status_code == requests.codes.ok:
|
elif r.status_code == requests.codes.ok:
|
||||||
try:
|
try:
|
||||||
# UTF-8 - JSON object
|
# UTF-8 - JSON object
|
||||||
|
@ -206,21 +205,35 @@ class DownloadUtils():
|
||||||
return r
|
return r
|
||||||
except:
|
except:
|
||||||
self.logMsg("Unable to convert the response for: %s" % url, 1)
|
self.logMsg("Unable to convert the response for: %s" % url, 1)
|
||||||
|
else:
|
||||||
|
r.raise_for_status()
|
||||||
|
|
||||||
return default_link
|
return default_link
|
||||||
|
|
||||||
# TO REVIEW EXCEPTIONS
|
# TO REVIEW EXCEPTIONS
|
||||||
except requests.exceptions.ConnectionError as e:
|
except requests.exceptions.ConnectionError as e:
|
||||||
|
# Addon is already aware of status
|
||||||
|
if WINDOW.getProperty("Server_online") == "true":
|
||||||
self.logMsg("Server unreachable at: %s" % url, 0)
|
self.logMsg("Server unreachable at: %s" % url, 0)
|
||||||
self.logMsg(e, 1)
|
self.logMsg(e, 2)
|
||||||
|
WINDOW.setProperty("Server_online", "false")
|
||||||
|
pass
|
||||||
|
|
||||||
except requests.exceptions.ConnectTimeout as e:
|
except requests.exceptions.ConnectTimeout as e:
|
||||||
self.logMsg("Server timeout at: %s" % url, 0)
|
self.logMsg("Server timeout at: %s" % url, 0)
|
||||||
self.logMsg(e, 1)
|
self.logMsg(e, 2)
|
||||||
|
|
||||||
except requests.exceptions.HTTPError as e:
|
except requests.exceptions.HTTPError as e:
|
||||||
|
|
||||||
if r.status_code == 401:
|
if (r.status_code == 301) or (r.status_code == 302):
|
||||||
|
# Redirects
|
||||||
|
pass
|
||||||
|
|
||||||
|
elif (r.status_code == 400):
|
||||||
|
# Bad requests
|
||||||
|
pass
|
||||||
|
|
||||||
|
elif (r.status_code == 401):
|
||||||
# Unauthorized
|
# Unauthorized
|
||||||
status = WINDOW.getProperty("Server_status")
|
status = WINDOW.getProperty("Server_status")
|
||||||
if (status == "401") or (status == "Auth"):
|
if (status == "401") or (status == "Auth"):
|
||||||
|
@ -230,19 +243,16 @@ class DownloadUtils():
|
||||||
WINDOW.setProperty("Server_status", "401")
|
WINDOW.setProperty("Server_status", "401")
|
||||||
self.logMsg("HTTP Error: %s" % e, 0)
|
self.logMsg("HTTP Error: %s" % e, 0)
|
||||||
|
|
||||||
elif (r.status_code == 301) or (r.status_code == 302):
|
elif (r.status_code == 500):
|
||||||
# Redirects
|
# Out of memory
|
||||||
pass
|
|
||||||
elif r.status_code == 400:
|
|
||||||
# Bad requests
|
|
||||||
pass
|
pass
|
||||||
|
|
||||||
except requests.exceptions.SSLError as e:
|
except requests.exceptions.SSLError as e:
|
||||||
self.logMsg("Invalid SSL certificate for: %s" % url, 0)
|
self.logMsg("Invalid SSL certificate for: %s" % url, 0)
|
||||||
self.logMsg(e, 1)
|
self.logMsg(e, 2)
|
||||||
|
|
||||||
except requests.exceptions.RequestException as e:
|
except requests.exceptions.RequestException as e:
|
||||||
self.logMsg("Unknown error connecting to: %s" % url, 0)
|
self.logMsg("Unknown error connecting to: %s" % url, 0)
|
||||||
self.logMsg(e, 1)
|
self.logMsg(e, 2)
|
||||||
|
|
||||||
return default_link
|
return default_link
|
||||||
|
|
|
@ -46,6 +46,7 @@ class UserClient(threading.Thread):
|
||||||
|
|
||||||
self.__dict__ = self._shared_state
|
self.__dict__ = self._shared_state
|
||||||
self.className = self.__class__.__name__
|
self.className = self.__class__.__name__
|
||||||
|
self.__language__ = self.addon.getLocalizedString
|
||||||
|
|
||||||
threading.Thread.__init__(self, *args)
|
threading.Thread.__init__(self, *args)
|
||||||
|
|
||||||
|
@ -161,6 +162,9 @@ class UserClient(threading.Thread):
|
||||||
|
|
||||||
if (result != ""):
|
if (result != ""):
|
||||||
users = result
|
users = result
|
||||||
|
else:
|
||||||
|
# Server connection failed
|
||||||
|
return False
|
||||||
|
|
||||||
return users
|
return users
|
||||||
|
|
||||||
|
@ -226,9 +230,6 @@ class UserClient(threading.Thread):
|
||||||
users = self.getPublicUsers()
|
users = self.getPublicUsers()
|
||||||
password = ""
|
password = ""
|
||||||
|
|
||||||
'''if users == "":
|
|
||||||
self.WINDOW.setProperty("Server_status", "Stop")
|
|
||||||
return'''
|
|
||||||
# Find user in list
|
# Find user in list
|
||||||
for user in users:
|
for user in users:
|
||||||
name = user[u'Name']
|
name = user[u'Name']
|
||||||
|
|
|
@ -18,6 +18,7 @@ from DownloadUtils import DownloadUtils
|
||||||
from PlaybackUtils import PlaybackUtils
|
from PlaybackUtils import PlaybackUtils
|
||||||
from LibrarySync import LibrarySync
|
from LibrarySync import LibrarySync
|
||||||
from WriteKodiDB import WriteKodiDB
|
from WriteKodiDB import WriteKodiDB
|
||||||
|
from UserClient import UserClient
|
||||||
import Utils as utils
|
import Utils as utils
|
||||||
|
|
||||||
pendingUserDataList = []
|
pendingUserDataList = []
|
||||||
|
@ -31,6 +32,8 @@ class WebSocketThread(threading.Thread):
|
||||||
client = None
|
client = None
|
||||||
keepRunning = True
|
keepRunning = True
|
||||||
|
|
||||||
|
uc = UserClient()
|
||||||
|
|
||||||
def __init__(self, *args):
|
def __init__(self, *args):
|
||||||
|
|
||||||
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
|
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
|
||||||
|
@ -246,7 +249,7 @@ class WebSocketThread(threading.Thread):
|
||||||
LibrarySync().updatePlayCount(itemId)
|
LibrarySync().updatePlayCount(itemId)
|
||||||
|
|
||||||
def on_error(self, ws, error):
|
def on_error(self, ws, error):
|
||||||
self.logMsg("Error : " + str(error))
|
self.logMsg("Error : " + str(error), 2)
|
||||||
#raise
|
#raise
|
||||||
|
|
||||||
def on_close(self, ws):
|
def on_close(self, ws):
|
||||||
|
@ -323,12 +326,19 @@ class WebSocketThread(threading.Thread):
|
||||||
self.client.on_open = self.on_open
|
self.client.on_open = self.on_open
|
||||||
|
|
||||||
while not self.KodiMonitor.abortRequested():
|
while not self.KodiMonitor.abortRequested():
|
||||||
self.logMsg("Client Starting")
|
|
||||||
self.client.run_forever()
|
self.client.run_forever()
|
||||||
|
|
||||||
if (self.keepRunning):
|
if (self.keepRunning):
|
||||||
self.logMsg("Client Needs To Restart")
|
# Server is not online, suppress future warning
|
||||||
|
if WINDOW.getProperty("Server_online") == "true":
|
||||||
|
self.logMsg("Server is unreachable.", 1)
|
||||||
|
WINDOW.setProperty("Server_online", "false")
|
||||||
|
xbmcgui.Dialog().notification("Error connecting", "Server is unreachable.")
|
||||||
|
|
||||||
if self.KodiMonitor.waitForAbort(5):
|
if self.KodiMonitor.waitForAbort(5):
|
||||||
break
|
break
|
||||||
|
|
||||||
self.logMsg("Thread Exited")
|
self.logMsg("Thread Exited")
|
||||||
|
|
||||||
|
|
||||||
|
|
75
service.py
75
service.py
|
@ -1,6 +1,7 @@
|
||||||
import xbmcaddon
|
import xbmcaddon
|
||||||
import xbmc
|
import xbmc
|
||||||
import xbmcgui
|
import xbmcgui
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import threading
|
import threading
|
||||||
import json
|
import json
|
||||||
|
@ -30,25 +31,28 @@ class Service():
|
||||||
|
|
||||||
clientInfo = ClientInformation()
|
clientInfo = ClientInformation()
|
||||||
addonName = clientInfo.getAddonName()
|
addonName = clientInfo.getAddonName()
|
||||||
className = None
|
WINDOW = xbmcgui.Window(10000)
|
||||||
|
|
||||||
|
warn_auth = True
|
||||||
|
server_online = True
|
||||||
|
|
||||||
def __init__(self, *args ):
|
def __init__(self, *args ):
|
||||||
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
|
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
|
||||||
addonName = self.addonName
|
|
||||||
self.className = self.__class__.__name__
|
self.className = self.__class__.__name__
|
||||||
|
addonName = self.addonName
|
||||||
|
|
||||||
self.logMsg("Starting Monitor", 0)
|
self.logMsg("Starting Monitor", 0)
|
||||||
self.logMsg("======== START %s ========" % addonName, 0)
|
self.logMsg("======== START %s ========" % addonName, 0)
|
||||||
self.logMsg("KODI Version: %s" % xbmc.getInfoLabel("System.BuildVersion"), 0)
|
self.logMsg("KODI Version: %s" % xbmc.getInfoLabel("System.BuildVersion"), 0)
|
||||||
self.logMsg("%s Version: %s" % (addonName, self.clientInfo.getVersion()), 0)
|
self.logMsg("%s Version: %s" % (addonName, self.clientInfo.getVersion()), 0)
|
||||||
pass
|
|
||||||
|
|
||||||
def logMsg(self, msg, lvl=1):
|
def logMsg(self, msg, lvl=1):
|
||||||
|
|
||||||
utils.logMsg("%s %s" % (self.addonName, self.className), str(msg), int(lvl))
|
utils.logMsg("%s %s" % (self.addonName, self.className), msg, int(lvl))
|
||||||
|
|
||||||
def ServiceEntryPoint(self):
|
def ServiceEntryPoint(self):
|
||||||
|
|
||||||
|
WINDOW = self.WINDOW
|
||||||
ConnectionManager().checkServer()
|
ConnectionManager().checkServer()
|
||||||
|
|
||||||
lastProgressUpdate = datetime.today()
|
lastProgressUpdate = datetime.today()
|
||||||
|
@ -66,12 +70,21 @@ class Service():
|
||||||
|
|
||||||
lastFile = None
|
lastFile = None
|
||||||
|
|
||||||
|
# Main program
|
||||||
while not self.KodiMonitor.abortRequested():
|
while not self.KodiMonitor.abortRequested():
|
||||||
|
|
||||||
if self.KodiMonitor.waitForAbort(1):
|
if self.KodiMonitor.waitForAbort(1):
|
||||||
# Abort was requested while waiting. We should exit
|
# Abort was requested while waiting. We should exit
|
||||||
break
|
break
|
||||||
|
|
||||||
|
if (self.newUserClient == None):
|
||||||
|
self.newUserClient = "Started"
|
||||||
|
user.start()
|
||||||
|
|
||||||
|
# isServerOnline verification
|
||||||
|
if WINDOW.getProperty("Server_online") == "true":
|
||||||
|
# Server is online, proceed.
|
||||||
|
|
||||||
if xbmc.Player().isPlaying():
|
if xbmc.Player().isPlaying():
|
||||||
try:
|
try:
|
||||||
playTime = xbmc.Player().getTime()
|
playTime = xbmc.Player().getTime()
|
||||||
|
@ -88,7 +101,7 @@ class Service():
|
||||||
try:
|
try:
|
||||||
player.reportPlayback()
|
player.reportPlayback()
|
||||||
except Exception, msg:
|
except Exception, msg:
|
||||||
xbmc.log("MB3 Sync Service -> Exception reporting progress : " + msg)
|
self.logMsg("Exception reporting progress: %s" % msg, 1)
|
||||||
pass
|
pass
|
||||||
lastProgressUpdate = datetime.today()
|
lastProgressUpdate = datetime.today()
|
||||||
# only try autoplay when there's 20 seconds or less remaining and only once!
|
# only try autoplay when there's 20 seconds or less remaining and only once!
|
||||||
|
@ -97,12 +110,9 @@ class Service():
|
||||||
player.autoPlayPlayback()
|
player.autoPlayPlayback()
|
||||||
|
|
||||||
except Exception, e:
|
except Exception, e:
|
||||||
xbmc.log("MB3 Sync Service -> Exception in Playback Monitor Service : " + str(e))
|
self.logMsg("Exception in Playback Monitor Service : " + str(e), 1)
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
if (self.newUserClient == None):
|
|
||||||
self.newUserClient = "Started"
|
|
||||||
user.start()
|
|
||||||
# background worker for database sync
|
# background worker for database sync
|
||||||
if (user.currUser != None):
|
if (user.currUser != None):
|
||||||
|
|
||||||
|
@ -113,11 +123,11 @@ class Service():
|
||||||
|
|
||||||
#full sync
|
#full sync
|
||||||
if (startupComplete == False):
|
if (startupComplete == False):
|
||||||
xbmc.log("Doing_Db_Sync: syncDatabase (Started)")
|
self.logMsg("Doing_Db_Sync: syncDatabase (Started)", 1)
|
||||||
libSync = librarySync.syncDatabase()
|
libSync = librarySync.syncDatabase()
|
||||||
xbmc.log("Doing_Db_Sync: syncDatabase (Finished) " + str(libSync))
|
self.logMsg("Doing_Db_Sync: syncDatabase (Finished) " + str(libSync), 1)
|
||||||
countSync = librarySync.updatePlayCounts()
|
countSync = librarySync.updatePlayCounts()
|
||||||
xbmc.log("Doing_Db_Sync: updatePlayCounts (Finished) " + str(countSync))
|
self.logMsg("Doing_Db_Sync: updatePlayCounts (Finished) " + str(countSync), 1)
|
||||||
|
|
||||||
# Force refresh newly set thumbnails
|
# Force refresh newly set thumbnails
|
||||||
xbmc.executebuiltin("UpdateLibrary(video)")
|
xbmc.executebuiltin("UpdateLibrary(video)")
|
||||||
|
@ -130,12 +140,45 @@ class Service():
|
||||||
WebSocketThread().processPendingActions()
|
WebSocketThread().processPendingActions()
|
||||||
|
|
||||||
else:
|
else:
|
||||||
xbmc.log("Not authenticated yet")
|
# Supress future warnings
|
||||||
|
if self.warn_auth:
|
||||||
|
self.logMsg("Not authenticated yet.", 1)
|
||||||
|
self.warn_auth = False
|
||||||
|
else:
|
||||||
|
# Wait until server becomes online or shut down is requested
|
||||||
|
while not self.KodiMonitor.abortRequested():
|
||||||
|
|
||||||
utils.logMsg("MB3 Sync Service", "stopping Service",0)
|
if user.getServer() == "":
|
||||||
|
# Server information missing
|
||||||
|
pass
|
||||||
|
# Make a simple api call to server
|
||||||
|
elif not user.getPublicUsers():
|
||||||
|
self.server_online = False
|
||||||
|
# Server is not online, suppress future warning
|
||||||
|
if WINDOW.getProperty("Server_online") != "false":
|
||||||
|
WINDOW.setProperty("Server_online", "false")
|
||||||
|
self.logMsg("Server is offline.", 1)
|
||||||
|
xbmcgui.Dialog().notification("Error connecting", "%s Server is unreachable." % self.addonName)
|
||||||
|
else:
|
||||||
|
# Server is online
|
||||||
|
if not self.server_online:
|
||||||
|
# Server was not online when Kodi started.
|
||||||
|
# Wait for server to be fully established.
|
||||||
|
if self.KodiMonitor.waitForAbort(10):
|
||||||
|
# Abort was requested while waiting.
|
||||||
|
break
|
||||||
|
self.logMsg("Server is online and ready.", 1)
|
||||||
|
xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000)
|
||||||
|
WINDOW.setProperty("Server_online", "true")
|
||||||
|
break
|
||||||
|
|
||||||
|
if self.KodiMonitor.waitForAbort(1):
|
||||||
|
# Abort was requested while waiting.
|
||||||
|
break
|
||||||
|
|
||||||
|
self.logMsg("======== STOP %s ========" % self.addonName, 0)
|
||||||
|
|
||||||
# If user reset library database.
|
# If user reset library database.
|
||||||
WINDOW = xbmcgui.Window(10000)
|
|
||||||
if WINDOW.getProperty("SyncInstallRunDone") == "false":
|
if WINDOW.getProperty("SyncInstallRunDone") == "false":
|
||||||
addon = xbmcaddon.Addon('plugin.video.emby')
|
addon = xbmcaddon.Addon('plugin.video.emby')
|
||||||
addon.setSetting("SyncInstallRunDone", "false")
|
addon.setSetting("SyncInstallRunDone", "false")
|
||||||
|
@ -147,5 +190,5 @@ class Service():
|
||||||
user.stopClient()
|
user.stopClient()
|
||||||
|
|
||||||
|
|
||||||
#start the service
|
# Start the service
|
||||||
Service().ServiceEntryPoint()
|
Service().ServiceEntryPoint()
|
||||||
|
|
Loading…
Reference in a new issue