jellyfin-kodi/service.py

307 lines
12 KiB
Python
Raw Normal View History

# -*- coding: utf-8 -*-
#################################################################################################
import logging
import os
import sys
2016-07-18 20:44:11 +00:00
import _strptime # Workaround for threads using datetime: _striptime is locked
from datetime import datetime
2015-03-13 21:24:59 +00:00
import xbmc
import xbmcaddon
2015-03-13 21:24:59 +00:00
#################################################################################################
_ADDON = xbmcaddon.Addon(id='plugin.video.emby')
_CWD = _ADDON.getAddonInfo('path').decode('utf-8')
_BASE_LIB = xbmc.translatePath(os.path.join(_CWD, 'resources', 'lib')).decode('utf-8')
sys.path.append(_BASE_LIB)
2015-03-13 21:24:59 +00:00
#################################################################################################
import userclient
import clientinfo
import initialsetup
import kodimonitor
import librarysync
2016-09-09 03:13:25 +00:00
import loghandler
import player
import videonodes
import websocket_client as wsc
from utils import window, settings, dialog, language as lang
#################################################################################################
loghandler.config()
log = logging.getLogger("EMBY.service")
2015-04-06 17:17:32 +00:00
#################################################################################################
class Service(object):
2015-05-03 05:27:43 +00:00
welcome_msg = True
2015-05-03 05:27:43 +00:00
server_online = True
warn_auth = True
userclient_running = False
websocket_running = False
library_running = False
kodimonitor_running = False
def __init__(self):
2016-09-07 07:14:02 +00:00
self.client_info = clientinfo.ClientInfo()
self.addon_name = self.client_info.get_addon_name()
log_level = settings('logLevel')
self.monitor = xbmc.Monitor()
2016-09-07 07:14:02 +00:00
window('emby_logLevel', value=str(log_level))
2016-06-16 05:43:36 +00:00
window('emby_kodiProfile', value=xbmc.translatePath('special://profile'))
context_menu = "true" if settings('enableContext') == "true" else ""
window('emby_context', value=context_menu)
2015-03-13 21:24:59 +00:00
# Initial logging
2016-09-07 07:14:02 +00:00
log.warn("======== START %s ========", self.addon_name)
log.warn("Python Version: %s", sys.version)
2016-09-07 07:14:02 +00:00
log.warn("Platform: %s", self.client_info.get_platform())
log.warn("KODI Version: %s", xbmc.getInfoLabel('System.BuildVersion'))
2016-09-07 07:14:02 +00:00
log.warn("%s Version: %s", self.addon_name, self.client_info.get_version())
log.warn("Using plugin paths: %s", settings('useDirectPaths') == "0")
2016-09-07 07:14:02 +00:00
log.warn("Log Level: %s", log_level)
# Reset window props for profile switch
properties = [
"emby_online", "emby_serverStatus", "emby_onWake",
"emby_syncRunning", "emby_dbCheck", "emby_kodiScan",
"emby_shouldStop", "emby_currUser", "emby_dbScan", "emby_sessionId",
"emby_initialScan", "emby_customplaylist", "emby_playbackProps"
]
for prop in properties:
2016-02-02 23:49:22 +00:00
window(prop, clear=True)
# Clear video nodes properties
videonodes.VideoNodes().clearProperties()
# Set the minimum database version
2016-02-02 23:49:22 +00:00
window('emby_minDBVersion', value="1.1.63")
2015-04-06 17:17:32 +00:00
2016-09-07 07:14:02 +00:00
def service_entry_point(self):
2016-02-02 23:49:22 +00:00
# Important: Threads depending on abortRequest will not trigger
# if profile switch happens more than once.
monitor = self.monitor
2016-06-16 05:43:36 +00:00
kodiProfile = xbmc.translatePath('special://profile')
# Server auto-detect
initialsetup.InitialSetup().setup()
# Initialize important threads
user = userclient.UserClient()
2016-09-09 03:13:25 +00:00
ws = wsc.WebSocketClient()
library = librarysync.LibrarySync()
kplayer = player.Player()
# Sync and progress report
lastProgressUpdate = datetime.today()
while not monitor.abortRequested():
2015-05-03 05:27:43 +00:00
2016-02-02 23:49:22 +00:00
if window('emby_kodiProfile') != kodiProfile:
# Profile change happened, terminate this thread and others
log.info("Kodi profile was: %s and changed to: %s. Terminating old Emby thread.",
kodiProfile, window('emby_kodiProfile'))
break
# Before proceeding, need to make sure:
# 1. Server is online
# 2. User is set
# 3. User has access to the server
2016-02-02 23:49:22 +00:00
if window('emby_online') == "true":
# Emby server is online
# Verify if user is set and has access to the server
if user.get_user() is not None and user.get_access():
# If an item is playing
if xbmc.Player().isPlaying():
try:
# Update and report progress
playtime = xbmc.Player().getTime()
totalTime = xbmc.Player().getTotalTime()
currentFile = kplayer.currentFile
# Update positionticks
if kplayer.played_info.get(currentFile) is not None:
kplayer.played_info[currentFile]['currentPosition'] = playtime
td = datetime.today() - lastProgressUpdate
secDiff = td.seconds
# Report progress to Emby server
if (secDiff > 3):
kplayer.reportPlayback()
lastProgressUpdate = datetime.today()
2016-02-02 23:49:22 +00:00
elif window('emby_command') == "true":
# Received a remote control command that
# requires updating immediately
2016-02-02 23:49:22 +00:00
window('emby_command', clear=True)
kplayer.reportPlayback()
lastProgressUpdate = datetime.today()
except Exception:
log.exception("Exception in Playback Monitor Service")
else:
# Start up events
self.warn_auth = True
2016-06-16 05:43:36 +00:00
if settings('connectMsg') == "true" and self.welcome_msg:
# Reset authentication warnings
self.welcome_msg = False
# Get additional users
additionalUsers = settings('additionalUsers')
if additionalUsers:
2016-09-09 06:37:56 +00:00
add = ", %s" % ", ".join(additionalUsers.split(','))
else:
add = ""
dialog(type_="notification",
2016-09-09 03:13:25 +00:00
heading="{emby}",
message=("%s %s%s!"
% (lang(33000), user.get_username().decode('utf-8'),
2016-09-09 03:13:25 +00:00
add.decode('utf-8'))),
2016-09-07 07:14:02 +00:00
icon="{emby}",
time=2000,
sound=False)
# Start monitoring kodi events
if not self.kodimonitor_running:
self.kodimonitor_running = kodimonitor.KodiMonitor()
# Start the Websocket Client
if not self.websocket_running:
self.websocket_running = True
ws.start()
# Start the syncing thread
if not self.library_running:
self.library_running = True
library.start()
else:
if (user.get_user() is None) and self.warn_auth:
# Alert user is not authenticated and suppress future warning
self.warn_auth = False
log.info("Not authenticated yet.")
# User access is restricted.
# Keep verifying until access is granted
# unless server goes offline or Kodi is shut down.
while not user.get_access():
# Verify access with an API call
2016-02-02 23:49:22 +00:00
if window('emby_online') != "true":
# Server went offline
break
if monitor.waitForAbort(5):
# Abort was requested while waiting. We should exit
break
else:
# Wait until Emby server is online
# or Kodi is shut down.
while not monitor.abortRequested():
if user.get_server() is None:
# No server info set in add-on settings
2015-05-03 05:27:43 +00:00
pass
elif not user.verify_server():
# Server is offline.
# Alert the user and suppress future warning
2015-05-03 05:27:43 +00:00
if self.server_online:
log.info("Server is offline.")
2016-02-02 23:49:22 +00:00
window('emby_online', value="false")
if settings('offlineMsg') == "true":
dialog(type_="notification",
heading=lang(33001),
2016-09-07 07:14:02 +00:00
message="%s %s" % (self.addon_name, lang(33002)),
icon="{emby}",
sound=False)
2016-09-07 07:14:02 +00:00
2015-05-03 05:27:43 +00:00
self.server_online = False
elif window('emby_online') == "sleep":
# device going to sleep
if self.websocket_running:
2016-09-07 07:14:02 +00:00
ws.stop_client()
2016-09-09 03:13:25 +00:00
ws = wsc.WebSocketClient()
self.websocket_running = False
if self.library_running:
library.stopThread()
library = librarysync.LibrarySync()
self.library_running = 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 offline when Kodi started.
2015-05-03 05:27:43 +00:00
# Wait for server to be fully established.
if monitor.waitForAbort(5):
2015-05-03 05:27:43 +00:00
# Abort was requested while waiting.
break
# Alert the user that server is online.
dialog(type_="notification",
2016-09-09 03:13:25 +00:00
heading="{emby}",
message=lang(33003),
2016-09-07 07:14:02 +00:00
icon="{emby}",
time=2000,
sound=False)
2015-05-03 05:27:43 +00:00
self.server_online = True
log.info("Server is online and ready.")
2016-02-02 23:49:22 +00:00
window('emby_online', value="true")
# Start the userclient thread
if not self.userclient_running:
self.userclient_running = True
2015-05-03 05:27:43 +00:00
user.start()
2015-05-03 05:27:43 +00:00
break
if monitor.waitForAbort(1):
2015-05-03 05:27:43 +00:00
# Abort was requested while waiting.
break
if monitor.waitForAbort(1):
# Abort was requested while waiting. We should exit
break
##### Emby thread is terminating. #####
2016-02-17 08:13:37 +00:00
if self.userclient_running:
user.stop_client()
if self.library_running:
library.stopThread()
2015-04-03 10:13:01 +00:00
if self.websocket_running:
2016-09-07 07:14:02 +00:00
ws.stop_client()
2015-05-03 05:27:43 +00:00
2016-09-07 07:14:02 +00:00
log.warn("======== STOP %s ========", self.addon_name)
2015-05-17 12:11:50 +00:00
2016-09-09 03:13:25 +00:00
if __name__ == "__main__":
# Delay option
DELAY = int(settings('startupDelay'))
log.warn("Delaying emby startup by: %s sec...", DELAY)
if DELAY and xbmc.Monitor().waitForAbort(DELAY):
# Start the service
log.warn("Abort requested while waiting. Emby for kodi not started.")
else:
Service().service_entry_point()