jellyfin-kodi/default.py

68 lines
1.5 KiB
Python
Raw Normal View History

2015-03-13 21:24:59 +00:00
import xbmcaddon
import xbmcplugin
import xbmc
import xbmcgui
2015-05-03 15:39:12 +00:00
import xbmcvfs
import os, sys
2015-03-13 21:24:59 +00:00
2015-03-25 17:37:21 +00:00
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
2015-03-13 21:24:59 +00:00
cwd = addonSettings.getAddonInfo('path')
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( cwd, 'resources', 'lib' ) )
sys.path.append(BASE_RESOURCE_PATH)
2015-05-03 15:39:12 +00:00
2015-03-13 21:24:59 +00:00
import MainModule as mainModule
2015-03-13 21:24:59 +00:00
import Utils as utils
2015-03-13 21:24:59 +00:00
try:
params = utils.get_params(sys.argv[2])
mode = params['mode']
2015-05-04 21:42:21 +00:00
id = params.get('id', None)
except:
params = {}
mode = None
##### Play items via plugin://plugin.video.emby/ #####
if mode == "play":
mainModule.doPlayback(id)
2015-03-18 17:54:30 +00:00
##### DO DATABASE RESET #####
elif mode == "reset":
utils.reset()
#### DO RESET AUTH #####
2015-05-05 00:03:46 +00:00
elif mode == "resetauth":
mainModule.resetAuth()
##### BROWSE EMBY CHANNELS ROOT #####
elif mode == "channels":
mainModule.BrowseChannels(id)
##### BROWSE EMBY CHANNELS FOLDER #####
elif mode == "channelsfolder":
folderid = params['folderid']
mainModule.BrowseChannels(id,folderid)
##### GET NEXTUP EPISODES FOR TAGNAME #####
elif mode == "nextup":
limit = int(params['limit'])
mainModule.getNextUpEpisodes(id, limit)
2015-05-04 22:24:41 +00:00
##### GET EXTRAFANART FOR LISTITEM #####
2015-05-03 15:39:12 +00:00
elif "extrafanart" in sys.argv[0]:
mainModule.getExtraFanArt()
2015-05-03 15:39:12 +00:00
##### SHOW ADDON SETTINGS #####
2015-05-05 02:53:21 +00:00
else:
#open the addon settings if the addon is called directly from video addons
try:
if "content_type" in sys.argv[2]:
xbmc.executebuiltin('Addon.OpenSettings(plugin.video.emby)')
except: pass
2015-03-13 21:24:59 +00:00