mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
cdf78de132
- setting in addon settings to turn on the cache feature (now for testing, maybe hidden later) - for all new items the poster and the fanart image will be cached automatically (when setting is on) - added a option to the plugin root options to perform full cache fill which will pull every single image to the cache.
87 lines
2.1 KiB
Python
87 lines
2.1 KiB
Python
import xbmcaddon
|
|
import xbmcplugin
|
|
import xbmc
|
|
import xbmcgui
|
|
import xbmcvfs
|
|
import os, sys
|
|
|
|
|
|
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
|
|
cwd = addonSettings.getAddonInfo('path')
|
|
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( cwd, 'resources', 'lib' ) )
|
|
sys.path.append(BASE_RESOURCE_PATH)
|
|
|
|
|
|
|
|
import Entrypoint as entrypoint
|
|
import Utils as utils
|
|
|
|
|
|
try:
|
|
params = utils.get_params(sys.argv[2])
|
|
mode = params['mode']
|
|
id = params.get('id', None)
|
|
name = params.get('name',None)
|
|
except:
|
|
params = {}
|
|
mode = None
|
|
|
|
##### Play items via plugin://plugin.video.emby/ #####
|
|
if mode == "play" or mode == "playnow":
|
|
entrypoint.doPlayback(id)
|
|
|
|
##### DO DATABASE RESET #####
|
|
elif mode == "reset":
|
|
utils.reset()
|
|
|
|
#### DO RESET AUTH #####
|
|
elif mode == "resetauth":
|
|
entrypoint.resetAuth()
|
|
|
|
elif mode == "adduser":
|
|
entrypoint.addUser()
|
|
|
|
elif mode == "settings":
|
|
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.emby)')
|
|
|
|
elif mode == "manualsync":
|
|
from LibrarySync import LibrarySync
|
|
LibrarySync().FullLibrarySync(True)
|
|
|
|
elif mode == "texturecache":
|
|
from TextureCache import TextureCache
|
|
TextureCache().FullTextureCacheSync()
|
|
|
|
##### BROWSE EMBY CHANNELS ROOT #####
|
|
elif mode == "channels":
|
|
entrypoint.BrowseChannels(id)
|
|
|
|
##### BROWSE EMBY CHANNELS FOLDER #####
|
|
elif mode == "channelsfolder":
|
|
folderid = params['folderid']
|
|
entrypoint.BrowseChannels(id,folderid)
|
|
|
|
##### GET NEXTUP EPISODES FOR TAGNAME #####
|
|
elif mode == "nextup":
|
|
limit = int(params['limit'])
|
|
entrypoint.getNextUpEpisodes(id, limit)
|
|
|
|
##### GET INPROGRESS EPISODES FOR TAGNAME #####
|
|
elif mode == "inprogressepisodes":
|
|
limit = int(params['limit'])
|
|
entrypoint.getInProgressEpisodes(id, limit)
|
|
|
|
##### GET RECENT EPISODES FOR TAGNAME #####
|
|
elif mode == "recentepisodes":
|
|
limit = int(params['limit'])
|
|
entrypoint.getRecentEpisodes(id, limit)
|
|
|
|
##### GET EXTRAFANART FOR LISTITEM #####
|
|
elif "extrafanart" in sys.argv[0]:
|
|
entrypoint.getExtraFanArt()
|
|
|
|
##### SHOW ADDON NODES LISTING #####
|
|
if mode is None:
|
|
entrypoint.doMainListing()
|
|
|
|
|