jellyfin-kodi/service.py

142 lines
5.1 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-03-13 21:24:59 +00:00
librarySync = LibrarySync()
class Service():
newWebSocketThread = None
2015-04-03 10:13:01 +00:00
newUserClient = None
clientInfo = ClientInformation()
2015-04-06 13:42:18 +00:00
addonName = None
className = None
2015-03-13 21:24:59 +00:00
def __init__(self, *args ):
self.KodiMonitor = KodiMonitor.Kodi_Monitor()
2015-04-06 13:42:18 +00:00
self.addonName = self.clientInfo.getAddonName()
self.className = self.__class__.__name__
2015-03-13 21:24:59 +00:00
2015-04-06 13:42:18 +00:00
self.logMsg("Starting Monitor", 0)
self.logMsg("======== START %s ========" % self.addonName, 0)
self.logMsg("KODI Version: %s" % xbmc.getInfoLabel("System.BuildVersion"), 0)
self.logMsg("%s Version: %s" % (self.addonName, self.clientInfo.getVersion()), 0)
2015-04-03 10:13:01 +00:00
pass
2015-04-06 13:42:18 +00:00
def logMsg(self, msg, lvl=1):
addonName = self.addonName
className = self.className
utils.logMsg("%s %s" % (addonName, className), str(msg), int(lvl))
2015-03-13 21:24:59 +00:00
def ServiceEntryPoint(self):
ConnectionManager().checkServer()
lastProgressUpdate = datetime.today()
interval_FullSync = 600
interval_IncrementalSync = 300
2015-03-13 21:24:59 +00:00
cur_seconds_fullsync = interval_FullSync
cur_seconds_incrsync = interval_IncrementalSync
2015-03-13 21:24:59 +00:00
2015-04-03 10:13:01 +00:00
user = UserClient()
player = Player()
ws = WebSocketThread()
while not self.KodiMonitor.abortRequested():
xbmc.sleep(1000)
if xbmc.Player().isPlaying():
try:
playTime = xbmc.Player().getTime()
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 > 10):
try:
player.reportPlayback()
except Exception, msg:
2015-04-06 13:42:18 +00:00
self.logMsg("Exception reporting progress: %s" % msg)
pass
lastProgressUpdate = datetime.today()
except Exception, e:
2015-04-06 13:42:18 +00:00
self.logMsg("Exception in Playback Monitor Service: %s" % e)
pass
else:
2015-04-03 10:13:01 +00:00
if (self.newUserClient == None):
self.newUserClient = "Started"
user.start()
# background worker for database sync
2015-04-03 10:13:01 +00:00
if (user.currUser != None):
# Correctly launch the websocket, if user manually launches the add-on
if (self.newWebSocketThread == None):
self.newWebSocketThread = "Started"
ws.start()
#full sync
if(cur_seconds_fullsync >= interval_FullSync):
2015-04-06 13:42:18 +00:00
self.logMsg("Doing_Db_Sync: syncDatabase (Started)")
worked = librarySync.syncDatabase()
2015-04-06 13:42:18 +00:00
self.logMsg("Doing_Db_Sync: syncDatabase (Finished) %s" % worked)
if(worked):
cur_seconds_fullsync = 0
else:
cur_seconds_fullsync = interval_FullSync - 10
else:
cur_seconds_fullsync += 1
#incremental sync
if(cur_seconds_incrsync >= interval_IncrementalSync):
2015-04-06 13:42:18 +00:00
self.logMsg("Doing_Db_Sync: updatePlayCounts (Started)")
worked = librarySync.updatePlayCounts()
2015-04-06 13:42:18 +00:00
self.logMsg("Doing_Db_Sync: updatePlayCounts (Finished) %s" % worked)
if(worked):
cur_seconds_incrsync = 0
else:
cur_seconds_incrsync = interval_IncrementalSync - 10
2015-03-13 21:24:59 +00:00
else:
cur_seconds_incrsync += 1
else:
2015-04-06 13:42:18 +00:00
self.logMsg("Not authenticated yet")
2015-04-06 13:42:18 +00:00
self.logMsg("Stopping Service", 0)
if (self.newWebSocketThread != None):
2015-04-03 10:13:01 +00:00
ws.stopClient()
if (self.newUserClient != None):
user.stopClient()
2015-03-13 21:24:59 +00:00
#start the service
2015-04-06 13:42:18 +00:00
Service().ServiceEntryPoint()