jellyfin-kodi/contextmenu.py

168 lines
6.8 KiB
Python
Raw Normal View History

2016-04-04 21:21:05 +00:00
# -*- coding: utf-8 -*-
#################################################################################################
import os
import sys
import urlparse
import xbmc
import xbmcaddon
import xbmcgui
2016-06-19 18:30:54 +00:00
#################################################################################################
_addon = xbmcaddon.Addon(id='plugin.video.emby')
_addon_path = _addon.getAddonInfo('path').decode('utf-8')
_base_resource = xbmc.translatePath(os.path.join(_addon_path, 'resources', 'lib')).decode('utf-8')
sys.path.append(_base_resource)
#################################################################################################
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
import api
2016-04-04 21:21:05 +00:00
import artwork
import downloadutils
import librarysync
import read_embyserver as embyserver
import embydb_functions as embydb
import kodidb_functions as kodidb
import musicutils as musicutils
2016-06-20 00:24:42 +00:00
from utils import Logging, settings, language as lang, kodiSQL
2016-06-19 18:30:54 +00:00
log = Logging('ContextMenu').log
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
#################################################################################################
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
# Kodi contextmenu item to configure the emby settings
2016-04-04 21:21:05 +00:00
if __name__ == '__main__':
2016-06-20 00:24:42 +00:00
kodiId = xbmc.getInfoLabel('ListItem.DBID').decode('utf-8')
itemType = xbmc.getInfoLabel('ListItem.DBTYPE').decode('utf-8')
itemId = ""
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
if not itemType:
if xbmc.getCondVisibility("Container.Content(albums)"):
itemType = "album"
elif xbmc.getCondVisibility("Container.Content(artists)"):
itemType = "artist"
elif xbmc.getCondVisibility("Container.Content(songs)"):
itemType = "song"
elif xbmc.getCondVisibility("Container.Content(pictures)"):
itemType = "picture"
else:
log("Itemtype is unknown.")
if (not kodiId or kodiId == "-1") and xbmc.getInfoLabel("ListItem.Property(embyid)"):
itemId = xbmc.getInfoLabel("ListItem.Property(embyid)")
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
elif kodiId and itemType:
2016-06-19 18:30:54 +00:00
embyconn = kodiSQL('emby')
2016-04-04 21:21:05 +00:00
embycursor = embyconn.cursor()
emby_db = embydb.Embydb_Functions(embycursor)
2016-06-20 00:24:42 +00:00
item = emby_db.getItem_byKodiId(kodiId, itemType)
2016-04-04 21:21:05 +00:00
embycursor.close()
2016-06-20 00:24:42 +00:00
try:
itemId = item[0]
except TypeError:
pass
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
log("Found ItemId: %s/Itemtype: %s" % (itemId, itemType), 1)
if itemId:
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
emby = embyserver.Read_EmbyServer()
item = emby.getItem(itemId)
2016-04-04 21:21:05 +00:00
API = api.API(item)
userdata = API.getUserData()
likes = userdata['Likes']
favourite = userdata['Favorite']
2016-06-20 00:24:42 +00:00
options = []
if favourite:
# Remove from emby favourites
2016-06-19 18:30:54 +00:00
options.append(lang(30406))
2016-06-20 00:24:42 +00:00
else:
# Add to emby favourites
options.append(lang(30405))
if itemType == "song":
# Set custom song rating
2016-06-19 18:30:54 +00:00
options.append(lang(30407))
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
# Refresh item
options.append(lang(30410))
# Delete item
2016-06-19 18:30:54 +00:00
options.append(lang(30409))
2016-06-20 00:24:42 +00:00
# Addon settings
2016-06-19 18:30:54 +00:00
options.append(lang(30408))
2016-04-04 21:21:05 +00:00
2016-06-20 00:24:42 +00:00
# Display select dialog and process results
ret = xbmcgui.Dialog().select(lang(30401), options)
2016-04-04 21:21:05 +00:00
if ret != -1:
2016-06-20 00:24:42 +00:00
if options[ret] == lang(30410):
emby.refreshItem(itemId)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30402):
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, deletelike=True)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30403):
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, like=True)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30404):
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, like=False)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30405):
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, favourite=True)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30406):
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, favourite=False)
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30407):
kodiconn = kodiSQL('music')
2016-04-04 21:21:05 +00:00
kodicursor = kodiconn.cursor()
query = ' '.join(("SELECT rating", "FROM song", "WHERE idSong = ?" ))
kodicursor.execute(query, (itemid,))
currentvalue = int(round(float(kodicursor.fetchone()[0]),0))
newvalue = xbmcgui.Dialog().numeric(0, "Set custom song rating (0-5)", str(currentvalue))
if newvalue:
newvalue = int(newvalue)
if newvalue > 5: newvalue = "5"
2016-06-19 18:30:54 +00:00
if settings('enableUpdateSongRating') == "true":
2016-04-04 21:21:05 +00:00
musicutils.updateRatingToFile(newvalue, API.getFilePath())
2016-06-19 18:30:54 +00:00
if settings('enableExportSongRating') == "true":
2016-04-04 21:21:05 +00:00
like, favourite, deletelike = musicutils.getEmbyRatingFromKodiRating(newvalue)
2016-06-20 00:24:42 +00:00
emby.updateUserRating(itemId, like, favourite, deletelike)
2016-04-04 21:21:05 +00:00
query = ' '.join(( "UPDATE song","SET rating = ?", "WHERE idSong = ?" ))
kodicursor.execute(query, (newvalue,itemid,))
kodiconn.commit()
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30408):
2016-04-04 21:21:05 +00:00
#Open addon settings
xbmc.executebuiltin("Addon.OpenSettings(plugin.video.emby)")
2016-06-19 18:30:54 +00:00
if options[ret] == lang(30409):
2016-04-04 21:21:05 +00:00
#delete item from the server
delete = True
2016-06-19 18:30:54 +00:00
if settings('skipContextMenu') != "true":
2016-04-04 21:21:05 +00:00
resp = xbmcgui.Dialog().yesno(
heading="Confirm delete",
line1=("Delete file from Emby Server? This will "
"also delete the file(s) from disk!"))
if not resp:
2016-06-20 00:24:42 +00:00
log("User skipped deletion for: %s." % itemId, 1)
2016-04-04 21:21:05 +00:00
delete = False
if delete:
import downloadutils
doUtils = downloadutils.DownloadUtils()
2016-06-20 00:24:42 +00:00
url = "{server}/emby/Items/%s?format=json" % itemId
2016-06-19 18:30:54 +00:00
log("Deleting request: %s" % embyid, 0)
2016-04-04 21:21:05 +00:00
doUtils.downloadUrl(url, action_type="DELETE")
2016-06-19 18:30:54 +00:00
'''if settings('skipContextMenu') != "true":
2016-04-04 21:21:05 +00:00
if xbmcgui.Dialog().yesno(
heading="Confirm delete",
line1=("Delete file on Emby Server? This will "
"also delete the file(s) from disk!")):
import downloadutils
doUtils = downloadutils.DownloadUtils()
doUtils.downloadUrl("{server}/emby/Items/%s?format=json" % embyid, action_type="DELETE")'''
xbmc.sleep(500)
2016-06-20 00:24:42 +00:00
xbmc.executebuiltin('Container.Update')