jellyfin-kodi/service.py

188 lines
7.8 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
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-04-06 17:17:32 +00:00
addonName = clientInfo.getAddonName()
2015-05-03 05:27:43 +00:00
WINDOW = xbmcgui.Window(10000)
warn_auth = True
server_online = True
2015-03-13 21:24:59 +00:00
def __init__(self, *args ):
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
2015-04-26 20:41:39 +00:00
addonName = self.addonName
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-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
WINDOW.setProperty("Server_online", "")
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():
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 xbmc.Player().isPlaying():
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()
# only try autoplay when there's 20 seconds or less remaining and only once!
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
# if its an episode see if autoplay is enabled
if addonSettings.getSetting("autoPlaySeason")=="true":
notificationtime = addonSettings.getSetting("autoPlaySeasonTime")
if (totalTime - playTime <= int(notificationtime) and (lastFile==None or lastFile!=currentFile)):
lastFile = currentFile
player.autoPlayPlayback()
2015-05-03 05:27:43 +00:00
except Exception, e:
self.logMsg("Exception in Playback Monitor Service: %s" % e)
pass
else:
# background worker for database sync
if (user.currUser != None):
self.warn_auth = True
# Correctly launch the websocket, if user manually launches the add-on
if (self.newWebSocketThread == None):
self.newWebSocketThread = "Started"
ws.start()
#full sync
if (startupComplete == False):
self.logMsg("Doing_Db_Sync: syncDatabase (Started)")
libSync = librarySync.FullLibrarySync()
self.logMsg("Doing_Db_Sync: syncDatabase (Finished) " + str(libSync))
if (libSync):
startupComplete = True
else:
if self.KodiMonitor.waitForAbort(1):
# Abort was requested while waiting. We should exit
break
2015-05-07 03:27:22 +00:00
#WebSocketThread().processPendingActions()
2015-05-03 05:27:43 +00:00
else:
if self.warn_auth:
self.logMsg("Not authenticated yet.", 1)
self.warn_auth = False
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-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)
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
self.server_online = True
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")
# 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
# 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-03-13 21:24:59 +00:00
#start the service
Service().ServiceEntryPoint()