jellyfin-kodi/service.py

260 lines
11 KiB
Python
Raw Normal View History

2015-03-13 21:24:59 +00:00
import xbmcaddon
import xbmc
import xbmcgui
import os
import threading
import json
from datetime import datetime
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
from DownloadUtils import DownloadUtils
from ConnectionManager import ConnectionManager
2015-04-03 10:13:01 +00:00
from ClientInformation import ClientInformation
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
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-04-06 17:17:32 +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)
logLevel = UserClient().getLogLevel()
2015-05-03 05:27:43 +00:00
warn_auth = True
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
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)
self.logMsg("Log Level: %s" % self.logLevel, 0)
#reset all window props on startup for user profile switches
self.WINDOW.clearProperty("startup")
embyProperty = WINDOW.getProperty("Emby.nodes.total")
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:
WINDOW.clearProperty("Emby.nodes.%s.%s" %(str(i),prop))
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-03-13 21:24:59 +00:00
def ServiceEntryPoint(self):
2015-05-03 05:27:43 +00:00
WINDOW = self.WINDOW
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", "")
WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
ConnectionManager().checkServer()
lastProgressUpdate = datetime.today()
startupComplete = False
2015-03-13 21:24:59 +00:00
2015-04-03 10:13:01 +00:00
user = UserClient()
player = Player()
ws = WebSocketThread()
lastFile = None
while not self.KodiMonitor.abortRequested():
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
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
if (user.currUser != None) and (user.HasAccess == True):
2015-06-06 07:35:15 +00:00
self.warn_auth = True
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)
# Correctly launch the websocket, if user manually launches the add-on
if (self.newWebSocketThread == None):
self.newWebSocketThread = "Started"
ws.start()
if xbmc.Player().isPlaying():
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
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()
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))
#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
else:
if self.warn_auth:
self.logMsg("Not authenticated yet.", 1)
self.warn_auth = False
while user.HasAccess == False:
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
user.hasAccess()
if WINDOW.getProperty('Server_online') != "true":
# Server went offline
break
if self.KodiMonitor.waitForAbort(5):
# Abort was requested while waiting. We should exit
break
else:
2015-05-03 05:27:43 +00:00
# Wait until server becomes online or shut down is requested
while not self.KodiMonitor.abortRequested():
#WINDOW.setProperty("Emby_Service_Timestamp", str(int(time.time())))
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)
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
xbmcgui.Dialog().notification("Connection successful", "%s Server is online." % self.addonName, time=2000, sound=False)
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
#self.checkService()
2015-05-17 12:11:50 +00:00
# If user reset library database.
if WINDOW.getProperty("SyncInstallRunDone") == "false":
addon = xbmcaddon.Addon('plugin.video.emby')
addon.setSetting("SyncInstallRunDone", "false")
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
# 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))
sys.exit()'''
2015-03-13 21:24:59 +00:00
#start the service
Service().ServiceEntryPoint()