2015-03-13 21:24:59 +00:00
|
|
|
import xbmcaddon
|
|
|
|
import xbmc
|
|
|
|
import xbmcgui
|
|
|
|
import os
|
|
|
|
import threading
|
|
|
|
import json
|
|
|
|
from datetime import datetime
|
2015-05-12 00:10:33 +00:00
|
|
|
import time
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-03-25 17:37:21 +00:00
|
|
|
cwd = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path')
|
2015-03-13 21:24:59 +00:00
|
|
|
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( cwd, 'resources', 'lib' ) )
|
|
|
|
sys.path.append(BASE_RESOURCE_PATH)
|
|
|
|
|
|
|
|
import KodiMonitor
|
|
|
|
import Utils as utils
|
|
|
|
from LibrarySync import LibrarySync
|
|
|
|
from Player import Player
|
2015-04-12 17:21:21 +00:00
|
|
|
from DownloadUtils import DownloadUtils
|
2015-03-14 02:37:03 +00:00
|
|
|
from ConnectionManager import ConnectionManager
|
2015-04-03 10:13:01 +00:00
|
|
|
from ClientInformation import ClientInformation
|
2015-03-23 04:54:16 +00:00
|
|
|
from WebSocketClient import WebSocketThread
|
2015-04-03 10:13:01 +00:00
|
|
|
from UserClient import UserClient
|
2015-05-01 16:32:13 +00:00
|
|
|
from PlaybackUtils import PlaybackUtils
|
2015-04-12 17:21:21 +00:00
|
|
|
librarySync = LibrarySync()
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-06 17:17:32 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
class Service():
|
2015-03-27 09:45:28 +00:00
|
|
|
|
2015-04-06 17:17:32 +00:00
|
|
|
|
2015-03-27 09:45:28 +00:00
|
|
|
newWebSocketThread = None
|
2015-04-03 10:13:01 +00:00
|
|
|
newUserClient = None
|
|
|
|
|
|
|
|
clientInfo = ClientInformation()
|
2015-05-17 12:11:50 +00:00
|
|
|
KodiMonitor = KodiMonitor.Kodi_Monitor()
|
2015-04-06 17:17:32 +00:00
|
|
|
addonName = clientInfo.getAddonName()
|
2015-05-03 05:27:43 +00:00
|
|
|
WINDOW = xbmcgui.Window(10000)
|
2015-06-05 10:12:09 +00:00
|
|
|
logLevel = UserClient().getLogLevel()
|
2015-05-03 05:27:43 +00:00
|
|
|
|
|
|
|
warn_auth = True
|
2015-06-04 10:10:49 +00:00
|
|
|
welcome_msg = True
|
2015-05-03 05:27:43 +00:00
|
|
|
server_online = True
|
2015-03-13 21:24:59 +00:00
|
|
|
|
|
|
|
def __init__(self, *args ):
|
2015-04-26 20:41:39 +00:00
|
|
|
addonName = self.addonName
|
2015-06-05 10:12:09 +00:00
|
|
|
WINDOW = self.WINDOW
|
|
|
|
WINDOW.setProperty('getLogLevel', str(self.logLevel))
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-06 17:17:32 +00:00
|
|
|
self.logMsg("Starting Monitor", 0)
|
|
|
|
self.logMsg("======== START %s ========" % addonName, 0)
|
|
|
|
self.logMsg("KODI Version: %s" % xbmc.getInfoLabel("System.BuildVersion"), 0)
|
|
|
|
self.logMsg("%s Version: %s" % (addonName, self.clientInfo.getVersion()), 0)
|
2015-05-03 05:27:43 +00:00
|
|
|
self.logMsg("Platform: %s" % (self.clientInfo.getPlatform()), 0)
|
2015-06-05 10:12:09 +00:00
|
|
|
self.logMsg("Log Level: %s" % self.logLevel, 0)
|
2015-05-07 08:32:30 +00:00
|
|
|
|
|
|
|
#reset all window props on startup for user profile switches
|
|
|
|
self.WINDOW.clearProperty("startup")
|
2015-06-05 10:12:09 +00:00
|
|
|
embyProperty = WINDOW.getProperty("Emby.nodes.total")
|
2015-05-07 08:32:30 +00:00
|
|
|
propNames = ["index","path","title","content","inprogress.content","inprogress.title","inprogress.content","inprogress.path","nextepisodes.title","nextepisodes.content","nextepisodes.path","unwatched.title","unwatched.content","unwatched.path","recent.title","recent.content","recent.path","recentepisodes.title","recentepisodes.content","recentepisodes.path","inprogressepisodes.title","inprogressepisodes.content","inprogressepisodes.path"]
|
|
|
|
if embyProperty:
|
|
|
|
totalNodes = int(embyProperty)
|
|
|
|
for i in range(totalNodes):
|
|
|
|
for prop in propNames:
|
2015-06-05 10:12:09 +00:00
|
|
|
WINDOW.clearProperty("Emby.nodes.%s.%s" %(str(i),prop))
|
2015-05-07 08:32:30 +00:00
|
|
|
|
2015-04-06 17:17:32 +00:00
|
|
|
|
|
|
|
def logMsg(self, msg, lvl=1):
|
|
|
|
|
2015-05-03 05:27:43 +00:00
|
|
|
className = self.__class__.__name__
|
|
|
|
utils.logMsg("%s %s" % (self.addonName, className), str(msg), int(lvl))
|
2015-04-06 15:52:16 +00:00
|
|
|
|
2015-03-13 21:24:59 +00:00
|
|
|
def ServiceEntryPoint(self):
|
|
|
|
|
2015-05-03 05:27:43 +00:00
|
|
|
WINDOW = self.WINDOW
|
2015-06-11 09:57:33 +00:00
|
|
|
addon = xbmcaddon.Addon(id=self.clientInfo.getAddonId())
|
2015-05-03 05:27:43 +00:00
|
|
|
WINDOW.setProperty("Server_online", "")
|
2015-05-12 07:46:35 +00:00
|
|
|
self.WINDOW.setProperty("Server_status", "")
|
2015-05-12 00:10:33 +00:00
|
|
|
WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
|
|
|
|
2015-03-14 02:37:03 +00:00
|
|
|
ConnectionManager().checkServer()
|
2015-03-27 09:45:28 +00:00
|
|
|
lastProgressUpdate = datetime.today()
|
2015-04-11 15:53:17 +00:00
|
|
|
startupComplete = False
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-03 10:13:01 +00:00
|
|
|
user = UserClient()
|
|
|
|
player = Player()
|
2015-04-01 19:07:29 +00:00
|
|
|
ws = WebSocketThread()
|
|
|
|
|
2015-04-09 12:29:48 +00:00
|
|
|
lastFile = None
|
2015-04-26 23:15:40 +00:00
|
|
|
|
2015-04-01 19:07:29 +00:00
|
|
|
while not self.KodiMonitor.abortRequested():
|
2015-05-17 23:35:28 +00:00
|
|
|
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
2015-05-12 00:10:33 +00:00
|
|
|
|
2015-04-12 03:01:44 +00:00
|
|
|
if self.KodiMonitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
2015-05-03 05:27:43 +00:00
|
|
|
|
|
|
|
if WINDOW.getProperty('Server_online') == "true":
|
|
|
|
# Server is online
|
2015-05-12 07:34:03 +00:00
|
|
|
if (user.currUser != None) and (user.HasAccess == True):
|
2015-06-06 07:35:15 +00:00
|
|
|
self.warn_auth = True
|
2015-06-11 09:57:33 +00:00
|
|
|
if addon.getSetting('supressConnectMsg') == "false":
|
|
|
|
if self.welcome_msg:
|
|
|
|
# Reset authentication warnings
|
|
|
|
self.welcome_msg = False
|
|
|
|
xbmcgui.Dialog().notification("Emby server", "Welcome %s!" % user.currUser, time=2000, sound=False)
|
2015-05-12 07:34:03 +00:00
|
|
|
|
|
|
|
# Correctly launch the websocket, if user manually launches the add-on
|
|
|
|
if (self.newWebSocketThread == None):
|
|
|
|
self.newWebSocketThread = "Started"
|
|
|
|
ws.start()
|
|
|
|
|
|
|
|
if xbmc.Player().isPlaying():
|
2015-05-17 23:35:28 +00:00
|
|
|
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
2015-05-12 07:34:03 +00:00
|
|
|
try:
|
|
|
|
playTime = xbmc.Player().getTime()
|
|
|
|
totalTime = xbmc.Player().getTotalTime()
|
|
|
|
currentFile = xbmc.Player().getPlayingFile()
|
|
|
|
|
|
|
|
if(player.played_information.get(currentFile) != None):
|
|
|
|
player.played_information[currentFile]["currentPosition"] = playTime
|
|
|
|
|
|
|
|
# send update
|
|
|
|
td = datetime.today() - lastProgressUpdate
|
|
|
|
secDiff = td.seconds
|
|
|
|
if(secDiff > 3):
|
|
|
|
try:
|
|
|
|
player.reportPlayback()
|
|
|
|
except Exception, msg:
|
|
|
|
self.logMsg("Exception reporting progress: %s" % msg)
|
|
|
|
pass
|
|
|
|
lastProgressUpdate = datetime.today()
|
2015-05-16 08:00:46 +00:00
|
|
|
elif WINDOW.getProperty('commandUpdate') == "true":
|
|
|
|
try:
|
|
|
|
WINDOW.clearProperty('commandUpdate')
|
|
|
|
player.reportPlayback()
|
|
|
|
except: pass
|
|
|
|
lastProgressUpdate = datetime.today()
|
2015-05-12 07:34:03 +00:00
|
|
|
|
|
|
|
except Exception, e:
|
|
|
|
self.logMsg("Exception in Playback Monitor Service: %s" % e)
|
|
|
|
pass
|
|
|
|
|
|
|
|
else:
|
2015-05-03 05:27:43 +00:00
|
|
|
#full sync
|
|
|
|
if (startupComplete == False):
|
|
|
|
self.logMsg("Doing_Db_Sync: syncDatabase (Started)")
|
|
|
|
libSync = librarySync.FullLibrarySync()
|
|
|
|
self.logMsg("Doing_Db_Sync: syncDatabase (Finished) " + str(libSync))
|
2015-05-17 23:35:28 +00:00
|
|
|
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
2015-05-03 05:27:43 +00:00
|
|
|
if (libSync):
|
|
|
|
startupComplete = True
|
|
|
|
else:
|
|
|
|
if self.KodiMonitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting. We should exit
|
2015-05-17 12:11:50 +00:00
|
|
|
break
|
2015-05-12 07:34:03 +00:00
|
|
|
else:
|
2015-05-12 08:16:34 +00:00
|
|
|
|
2015-05-12 07:34:03 +00:00
|
|
|
if self.warn_auth:
|
|
|
|
self.logMsg("Not authenticated yet.", 1)
|
|
|
|
self.warn_auth = False
|
|
|
|
|
2015-05-12 08:16:34 +00:00
|
|
|
while user.HasAccess == False:
|
2015-05-12 22:08:39 +00:00
|
|
|
|
2015-05-17 23:35:28 +00:00
|
|
|
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
2015-05-12 08:16:34 +00:00
|
|
|
user.hasAccess()
|
2015-05-12 22:08:39 +00:00
|
|
|
|
2015-05-14 04:48:35 +00:00
|
|
|
if WINDOW.getProperty('Server_online') != "true":
|
|
|
|
# Server went offline
|
|
|
|
break
|
|
|
|
|
2015-05-12 08:16:34 +00:00
|
|
|
if self.KodiMonitor.waitForAbort(5):
|
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
|
|
|
|
|
|
|
|
2015-04-01 19:07:29 +00:00
|
|
|
else:
|
2015-05-03 05:27:43 +00:00
|
|
|
# Wait until server becomes online or shut down is requested
|
|
|
|
while not self.KodiMonitor.abortRequested():
|
2015-05-17 23:35:28 +00:00
|
|
|
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
|
2015-04-26 23:15:40 +00:00
|
|
|
|
2015-05-03 05:27:43 +00:00
|
|
|
if user.getServer() == "":
|
|
|
|
pass
|
2015-05-06 22:58:31 +00:00
|
|
|
elif user.getPublicUsers() == False:
|
2015-05-03 05:27:43 +00:00
|
|
|
# Server is not online, suppress future warning
|
|
|
|
if self.server_online:
|
|
|
|
WINDOW.setProperty("Server_online", "false")
|
|
|
|
self.logMsg("Server is offline.", 1)
|
2015-06-04 08:44:55 +00:00
|
|
|
xbmcgui.Dialog().notification("Error connecting", "%s Server is unreachable." % self.addonName, sound=False)
|
2015-05-03 05:27:43 +00:00
|
|
|
self.server_online = False
|
2015-03-13 21:24:59 +00:00
|
|
|
else:
|
2015-05-03 05:27:43 +00:00
|
|
|
# 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(5):
|
|
|
|
# Abort was requested while waiting.
|
|
|
|
break
|
2015-06-04 08:44:55 +00:00
|
|
|
xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000, sound=False)
|
2015-06-04 10:10:49 +00:00
|
|
|
|
2015-05-03 05:27:43 +00:00
|
|
|
self.server_online = True
|
|
|
|
self.logMsg("Server is online and ready.", 1)
|
|
|
|
WINDOW.setProperty("Server_online", "true")
|
|
|
|
|
|
|
|
# Server is online, proceed.
|
|
|
|
if (self.newUserClient == None):
|
|
|
|
self.newUserClient = "Started"
|
|
|
|
user.start()
|
|
|
|
break
|
|
|
|
|
|
|
|
if self.KodiMonitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting.
|
|
|
|
break
|
2015-04-12 09:49:02 +00:00
|
|
|
|
2015-05-17 23:35:28 +00:00
|
|
|
#self.checkService()
|
2015-05-17 12:11:50 +00:00
|
|
|
|
2015-04-12 17:21:21 +00:00
|
|
|
# If user reset library database.
|
2015-04-12 09:49:02 +00:00
|
|
|
if WINDOW.getProperty("SyncInstallRunDone") == "false":
|
2015-04-12 17:21:21 +00:00
|
|
|
addon = xbmcaddon.Addon('plugin.video.emby')
|
2015-04-12 09:49:02 +00:00
|
|
|
addon.setSetting("SyncInstallRunDone", "false")
|
2015-04-01 19:07:29 +00:00
|
|
|
|
|
|
|
if (self.newWebSocketThread != None):
|
2015-04-03 10:13:01 +00:00
|
|
|
ws.stopClient()
|
|
|
|
|
|
|
|
if (self.newUserClient != None):
|
2015-05-03 05:27:43 +00:00
|
|
|
user.stopClient()
|
|
|
|
|
|
|
|
self.logMsg("======== STOP %s ========" % self.addonName, 0)
|
2015-05-17 12:11:50 +00:00
|
|
|
|
2015-05-17 23:35:28 +00:00
|
|
|
# To be reviewed when moving the sync process to it's own thread
|
|
|
|
'''def checkService(self):
|
2015-05-17 12:11:50 +00:00
|
|
|
|
|
|
|
WINDOW = self.WINDOW
|
|
|
|
timeStamp = WINDOW.getProperty("Emby_Service_Timestamp")
|
|
|
|
loops = 0
|
|
|
|
|
|
|
|
while(timeStamp == ""):
|
|
|
|
timeStamp = WINDOW.getProperty("Emby_Service_Timestamp")
|
|
|
|
loops = loops + 1
|
|
|
|
if(loops == 5):
|
|
|
|
self.logMsg("Emby Service Not Running, no time stamp, exiting.", 0)
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
|
|
language = addon.getLocalizedString
|
|
|
|
xbmcgui.Dialog().ok(language(30135), language(30136), language(30137))
|
|
|
|
sys.exit()
|
|
|
|
if self.KodiMonitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
return
|
|
|
|
|
|
|
|
self.logMsg("Emby Service Timestamp: " + timeStamp, 2)
|
|
|
|
self.logMsg("Emby Current Timestamp: " + str(int(time.time())), 2)
|
|
|
|
|
|
|
|
if((int(timeStamp) + 30) < int(time.time())):
|
|
|
|
self.logMsg("Emby Service Not Running, time stamp to old, exiting.", 0)
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
|
|
language = addon.getLocalizedString
|
|
|
|
xbmcgui.Dialog().ok(language(30135), language(30136), language(30137))
|
2015-05-17 23:35:28 +00:00
|
|
|
sys.exit()'''
|
2015-03-13 21:24:59 +00:00
|
|
|
|
2015-04-26 23:15:40 +00:00
|
|
|
#start the service
|
2015-04-12 17:21:21 +00:00
|
|
|
Service().ServiceEntryPoint()
|