mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Move removal to context menu
There was a typo in the delete as well. Remove videolibrary.on.remove due to potential issue if clean database runs and user is using plugin paths.
This commit is contained in:
parent
48332fdbb7
commit
228501d99c
2 changed files with 29 additions and 5 deletions
|
@ -27,7 +27,7 @@ import musicutils as musicutils
|
||||||
import api
|
import api
|
||||||
|
|
||||||
def logMsg(msg, lvl=1):
|
def logMsg(msg, lvl=1):
|
||||||
utils.logMsg("%s %s" % ("Emby", "Contextmenu"), msg, lvl)
|
utils.logMsg("%s %s" % ("EMBY", "Contextmenu"), msg, lvl)
|
||||||
|
|
||||||
|
|
||||||
#Kodi contextmenu item to configure the emby settings
|
#Kodi contextmenu item to configure the emby settings
|
||||||
|
@ -127,11 +127,32 @@ if __name__ == '__main__':
|
||||||
|
|
||||||
if options[ret] == utils.language(30409):
|
if options[ret] == utils.language(30409):
|
||||||
#delete item from the server
|
#delete item from the server
|
||||||
if xbmcgui.Dialog().yesno("Do you really want to delete this item ?", "This will delete the item from the server and the file(s) from disk!"):
|
delete = True
|
||||||
|
if utils.settings('skipContextMenu') != "true":
|
||||||
|
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:
|
||||||
|
logMsg("User skipped deletion.", 1)
|
||||||
|
delete = False
|
||||||
|
|
||||||
|
if delete:
|
||||||
import downloadutils
|
import downloadutils
|
||||||
doUtils = downloadutils.DownloadUtils()
|
doUtils = downloadutils.DownloadUtils()
|
||||||
url = "{server}/emby/Items/%s?format=json" % embyid
|
url = "{server}/emby/Items/%s?format=json" % embyid
|
||||||
|
logMsg("Deleting request: %s" % embyid, 0)
|
||||||
doUtils.downloadUrl(url, type="DELETE")
|
doUtils.downloadUrl(url, type="DELETE")
|
||||||
|
|
||||||
|
'''if utils.settings('skipContextMenu') != "true":
|
||||||
|
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()
|
||||||
|
url = "{server}/emby/Items/%s?format=json" % embyid
|
||||||
|
doUtils.downloadUrl(url, type="DELETE")'''
|
||||||
|
|
||||||
xbmc.sleep(500)
|
xbmc.sleep(500)
|
||||||
xbmc.executebuiltin("Container.Update")
|
xbmc.executebuiltin("Container.Update")
|
|
@ -162,8 +162,11 @@ class KodiMonitor(xbmc.Monitor):
|
||||||
|
|
||||||
|
|
||||||
elif method == "VideoLibrary.OnRemove":
|
elif method == "VideoLibrary.OnRemove":
|
||||||
|
# Removed function, because with plugin paths + clean library, it will wipe
|
||||||
try:
|
# entire library if user has permissions. Instead, use the emby context menu available
|
||||||
|
# in Isengard and higher version
|
||||||
|
pass
|
||||||
|
'''try:
|
||||||
kodiid = data['id']
|
kodiid = data['id']
|
||||||
type = data['type']
|
type = data['type']
|
||||||
except (KeyError, TypeError):
|
except (KeyError, TypeError):
|
||||||
|
@ -192,7 +195,7 @@ class KodiMonitor(xbmc.Monitor):
|
||||||
self.logMsg("Deleting request: %s" % itemid)
|
self.logMsg("Deleting request: %s" % itemid)
|
||||||
doUtils.downloadUrl(url, type="DELETE")
|
doUtils.downloadUrl(url, type="DELETE")
|
||||||
finally:
|
finally:
|
||||||
embycursor.close()
|
embycursor.close()'''
|
||||||
|
|
||||||
|
|
||||||
elif method == "System.OnWake":
|
elif method == "System.OnWake":
|
||||||
|
|
Loading…
Reference in a new issue