55 lines
2.0 KiB
Python
55 lines
2.0 KiB
Python
# coding=utf-8
|
|
import sys
|
|
import xbmc, xbmcaddon, xbmcgui
|
|
import json
|
|
|
|
from resources.lib.common import *
|
|
|
|
def getPluginPath( ltype, location = None ):
|
|
listings = []
|
|
listingsLabels = []
|
|
|
|
if location is not None:
|
|
# If location given, add 'create' item
|
|
listings.append( "::CREATE::" )
|
|
listingsLabels.append( LANGUAGE( 30411 ) )
|
|
else:
|
|
# If no location, build default
|
|
if location is None:
|
|
if ltype.startswith( "video" ):
|
|
location = "addons://sources/video"
|
|
else:
|
|
location = "addons://sources/audio"
|
|
|
|
# Show a waiting dialog, then get the listings for the directory
|
|
dialog = xbmcgui.DialogProgress()
|
|
dialog.create( ADDONNAME, LANGUAGE( 30410 ) )
|
|
|
|
json_query = xbmc.executeJSONRPC('{ "jsonrpc": "2.0", "id": 0, "method": "Files.GetDirectory", "params": { "properties": ["title", "file", "thumbnail", "episode", "showtitle", "season", "album", "artist", "imdbnumber", "firstaired", "mpaa", "trailer", "studio", "art"], "directory": "' + location + '", "media": "files" } }')
|
|
json_response = json.loads(json_query)
|
|
|
|
# Add all directories returned by the json query
|
|
if json_response.get('result') and json_response['result'].get('files') and json_response['result']['files']:
|
|
json_result = json_response['result']['files']
|
|
|
|
for item in json_result:
|
|
if item[ "file" ].startswith( "plugin://" ):
|
|
listings.append( item[ "file" ] )
|
|
listingsLabels.append( "%s >" %( item[ "label" ] ) )
|
|
|
|
# Close progress dialog
|
|
dialog.close()
|
|
|
|
selectedItem = xbmcgui.Dialog().select( LANGUAGE( 30309 ), listingsLabels )
|
|
|
|
if selectedItem == -1:
|
|
# User cancelled
|
|
return None
|
|
|
|
selectedAction = listings[ selectedItem ]
|
|
if selectedAction == "::CREATE::":
|
|
return location
|
|
else:
|
|
# User has chosen a sub-level to display, add details and re-call this function
|
|
return getPluginPath(ltype, selectedAction)
|