added sync settings
improved performance by getting all kodi movies at once instead of 1 by 1 movies section = finished, TV section work in progress
This commit is contained in:
parent
f77cef5aca
commit
dc13c6996d
5 changed files with 216 additions and 167 deletions
|
@ -101,6 +101,8 @@ class CreateFiles():
|
||||||
|
|
||||||
SubElement(root, "thumb").text = API().getArtwork(item, "Primary")
|
SubElement(root, "thumb").text = API().getArtwork(item, "Primary")
|
||||||
SubElement(root, "fanart").text = API().getArtwork(item, "Backdrop")
|
SubElement(root, "fanart").text = API().getArtwork(item, "Backdrop")
|
||||||
|
|
||||||
|
|
||||||
SubElement(root, "title").text = utils.convertEncoding(item["Name"])
|
SubElement(root, "title").text = utils.convertEncoding(item["Name"])
|
||||||
SubElement(root, "originaltitle").text = utils.convertEncoding(item["Name"])
|
SubElement(root, "originaltitle").text = utils.convertEncoding(item["Name"])
|
||||||
SubElement(root, "sorttitle").text = utils.convertEncoding(item["SortName"])
|
SubElement(root, "sorttitle").text = utils.convertEncoding(item["SortName"])
|
||||||
|
@ -168,7 +170,7 @@ class CreateFiles():
|
||||||
|
|
||||||
if studios != None:
|
if studios != None:
|
||||||
for studio in studios:
|
for studio in studios:
|
||||||
SubElement(root, "studio").text = utils.convertEncoding(studio)
|
SubElement(root, "studio").text = utils.convertEncoding(studio).replace("/", "&")
|
||||||
|
|
||||||
if item.get("ProductionLocations") != None:
|
if item.get("ProductionLocations") != None:
|
||||||
for country in item.get("ProductionLocations"):
|
for country in item.get("ProductionLocations"):
|
||||||
|
|
|
@ -29,11 +29,11 @@ dataPath = os.path.join(addondir,"library")
|
||||||
movieLibrary = os.path.join(dataPath,'movies')
|
movieLibrary = os.path.join(dataPath,'movies')
|
||||||
tvLibrary = os.path.join(dataPath,'tvshows')
|
tvLibrary = os.path.join(dataPath,'tvshows')
|
||||||
|
|
||||||
sleepVal = 10
|
sleepVal = 20
|
||||||
showProgress = True
|
showProgress = True
|
||||||
|
|
||||||
processMovies = True
|
processMovies = True
|
||||||
processTvShows = True
|
processTvShows = False
|
||||||
|
|
||||||
|
|
||||||
class LibrarySync():
|
class LibrarySync():
|
||||||
|
@ -44,90 +44,80 @@ class LibrarySync():
|
||||||
WINDOW.setProperty("librarysync", "busy")
|
WINDOW.setProperty("librarysync", "busy")
|
||||||
pDialog = None
|
pDialog = None
|
||||||
|
|
||||||
|
#set some variable to check if this is the first run
|
||||||
|
startupDone = False
|
||||||
|
startupStr = WINDOW.getProperty("startup")
|
||||||
|
if startupStr == "done":
|
||||||
|
startupDone = True
|
||||||
|
|
||||||
|
#are we running startup sync or background sync ?
|
||||||
|
if not startupDone:
|
||||||
|
syncOption = addon.getSetting("syncSettingStartup")
|
||||||
|
else:
|
||||||
|
syncOption = addon.getSetting("syncSettingBackground")
|
||||||
|
|
||||||
|
#what sync method to perform ?
|
||||||
|
if syncOption == "Full Sync":
|
||||||
|
self.MoviesSync(True)
|
||||||
|
if syncOption == "Incremental Sync":
|
||||||
|
self.MoviesSync(False)
|
||||||
|
|
||||||
|
WINDOW.setProperty("startup", "done")
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
def MoviesSync(self, fullsync=True):
|
||||||
|
|
||||||
|
WINDOW = xbmcgui.Window( 10000 )
|
||||||
|
WINDOW.setProperty("librarysync", "busy")
|
||||||
|
pDialog = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
|
|
||||||
if(showProgress):
|
if(addon.getSetting("enableProgressFullSync")):
|
||||||
pDialog = xbmcgui.DialogProgressBG()
|
pDialog = xbmcgui.DialogProgressBG()
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
pDialog.create('Sync DB', 'Sync DB')
|
pDialog.create('Sync DB', 'Sync DB')
|
||||||
|
|
||||||
updateNeeded = False
|
allEmbyMovieIds = list()
|
||||||
|
|
||||||
#process full movies sync
|
views = ReadEmbyDB().getCollections("movies")
|
||||||
if processMovies:
|
|
||||||
allMovies = list()
|
|
||||||
|
|
||||||
views = ReadEmbyDB().getCollections("movies")
|
for view in views:
|
||||||
for view in views:
|
|
||||||
|
|
||||||
movieData = ReadEmbyDB().getMovies(view.get('id'), True)
|
updateNeeded = False
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
#process new movies
|
||||||
return True
|
allMB3Movies = ReadEmbyDB().getMovies(view.get('id'), True, fullsync)
|
||||||
|
allKodiIds = set(ReadKodiDB().getKodiMoviesIds(True))
|
||||||
if(movieData == None):
|
|
||||||
return False
|
|
||||||
|
|
||||||
if(pDialog != None):
|
|
||||||
pDialog.update(0, "Sync DB : Processing " + view.get('title'))
|
|
||||||
total = len(movieData) + 1
|
|
||||||
count = 1
|
|
||||||
|
|
||||||
for item in movieData:
|
|
||||||
xbmc.sleep(sleepVal)
|
|
||||||
if not item.get('IsFolder'):
|
|
||||||
kodiItem = ReadKodiDB().getKodiMovie(item["Id"])
|
|
||||||
allMovies.append(item["Id"])
|
|
||||||
progMessage = "Processing"
|
|
||||||
item['Tag'] = []
|
|
||||||
item['Tag'].append(view.get('title'))
|
|
||||||
if kodiItem == None:
|
|
||||||
WriteKodiDB().addMovieToKodiLibrary(item)
|
|
||||||
updateNeeded = True
|
|
||||||
progMessage = "Adding"
|
|
||||||
else:
|
|
||||||
WriteKodiDB().updateMovieToKodiLibrary(item, kodiItem)
|
|
||||||
progMessage = "Updating"
|
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
|
||||||
return True
|
|
||||||
|
|
||||||
# update progress bar
|
|
||||||
if(pDialog != None):
|
|
||||||
percentage = int(((float(count) / float(total)) * 100))
|
|
||||||
pDialog.update(percentage, message=progMessage + " Movie: " + str(count))
|
|
||||||
count += 1
|
|
||||||
|
|
||||||
#process full tv shows sync
|
|
||||||
if processTvShows:
|
|
||||||
allTVShows = list()
|
|
||||||
allEpisodes = list()
|
|
||||||
tvShowData = ReadEmbyDB().getTVShows(True)
|
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if (tvShowData == None):
|
if(allMB3Movies == None):
|
||||||
return
|
return False
|
||||||
|
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
pDialog.update(0, "Sync DB : Processing TV Shows")
|
pDialog.update(0, "Sync DB : Processing " + view.get('title'))
|
||||||
total = len(tvShowData) + 1
|
total = len(allMB3Movies) + 1
|
||||||
count = 0
|
count = 1
|
||||||
|
|
||||||
for item in tvShowData:
|
for item in allMB3Movies:
|
||||||
xbmc.sleep(sleepVal)
|
|
||||||
if item.get('IsFolder'):
|
if not item.get('IsFolder'):
|
||||||
kodiItem = ReadKodiDB().getKodiTVShow(item["Id"])
|
allEmbyMovieIds.append(item["Id"])
|
||||||
allTVShows.append(item["Id"])
|
progMessage = "Updating movies"
|
||||||
progMessage = "Processing"
|
item['Tag'] = []
|
||||||
if kodiItem == None:
|
item['Tag'].append(view.get('title'))
|
||||||
WriteKodiDB().addTVShowToKodiLibrary(item)
|
|
||||||
|
if item["Id"] not in allKodiIds:
|
||||||
|
xbmc.sleep(sleepVal)
|
||||||
|
WriteKodiDB().addMovieToKodiLibrary(item)
|
||||||
updateNeeded = True
|
updateNeeded = True
|
||||||
progMessage = "Adding"
|
progMessage = "Adding"
|
||||||
else:
|
|
||||||
WriteKodiDB().updateTVShowToKodiLibrary(item, kodiItem)
|
if(self.ShouldStop()):
|
||||||
progMessage = "Updating"
|
return True
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
return True
|
return True
|
||||||
|
@ -135,50 +125,34 @@ class LibrarySync():
|
||||||
# update progress bar
|
# update progress bar
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
percentage = int(((float(count) / float(total)) * 100))
|
percentage = int(((float(count) / float(total)) * 100))
|
||||||
pDialog.update(percentage, message=progMessage + " Tv Show: " + str(count))
|
pDialog.update(percentage, message=progMessage + " Movie: " + str(count))
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
#initiate library update and wait for finish before processing any updates
|
||||||
|
if updateNeeded:
|
||||||
|
self.doKodiLibraryUpdate()
|
||||||
|
|
||||||
#process episodes (will only be possible when tv show is scanned to library)
|
if(self.ShouldStop()):
|
||||||
#TODO --> maybe pull full info only when needed ?
|
return True
|
||||||
allEpisodes = list()
|
|
||||||
|
|
||||||
for tvshow in allTVShows:
|
#process updates
|
||||||
|
allKodiMovies = ReadKodiDB().getKodiMovies(True)
|
||||||
|
for item in allMB3Movies:
|
||||||
|
|
||||||
episodeData = ReadEmbyDB().getEpisodes(tvshow,True)
|
if not item.get('IsFolder'):
|
||||||
kodiEpisodes = ReadKodiDB().getKodiEpisodes(tvshow)
|
progMessage = "Updating movies"
|
||||||
|
item['Tag'] = []
|
||||||
|
item['Tag'].append(view.get('title'))
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
progMessage = "Updating"
|
||||||
return True
|
|
||||||
|
|
||||||
if(pDialog != None):
|
for kodimovie in allKodiMovies:
|
||||||
pDialog.update(0, "Sync DB : Processing Episodes")
|
if item["Id"] in kodimovie["file"]:
|
||||||
total = len(episodeData) + 1
|
WriteKodiDB().updateMovieToKodiLibrary(item,kodimovie)
|
||||||
count = 0
|
break
|
||||||
|
|
||||||
#we have to compare the lists somehow
|
if(self.ShouldStop()):
|
||||||
for item in episodeData:
|
return True
|
||||||
xbmc.sleep(sleepVal)
|
|
||||||
comparestring1 = str(item.get("ParentIndexNumber")) + "-" + str(item.get("IndexNumber"))
|
|
||||||
matchFound = False
|
|
||||||
progMessage = "Processing"
|
|
||||||
if kodiEpisodes != None:
|
|
||||||
for KodiItem in kodiEpisodes:
|
|
||||||
|
|
||||||
allEpisodes.append(KodiItem["episodeid"])
|
|
||||||
comparestring2 = str(KodiItem["season"]) + "-" + str(KodiItem["episode"])
|
|
||||||
if comparestring1 == comparestring2:
|
|
||||||
#match found - update episode
|
|
||||||
WriteKodiDB().updateEpisodeToKodiLibrary(item,KodiItem,tvshow)
|
|
||||||
matchFound = True
|
|
||||||
progMessage = "Updating"
|
|
||||||
|
|
||||||
if not matchFound:
|
|
||||||
#no match so we have to create it
|
|
||||||
print "episode not found...creating it: "
|
|
||||||
WriteKodiDB().addEpisodeToKodiLibrary(item,tvshow)
|
|
||||||
updateNeeded = True
|
|
||||||
progMessage = "Adding"
|
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
return True
|
return True
|
||||||
|
@ -186,11 +160,9 @@ class LibrarySync():
|
||||||
# update progress bar
|
# update progress bar
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
percentage = int(((float(count) / float(total)) * 100))
|
percentage = int(((float(count) / float(total)) * 100))
|
||||||
pDialog.update(percentage, message=progMessage + " Episode: " + str(count))
|
pDialog.update(percentage, message=progMessage + " Movie: " + str(count))
|
||||||
count += 1
|
count += 1
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
pDialog.update(0, message="Removing Deleted Items")
|
pDialog.update(0, message="Removing Deleted Items")
|
||||||
|
|
||||||
|
@ -199,36 +171,26 @@ class LibrarySync():
|
||||||
|
|
||||||
cleanNeeded = False
|
cleanNeeded = False
|
||||||
|
|
||||||
# process deletes for movies
|
# process any deletes only at fullsync
|
||||||
if processMovies:
|
if fullsync:
|
||||||
allLocaldirs, filesMovies = xbmcvfs.listdir(movieLibrary)
|
allKodiIds = ReadKodiDB().getKodiMoviesIds(True)
|
||||||
allMB3Movies = set(allMovies)
|
allEmbyMovieIds = set(allEmbyMovieIds)
|
||||||
for dir in allLocaldirs:
|
for kodiId in allKodiIds:
|
||||||
if not dir in allMB3Movies:
|
if not kodiId in allEmbyMovieIds:
|
||||||
|
xbmc.sleep(sleepVal)
|
||||||
|
print "delete needed for: " + kodiId
|
||||||
WriteKodiDB().deleteMovieFromKodiLibrary(dir)
|
WriteKodiDB().deleteMovieFromKodiLibrary(dir)
|
||||||
cleanneeded = True
|
cleanNeeded = True
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
|
||||||
return True
|
|
||||||
|
|
||||||
# process deletes for episodes
|
|
||||||
if processTvShows:
|
|
||||||
# TODO --> process deletes for episodes !!!
|
|
||||||
allLocaldirs, filesTVShows = xbmcvfs.listdir(tvLibrary)
|
|
||||||
allMB3TVShows = set(allTVShows)
|
|
||||||
for dir in allLocaldirs:
|
|
||||||
if not dir in allMB3TVShows:
|
|
||||||
WriteKodiDB().deleteTVShowFromKodiLibrary(dir)
|
|
||||||
cleanneeded = True
|
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
#initiate library clean and wait for finish before processing any updates
|
||||||
if cleanNeeded:
|
if cleanNeeded:
|
||||||
WINDOW.setProperty("cleanNeeded", "true")
|
doKodiLibraryUpdate(True)
|
||||||
|
|
||||||
if updateNeeded:
|
if(self.ShouldStop()):
|
||||||
WINDOW.setProperty("updateNeeded", "true")
|
return True
|
||||||
|
|
||||||
finally:
|
finally:
|
||||||
WINDOW.clearProperty("librarysync")
|
WINDOW.clearProperty("librarysync")
|
||||||
|
@ -237,6 +199,18 @@ class LibrarySync():
|
||||||
|
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
def doKodiLibraryUpdate(self,clean=False):
|
||||||
|
#initiate library update and wait for finish before processing any updates
|
||||||
|
if clean:
|
||||||
|
xbmc.executebuiltin("CleanLibrary(video)")
|
||||||
|
else:
|
||||||
|
xbmc.executebuiltin("UpdateLibrary(video)")
|
||||||
|
xbmc.sleep(1000)
|
||||||
|
while (xbmc.getCondVisibility("Library.IsScanningVideo")):
|
||||||
|
if(self.ShouldStop()):
|
||||||
|
return True
|
||||||
|
xbmc.sleep(250)
|
||||||
|
|
||||||
def updatePlayCounts(self):
|
def updatePlayCounts(self):
|
||||||
#update all playcounts from MB3 to Kodi library
|
#update all playcounts from MB3 to Kodi library
|
||||||
|
|
||||||
|
@ -245,7 +219,7 @@ class LibrarySync():
|
||||||
pDialog = None
|
pDialog = None
|
||||||
|
|
||||||
try:
|
try:
|
||||||
if(showProgress):
|
if(addon.getSetting("enableProgressPlayCountSync")):
|
||||||
pDialog = xbmcgui.DialogProgressBG()
|
pDialog = xbmcgui.DialogProgressBG()
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
pDialog.create('Sync PlayCounts', 'Sync PlayCounts')
|
pDialog.create('Sync PlayCounts', 'Sync PlayCounts')
|
||||||
|
@ -254,20 +228,20 @@ class LibrarySync():
|
||||||
if processMovies:
|
if processMovies:
|
||||||
views = ReadEmbyDB().getCollections("movies")
|
views = ReadEmbyDB().getCollections("movies")
|
||||||
for view in views:
|
for view in views:
|
||||||
movieData = ReadEmbyDB().getMovies(view.get('id'),False)
|
allMB3Movies = ReadEmbyDB().getMovies(view.get('id'),False)
|
||||||
|
|
||||||
if(self.ShouldStop()):
|
if(self.ShouldStop()):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
if(movieData == None):
|
if(allMB3Movies == None):
|
||||||
return False
|
return False
|
||||||
|
|
||||||
if(pDialog != None):
|
if(pDialog != None):
|
||||||
pDialog.update(0, "Sync PlayCounts: Processing Movies")
|
pDialog.update(0, "Sync PlayCounts: Processing Movies")
|
||||||
totalCount = len(movieData) + 1
|
totalCount = len(allMB3Movies) + 1
|
||||||
count = 1
|
count = 1
|
||||||
|
|
||||||
for item in movieData:
|
for item in allMB3Movies:
|
||||||
xbmc.sleep(sleepVal)
|
xbmc.sleep(sleepVal)
|
||||||
if not item.get('IsFolder'):
|
if not item.get('IsFolder'):
|
||||||
kodiItem = ReadKodiDB().getKodiMovie(item["Id"])
|
kodiItem = ReadKodiDB().getKodiMovie(item["Id"])
|
||||||
|
|
|
@ -12,7 +12,7 @@ from DownloadUtils import DownloadUtils
|
||||||
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
||||||
|
|
||||||
class ReadEmbyDB():
|
class ReadEmbyDB():
|
||||||
def getMovies(self, id, fullinfo = False):
|
def getMovies(self, id, fullinfo = False, fullSync = True):
|
||||||
result = None
|
result = None
|
||||||
|
|
||||||
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
||||||
|
@ -23,10 +23,15 @@ class ReadEmbyDB():
|
||||||
downloadUtils = DownloadUtils()
|
downloadUtils = DownloadUtils()
|
||||||
userid = downloadUtils.getUserId()
|
userid = downloadUtils.getUserId()
|
||||||
|
|
||||||
if fullinfo:
|
if not fullSync:
|
||||||
url = server + '/mediabrowser/Users/' + userid + '/items?ParentId=' + id + '&SortBy=SortName&Fields=Path,Genres,SortName,Studios,Writer,ProductionYear,Taglines,CommunityRating,OfficialRating,CumulativeRunTimeTicks,Metascore,AirTime,DateCreated,MediaStreams,People,Overview&Recursive=true&SortOrder=Ascending&IncludeItemTypes=Movie&CollapseBoxSetItems=false&format=json&ImageTypeLimit=1'
|
sortstring = "?Limit=20&SortBy=DateCreated"
|
||||||
else:
|
else:
|
||||||
url = server + '/mediabrowser/Users/' + userid + '/items?ParentId=' + id + '&SortBy=SortName&Fields=CumulativeRunTimeTicks&Recursive=true&SortOrder=Ascending&IncludeItemTypes=Movie&CollapseBoxSetItems=false&format=json&ImageTypeLimit=1'
|
sortstring = "&SortBy=SortName"
|
||||||
|
|
||||||
|
if fullinfo:
|
||||||
|
url = server + '/mediabrowser/Users/' + userid + '/items?ParentId=' + id + sortstring + '&Fields=Path,Genres,SortName,Studios,Writer,ProductionYear,Taglines,CommunityRating,OfficialRating,CumulativeRunTimeTicks,Metascore,AirTime,DateCreated,MediaStreams,People,Overview&Recursive=true&SortOrder=Descending&IncludeItemTypes=Movie&CollapseBoxSetItems=false&format=json&ImageTypeLimit=1'
|
||||||
|
else:
|
||||||
|
url = server + '/mediabrowser/Users/' + userid + '/items?ParentId=' + id + sortstring + '&Fields=CumulativeRunTimeTicks&Recursive=true&SortOrder=Descending&IncludeItemTypes=Movie&CollapseBoxSetItems=false&format=json&ImageTypeLimit=1'
|
||||||
|
|
||||||
jsonData = downloadUtils.downloadUrl(url, suppress=True, popup=0)
|
jsonData = downloadUtils.downloadUrl(url, suppress=True, popup=0)
|
||||||
if jsonData != None and jsonData != "":
|
if jsonData != None and jsonData != "":
|
||||||
|
|
|
@ -7,9 +7,17 @@ import xbmc
|
||||||
import xbmcgui
|
import xbmcgui
|
||||||
import xbmcaddon
|
import xbmcaddon
|
||||||
import json
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
addon = xbmcaddon.Addon(id='plugin.video.mb3sync')
|
||||||
|
addondir = xbmc.translatePath(addon.getAddonInfo('profile'))
|
||||||
|
dataPath = os.path.join(addondir,"library")
|
||||||
|
movieLibrary = os.path.join(dataPath,'movies')
|
||||||
|
tvLibrary = os.path.join(dataPath,'tvshows')
|
||||||
|
|
||||||
class ReadKodiDB():
|
class ReadKodiDB():
|
||||||
def getKodiMovie(self, id):
|
def getKodiMovie(self, id):
|
||||||
|
#returns a single movie from Kodi db selected on MB item ID
|
||||||
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": { "filter": {"operator": "contains", "field": "path", "value": "' + id + '"}, "properties" : ["art", "rating", "thumbnail", "resume", "runtime", "year", "genre", "cast", "trailer", "country", "studio", "set", "imdbnumber", "mpaa", "tagline", "plotoutline","plot", "sorttitle", "director", "writer", "playcount", "tag", "file"], "sort": { "order": "ascending", "method": "label", "ignorearticle": true } }, "id": "libMovies"}')
|
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": { "filter": {"operator": "contains", "field": "path", "value": "' + id + '"}, "properties" : ["art", "rating", "thumbnail", "resume", "runtime", "year", "genre", "cast", "trailer", "country", "studio", "set", "imdbnumber", "mpaa", "tagline", "plotoutline","plot", "sorttitle", "director", "writer", "playcount", "tag", "file"], "sort": { "order": "ascending", "method": "label", "ignorearticle": true } }, "id": "libMovies"}')
|
||||||
jsonobject = json.loads(json_response.decode('utf-8','replace'))
|
jsonobject = json.loads(json_response.decode('utf-8','replace'))
|
||||||
movie = None
|
movie = None
|
||||||
|
@ -22,6 +30,43 @@ class ReadKodiDB():
|
||||||
|
|
||||||
return movie
|
return movie
|
||||||
|
|
||||||
|
def getKodiMovies(self,fullInfo = False):
|
||||||
|
#returns all movies in Kodi db inserted by MB
|
||||||
|
if fullInfo:
|
||||||
|
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": { "filter": {"operator": "contains", "field": "path", "value": "plugin.video.mb3sync"}, "properties" : ["art", "rating", "thumbnail", "resume", "runtime", "year", "genre", "cast", "trailer", "country", "studio", "set", "imdbnumber", "mpaa", "tagline", "plotoutline","plot", "sorttitle", "director", "writer", "playcount", "tag", "file"] }, "id": "libMovies"}')
|
||||||
|
else:
|
||||||
|
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetMovies", "params": { "filter": {"operator": "contains", "field": "path", "value": "plugin.video.mb3sync"}, "properties" : ["resume", "playcount", "file"] }, "id": "libMovies"}')
|
||||||
|
jsonobject = json.loads(json_response.decode('utf-8','replace'))
|
||||||
|
movies = None
|
||||||
|
|
||||||
|
if(jsonobject.has_key('result')):
|
||||||
|
result = jsonobject['result']
|
||||||
|
if(result.has_key('movies')):
|
||||||
|
movies = result['movies']
|
||||||
|
|
||||||
|
return movies
|
||||||
|
|
||||||
|
def getKodiMoviesIds(self,returnMB3Ids = False):
|
||||||
|
# returns a list of movieIds or MB3 Id's from all movies currently in the Kodi library
|
||||||
|
allKodiMovies = self.getKodiMovies(False)
|
||||||
|
allKodiMovieIds = list()
|
||||||
|
|
||||||
|
if allKodiMovies != None:
|
||||||
|
for kodimovie in allKodiMovies:
|
||||||
|
if returnMB3Ids:
|
||||||
|
filepath = kodimovie["file"]
|
||||||
|
filepath = filepath.replace(movieLibrary + os.sep, "")
|
||||||
|
filepath = filepath.replace(".strm", "")
|
||||||
|
filepath = filepath.split(os.sep)[0]
|
||||||
|
id = filepath
|
||||||
|
else:
|
||||||
|
id = str(kodimovie["movieid"])
|
||||||
|
allKodiMovieIds.append(id)
|
||||||
|
|
||||||
|
return allKodiMovieIds
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def getKodiTVShow(self, id):
|
def getKodiTVShow(self, id):
|
||||||
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": { "filter": {"operator": "contains", "field": "path", "value": "' + id + '"}, "properties": ["art", "genre", "plot", "mpaa", "cast", "studio", "sorttitle", "title", "originaltitle", "imdbnumber", "year", "premiered", "rating", "thumbnail", "playcount", "file", "fanart"], "sort": { "order": "ascending", "method": "label", "ignorearticle": true } }, "id": "libTvShows"}')
|
json_response = xbmc.executeJSONRPC('{"jsonrpc": "2.0", "method": "VideoLibrary.GetTVShows", "params": { "filter": {"operator": "contains", "field": "path", "value": "' + id + '"}, "properties": ["art", "genre", "plot", "mpaa", "cast", "studio", "sorttitle", "title", "originaltitle", "imdbnumber", "year", "premiered", "rating", "thumbnail", "playcount", "file", "fanart"], "sort": { "order": "ascending", "method": "label", "ignorearticle": true } }, "id": "libTvShows"}')
|
||||||
jsonobject = json.loads(json_response.decode('utf-8','replace'))
|
jsonobject = json.loads(json_response.decode('utf-8','replace'))
|
||||||
|
|
|
@ -1,5 +1,24 @@
|
||||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
<settings>
|
<settings>
|
||||||
|
|
||||||
|
<category label="Manual sync"> <!-- Manual sync options -->
|
||||||
|
<setting label="Run manual full sync now" type="action" action="RunScript(plugin.video.mbsync, fullsync)" />
|
||||||
|
<setting label="Run manual incremental sync now" type="action" action="RunScript(plugin.video.mbsync, incrementalsync)" />
|
||||||
|
<setting label="Reset entire local library" type="action" action="RunScript(plugin.video.mbsync, reset)" />
|
||||||
|
</category>
|
||||||
|
|
||||||
|
<category label="Automatic sync"> <!-- Auto sync optionss -->
|
||||||
|
<setting id="enablePlayCountSync" type="bool" label="Enable watched/resume status sync" default="true" visible="false" enable="true" />
|
||||||
|
<setting id="syncSettingStartup" type="labelenum" label="Run at startup:" values="Full Sync|Incremental Sync|None" default="Full Sync" />
|
||||||
|
<setting id="syncSettingBackground" type="enum" label="Enable continuous background sync:" values="Full Sync|Incremental Sync|None" default="Incremental Sync" visible="true" enable="true" />
|
||||||
|
<setting type="lsep"/>
|
||||||
|
<setting label="[B]Full Sync:[/B] Performs full compare including deletes" type="lsep"/>
|
||||||
|
<setting label="[B]Incremental Sync:[/B] Processes only new items" type="lsep"/>
|
||||||
|
<setting label="Watched/resume status is always synced in the background." type="lsep"/>
|
||||||
|
<setting type="lsep"/>
|
||||||
|
<setting label="Run manual full sync now" type="action" action="RunScript(plugin.video.mbsync, fullsync)" />
|
||||||
|
</category>
|
||||||
|
|
||||||
<category label="30014"> <!-- MediaBrowser -->
|
<category label="30014"> <!-- MediaBrowser -->
|
||||||
<setting id="ipaddress" type="text" label="30000" default="" visible="true" enable="true" />
|
<setting id="ipaddress" type="text" label="30000" default="" visible="true" enable="true" />
|
||||||
<setting id="port" type="text" label="30030" default="8096" visible="true" enable="true" />
|
<setting id="port" type="text" label="30030" default="8096" visible="true" enable="true" />
|
||||||
|
@ -8,10 +27,14 @@
|
||||||
<setting id="password" type="text" option="hidden" label="30025" />
|
<setting id="password" type="text" option="hidden" label="30025" />
|
||||||
</category>
|
</category>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<category label="30022"> <!-- Advanced -->
|
<category label="30022"> <!-- Advanced -->
|
||||||
<setting id="logLevel" type="enum" label="30004" values="None|Info|Debug" default="0" />
|
<setting id="logLevel" type="enum" label="30004" values="None|Info|Debug" default="0" />
|
||||||
<setting id="profile" type="bool" label="30010" default="false" visible="true" enable="true" />
|
<setting id="enableProgressPlayCountSync" type="bool" label="Show load progress for Watched/resume status sync" default="true" visible="false" enable="true" />
|
||||||
<setting id="reportMetrics" type="bool" label="30224" default="true" visible="true" enable="true" />
|
<setting id="enableProgressFullSync" type="bool" label="Show load progress for full/incremental sync" default="true" visible="true" enable="true" />
|
||||||
<setting id="skinMessageIgnored" type="bool" label="30233" default="false" visible="true" enable="true" />
|
|
||||||
</category>
|
</category>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
</settings>
|
</settings>
|
Loading…
Reference in a new issue