PlexKodiConnect/default.py

78 lines
1.7 KiB
Python
Raw Normal View History

2015-03-14 08:24:59 +11:00
import xbmcaddon
import xbmcplugin
import xbmc
import xbmcgui
2015-05-04 01:39:12 +10:00
import xbmcvfs
import os, sys
2015-03-14 08:24:59 +11:00
2015-03-26 04:37:21 +11:00
addonSettings = xbmcaddon.Addon(id='plugin.video.emby')
2015-03-14 08:24:59 +11:00
cwd = addonSettings.getAddonInfo('path')
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( cwd, 'resources', 'lib' ) )
sys.path.append(BASE_RESOURCE_PATH)
2015-05-04 01:39:12 +10:00
2015-03-14 08:24:59 +11:00
import Entrypoint as entrypoint
2015-03-14 08:24:59 +11:00
import Utils as utils
2015-03-14 08:24:59 +11:00
try:
params = utils.get_params(sys.argv[2])
mode = params['mode']
2015-05-05 07:42:21 +10:00
id = params.get('id', None)
name = params.get('name',None)
except:
params = {}
mode = None
##### Play items via plugin://plugin.video.emby/ #####
if mode == "play":
entrypoint.doPlayback(id)
elif mode == "info":
entrypoint.showInfo(id)
elif mode == "person":
entrypoint.showPersonInfo(id,name)
2015-03-19 04:54:30 +11:00
##### DO DATABASE RESET #####
elif mode == "reset":
utils.reset()
#### DO RESET AUTH #####
2015-05-05 10:03:46 +10:00
elif mode == "resetauth":
entrypoint.resetAuth()
elif mode == "adduser":
entrypoint.addUser()
##### 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)
2015-05-05 08:24:41 +10:00
##### GET EXTRAFANART FOR LISTITEM #####
2015-05-04 01:39:12 +10:00
elif "extrafanart" in sys.argv[0]:
entrypoint.getExtraFanArt()
2015-05-04 01:39:12 +10:00
##### SHOW ADDON SETTINGS #####
2015-05-05 12:53:21 +10: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-14 08:24:59 +11:00