mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
aac8229f9b
For now, Kodi will need to be restarted to load from the dynamic package every time there is an update to the package.
56 lines
1.5 KiB
Python
56 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
import logging
|
|
import os
|
|
import sys
|
|
|
|
import xbmc
|
|
import xbmcvfs
|
|
import xbmcaddon
|
|
|
|
#################################################################################################
|
|
|
|
cache = xbmc.translatePath('special://temp/emby').decode('utf-8')
|
|
|
|
if not xbmcvfs.exists(cache):
|
|
xbmcvfs.mkdir(cache)
|
|
|
|
sys.path.insert(0, cache)
|
|
__addon__ = xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('path').decode('utf-8')
|
|
__base__ = xbmc.translatePath(os.path.join(__addon__, 'resources', 'lib')).decode('utf-8')
|
|
sys.path.append(__base__)
|
|
|
|
#################################################################################################
|
|
|
|
from entrypoint import Service
|
|
from helper import settings
|
|
from emby import Emby
|
|
|
|
#################################################################################################
|
|
|
|
LOG = logging.getLogger("EMBY.service")
|
|
DELAY = int(settings('startupDelay') or 0)
|
|
|
|
#################################################################################################
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
LOG.warn("--->[ service ]")
|
|
LOG.warn("Delay startup by %s seconds.", DELAY)
|
|
|
|
session = Service()
|
|
|
|
try:
|
|
if DELAY and xbmc.Monitor().waitForAbort(DELAY):
|
|
raise Exception("Aborted during startup delay")
|
|
|
|
session.service()
|
|
except Exception as error:
|
|
|
|
LOG.exception(error)
|
|
session.shutdown()
|
|
|
|
LOG.warn("---<[ service ]")
|