2015-03-14 08:24:59 +11:00
|
|
|
#################################################################################################
|
|
|
|
# LibrarySync
|
|
|
|
#################################################################################################
|
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcgui
|
|
|
|
import xbmcaddon
|
|
|
|
import xbmcvfs
|
|
|
|
import json
|
2015-03-14 11:46:54 +11:00
|
|
|
import sqlite3
|
2015-03-17 04:51:49 +11:00
|
|
|
import inspect
|
2015-03-14 08:24:59 +11:00
|
|
|
import threading
|
|
|
|
import urllib
|
|
|
|
from datetime import datetime, timedelta, time
|
|
|
|
import urllib2
|
|
|
|
import os
|
2015-03-14 09:39:35 +11:00
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
from API import API
|
|
|
|
import Utils as utils
|
|
|
|
from DownloadUtils import DownloadUtils
|
2015-03-18 04:51:45 +11:00
|
|
|
from ReadEmbyDB import ReadEmbyDB
|
2015-03-18 05:41:26 +11:00
|
|
|
from ReadKodiDB import ReadKodiDB
|
2015-03-18 06:02:42 +11:00
|
|
|
from WriteKodiDB import WriteKodiDB
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addondir = xbmc.translatePath(xbmcaddon.Addon(id='plugin.video.emby').getAddonInfo('profile'))
|
2015-03-14 08:24:59 +11:00
|
|
|
dataPath = os.path.join(addondir,"library")
|
2015-03-15 09:33:16 +11:00
|
|
|
movieLibrary = os.path.join(dataPath,'movies')
|
|
|
|
tvLibrary = os.path.join(dataPath,'tvshows')
|
2015-03-14 08:24:59 +11:00
|
|
|
|
|
|
|
class LibrarySync():
|
|
|
|
|
|
|
|
def syncDatabase(self):
|
2015-03-15 09:33:16 +11:00
|
|
|
|
2015-03-27 11:16:45 +11:00
|
|
|
#set some variable to check if this is the first run
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-15 09:33:16 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-27 11:16:45 +11:00
|
|
|
startupDone = WINDOW.getProperty("startup") == "done"
|
|
|
|
syncInstallRunDone = addon.getSetting("SyncInstallRunDone") == "true"
|
2015-04-03 19:39:16 +11:00
|
|
|
WINDOW.setProperty("SyncDatabaseRunning", "true")
|
2015-03-27 11:16:45 +11:00
|
|
|
|
2015-04-03 19:39:16 +11:00
|
|
|
if(WINDOW.getProperty("SyncDatabaseShouldStop") == "true"):
|
|
|
|
utils.logMsg("Sync Database", "Can not start SyncDatabaseShouldStop=True", 0)
|
|
|
|
return True
|
|
|
|
|
|
|
|
try:
|
|
|
|
completed = True
|
2015-04-05 03:20:48 +10:00
|
|
|
connection = utils.KodiSQL()
|
|
|
|
cursor = connection.cursor()
|
2015-04-03 19:39:16 +11:00
|
|
|
# sync movies
|
|
|
|
if(syncInstallRunDone == False): # on first install run do a full sync with model progress dialog
|
2015-04-05 03:20:48 +10:00
|
|
|
completed = completed and self.TvShowsSync(connection, cursor,True, True)
|
|
|
|
completed = completed and self.MoviesSync(connection, cursor,True, True)
|
|
|
|
completed = completed and self.MusicVideosSync(True, True,connection , cursor)
|
2015-04-03 19:39:16 +11:00
|
|
|
elif(startupDone == False): # on first run after startup do a inc then a full sync
|
2015-04-05 03:20:48 +10:00
|
|
|
self.TvShowsSync(connection, cursor,False, False)
|
|
|
|
self.MoviesSync(connection, cursor,False, False)
|
|
|
|
self.MusicVideosSync(False, False, connection,cursor)
|
|
|
|
self.TvShowsSync(connection, cursor,True, False)
|
|
|
|
self.MoviesSync(connection, cursor,True, False)
|
|
|
|
self.MusicVideosSync(True, False,connection,cursor)
|
2015-04-03 19:39:16 +11:00
|
|
|
else: # on scheduled sync do a full sync
|
2015-04-05 03:20:48 +10:00
|
|
|
self.TvShowsSync(connection, cursor,True, False)
|
|
|
|
self.MoviesSync(connection, cursor,True, False)
|
|
|
|
self.MusicVideosSync(True, False,connection,cursor)
|
2015-04-03 19:39:16 +11:00
|
|
|
|
|
|
|
# set the install done setting
|
|
|
|
if(syncInstallRunDone == False and completed):
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby') #force a new instance of the addon
|
|
|
|
addon.setSetting("SyncInstallRunDone", "true")
|
|
|
|
|
|
|
|
# set prop to show we have run for the first time
|
|
|
|
WINDOW.setProperty("startup", "done")
|
|
|
|
|
|
|
|
finally:
|
|
|
|
WINDOW.setProperty("SyncDatabaseRunning", "false")
|
2015-04-05 03:20:48 +10:00
|
|
|
cursor.close()
|
2015-04-03 19:39:16 +11:00
|
|
|
|
2015-03-19 07:34:52 +11:00
|
|
|
return True
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-04-05 03:20:48 +10:00
|
|
|
def MoviesSync(self,connection, cursor, fullsync, installFirstRun,itemList = []):
|
2015-03-27 11:16:45 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
pDialog = None
|
2015-03-24 10:02:46 +11:00
|
|
|
startedSync = datetime.today()
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
try:
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-23 14:54:07 +11:00
|
|
|
dbSyncIndication = addon.getSetting("dbSyncIndication")
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-27 11:16:45 +11:00
|
|
|
if(installFirstRun or dbSyncIndication == "Dialog Progress"):
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog = xbmcgui.DialogProgress()
|
2015-03-24 10:02:46 +11:00
|
|
|
elif(dbSyncIndication == "BG Progress"):
|
2015-03-16 18:43:20 +11:00
|
|
|
pDialog = xbmcgui.DialogProgressBG()
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.create('Sync DB', 'Sync DB')
|
|
|
|
|
2015-03-23 14:54:07 +11:00
|
|
|
totalItemsAdded = 0
|
|
|
|
totalItemsUpdated = 0
|
|
|
|
totalItemsDeleted = 0
|
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
allEmbyMovieIds = list()
|
2015-03-17 10:04:29 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
views = ReadEmbyDB().getCollections("movies")
|
2015-03-19 15:38:00 +11:00
|
|
|
viewCount = len(views)
|
|
|
|
viewCurrent = 1
|
2015-03-20 19:15:06 +11:00
|
|
|
progressTitle = ""
|
2015-03-19 15:38:00 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
for view in views:
|
2015-03-17 10:04:29 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
#process new movies
|
2015-04-03 13:12:09 +11:00
|
|
|
allMB3Movies = ReadEmbyDB().getMovies(id = view.get('id'), fullinfo=True, fullSync = fullsync, itemList = itemList)
|
2015-03-19 02:47:55 +11:00
|
|
|
allKodiIds = set(ReadKodiDB().getKodiMoviesIds(True))
|
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-19 02:47:55 +11:00
|
|
|
|
|
|
|
if(allMB3Movies == None):
|
|
|
|
return False
|
|
|
|
|
2015-03-17 10:04:29 +11:00
|
|
|
if(pDialog != None):
|
2015-03-20 19:15:06 +11:00
|
|
|
progressTitle = "Sync DB : Processing " + view.get('title') + " " + str(viewCurrent) + " of " + str(viewCount)
|
|
|
|
pDialog.update(0, progressTitle)
|
2015-03-19 02:47:55 +11:00
|
|
|
total = len(allMB3Movies) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for item in allMB3Movies:
|
2015-03-17 10:04:29 +11:00
|
|
|
|
2015-04-03 15:13:28 +11:00
|
|
|
if not item.get('IsFolder'):
|
2015-03-19 02:47:55 +11:00
|
|
|
allEmbyMovieIds.append(item["Id"])
|
|
|
|
item['Tag'] = []
|
|
|
|
item['Tag'].append(view.get('title'))
|
|
|
|
|
|
|
|
if item["Id"] not in allKodiIds:
|
2015-04-05 03:20:48 +10:00
|
|
|
WriteKodiDB().addMovieToKodiLibrary(item,connection, cursor)
|
2015-03-23 14:54:07 +11:00
|
|
|
totalItemsAdded += 1
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-17 01:29:31 +11:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog.update(percentage, progressTitle, "Adding Movie: " + str(count))
|
2015-03-19 02:47:55 +11:00
|
|
|
count += 1
|
2015-03-16 13:32:45 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-19 15:38:00 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
2015-03-20 19:15:06 +11:00
|
|
|
progressTitle = "Sync DB : Processing " + view.get('title') + " " + str(viewCurrent) + " of " + str(viewCount)
|
|
|
|
pDialog.update(0, progressTitle, "")
|
2015-03-19 15:38:00 +11:00
|
|
|
total = len(allMB3Movies) + 1
|
|
|
|
count = 1
|
2015-03-26 12:03:06 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
#process updates
|
|
|
|
allKodiMovies = ReadKodiDB().getKodiMovies(True)
|
|
|
|
for item in allMB3Movies:
|
2015-03-16 13:32:45 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
if not item.get('IsFolder'):
|
|
|
|
item['Tag'] = []
|
|
|
|
item['Tag'].append(view.get('title'))
|
|
|
|
|
2015-03-30 08:09:02 +11:00
|
|
|
if allKodiMovies != None:
|
|
|
|
kodimovie = allKodiMovies.get(item["Id"], None)
|
|
|
|
else:
|
|
|
|
kodimovie = None
|
2015-04-03 10:41:39 +11:00
|
|
|
|
|
|
|
userData = API().getUserData(item)
|
|
|
|
WINDOW.setProperty("EmbyUserKey" + userData.get("Key"), item.get('Id') + ";;" + item.get("Type"))
|
2015-03-30 08:09:02 +11:00
|
|
|
|
2015-03-20 14:04:54 +11:00
|
|
|
if(kodimovie != None):
|
2015-03-21 10:33:04 +11:00
|
|
|
#WriteKodiDB().updateMovieToKodiLibrary(item, kodimovie)
|
2015-04-05 03:20:48 +10:00
|
|
|
updated = WriteKodiDB().updateMovieToKodiLibrary_Batched(item, kodimovie, connection, cursor)
|
2015-03-23 14:54:07 +11:00
|
|
|
if(updated):
|
|
|
|
totalItemsUpdated += 1
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-17 10:04:29 +11:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog.update(percentage, progressTitle, "Updating Movie: " + str(count))
|
2015-03-19 02:47:55 +11:00
|
|
|
count += 1
|
2015-03-19 15:38:00 +11:00
|
|
|
|
|
|
|
viewCurrent += 1
|
|
|
|
|
2015-03-26 12:03:06 +11:00
|
|
|
# process box sets - TODO cope with movies removed from a set
|
2015-04-04 08:20:48 +11:00
|
|
|
if fullsync:
|
2015-03-28 15:24:25 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : BoxSets"
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating Movie: " + str(count))
|
|
|
|
|
2015-03-26 12:03:06 +11:00
|
|
|
utils.logMsg("Sync Movies", "BoxSet Sync Started", 1)
|
|
|
|
boxsets = ReadEmbyDB().getBoxSets()
|
2015-03-28 15:24:25 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
total = len(boxsets) + 1
|
|
|
|
count = 1
|
|
|
|
|
2015-03-26 12:03:06 +11:00
|
|
|
for boxset in boxsets:
|
2015-03-28 15:24:25 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating BoxSet: " + str(count) + " of " + str(total))
|
|
|
|
count += 1
|
2015-03-26 12:03:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-26 12:03:06 +11:00
|
|
|
boxsetMovies = ReadEmbyDB().getMoviesInBoxSet(boxset["Id"])
|
2015-04-05 03:20:48 +10:00
|
|
|
WriteKodiDB().addBoxsetToKodiLibrary(boxset,connection, cursor)
|
2015-03-28 15:24:25 +11:00
|
|
|
|
2015-03-26 12:03:06 +11:00
|
|
|
for boxsetMovie in boxsetMovies:
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-26 12:03:06 +11:00
|
|
|
WriteKodiDB().updateBoxsetToKodiLibrary(boxsetMovie,boxset)
|
2015-03-28 15:24:25 +11:00
|
|
|
|
2015-03-26 12:03:06 +11:00
|
|
|
utils.logMsg("Sync Movies", "BoxSet Sync Finished", 1)
|
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
if(pDialog != None):
|
2015-03-20 19:15:06 +11:00
|
|
|
progressTitle = "Removing Deleted Items"
|
|
|
|
pDialog.update(0, progressTitle, "")
|
2015-03-16 13:32:45 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-16 14:10:41 +11:00
|
|
|
|
2015-03-19 02:47:55 +11:00
|
|
|
# process any deletes only at fullsync
|
|
|
|
if fullsync:
|
|
|
|
allKodiIds = ReadKodiDB().getKodiMoviesIds(True)
|
|
|
|
allEmbyMovieIds = set(allEmbyMovieIds)
|
|
|
|
for kodiId in allKodiIds:
|
|
|
|
if not kodiId in allEmbyMovieIds:
|
2015-03-26 07:00:38 +11:00
|
|
|
WINDOW.setProperty(kodiId,"deleted")
|
2015-03-22 00:31:30 +11:00
|
|
|
WriteKodiDB().deleteMovieFromKodiLibrary(kodiId)
|
2015-03-23 14:54:07 +11:00
|
|
|
totalItemsDeleted += 1
|
2015-03-16 14:10:41 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-19 02:47:55 +11:00
|
|
|
|
2015-03-24 10:02:46 +11:00
|
|
|
# display notification if set up
|
|
|
|
notificationString = ""
|
|
|
|
if(totalItemsAdded > 0):
|
|
|
|
notificationString += "Added:" + str(totalItemsAdded) + " "
|
|
|
|
if(totalItemsUpdated > 0):
|
|
|
|
notificationString += "Updated:" + str(totalItemsUpdated) + " "
|
|
|
|
if(totalItemsDeleted > 0):
|
|
|
|
notificationString += "Deleted:" + str(totalItemsDeleted) + " "
|
|
|
|
|
|
|
|
timeTaken = datetime.today() - startedSync
|
|
|
|
timeTakenString = str(int(timeTaken.seconds / 60)) + ":" + str(timeTaken.seconds % 60)
|
|
|
|
utils.logMsg("Sync Movies", "Finished " + timeTakenString + " " + notificationString, 0)
|
|
|
|
|
|
|
|
if(dbSyncIndication == "Notify OnChange" and notificationString != ""):
|
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
|
|
|
xbmc.executebuiltin("XBMC.Notification(Movie Sync: " + notificationString + ",)")
|
|
|
|
elif(dbSyncIndication == "Notify OnFinish"):
|
2015-03-23 14:54:07 +11:00
|
|
|
if(notificationString == ""):
|
|
|
|
notificationString = "Done"
|
2015-03-24 10:02:46 +11:00
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
2015-03-23 14:54:07 +11:00
|
|
|
xbmc.executebuiltin("XBMC.Notification(Movie Sync: " + notificationString + ",)")
|
2015-03-24 10:02:46 +11:00
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
finally:
|
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.close()
|
2015-03-15 09:33:16 +11:00
|
|
|
|
|
|
|
return True
|
2015-03-19 04:00:38 +11:00
|
|
|
|
2015-04-05 03:20:48 +10:00
|
|
|
def TvShowsSync(self, connection, cursor ,fullsync, installFirstRun, itemList = []):
|
2015-03-19 04:00:38 +11:00
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-19 04:00:38 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
pDialog = None
|
2015-03-24 10:02:46 +11:00
|
|
|
startedSync = datetime.today()
|
2015-03-19 04:00:38 +11:00
|
|
|
|
|
|
|
try:
|
2015-03-23 14:54:07 +11:00
|
|
|
dbSyncIndication = addon.getSetting("dbSyncIndication")
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-27 11:16:45 +11:00
|
|
|
if(installFirstRun or dbSyncIndication == "Dialog Progress"):
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog = xbmcgui.DialogProgress()
|
2015-03-24 10:02:46 +11:00
|
|
|
elif(dbSyncIndication == "BG Progress"):
|
2015-03-19 04:00:38 +11:00
|
|
|
pDialog = xbmcgui.DialogProgressBG()
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-19 04:00:38 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.create('Sync DB', 'Sync DB')
|
2015-03-23 14:54:07 +11:00
|
|
|
|
|
|
|
totalItemsAdded = 0
|
|
|
|
totalItemsUpdated = 0
|
|
|
|
totalItemsDeleted = 0
|
2015-04-05 07:48:02 +10:00
|
|
|
allTVShows = list()
|
|
|
|
allMB3EpisodeIds = list() #for use with deletions
|
2015-03-19 04:00:38 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
views = ReadEmbyDB().getCollections("tvshows")
|
|
|
|
viewCount = len(views)
|
|
|
|
viewCurrent = 1
|
|
|
|
progressTitle = ""
|
|
|
|
|
|
|
|
for view in views:
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
|
|
|
|
progressTitle = "Sync DB : Processing " + view.get('title') + " " + str(viewCurrent) + " of " + str(viewCount)
|
2015-03-19 04:43:57 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
# incremental sync --> new episodes only
|
|
|
|
if not fullsync:
|
|
|
|
|
|
|
|
latestMBEpisodes = ReadEmbyDB().getLatestEpisodes(fullinfo = True, itemList = itemList)
|
|
|
|
utils.logMsg("Sync TV", "Inc Sync Started on : " + str(len(latestMBEpisodes)) + " : " + str(itemList), 1)
|
|
|
|
|
|
|
|
if latestMBEpisodes != None:
|
|
|
|
allKodiTvShowsIds = set(ReadKodiDB().getKodiTvShowsIds(True))
|
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
total = len(latestMBEpisodes) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
# process new episodes
|
|
|
|
for episode in latestMBEpisodes:
|
|
|
|
if episode["SeriesId"] in allKodiTvShowsIds:
|
|
|
|
#only process tvshows that already exist in the db at incremental updates
|
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(False)
|
|
|
|
kodishow = allKodiTVShows.get(episode["SeriesId"],None)
|
|
|
|
kodiEpisodes = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],True,True)
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
#we have to compare the lists somehow
|
|
|
|
comparestring1 = str(episode.get("ParentIndexNumber")) + "-" + str(episode.get("IndexNumber"))
|
|
|
|
matchFound = False
|
|
|
|
if kodiEpisodes != None:
|
|
|
|
KodiItem = kodiEpisodes.get(comparestring1, None)
|
|
|
|
if(KodiItem != None):
|
|
|
|
matchFound = True
|
|
|
|
|
|
|
|
progressAction = "Checking"
|
|
|
|
if not matchFound:
|
|
|
|
#no match so we have to create it
|
|
|
|
WriteKodiDB().addEpisodeToKodiLibrary(episode,connection, cursor)
|
|
|
|
progressAction = "Adding"
|
|
|
|
totalItemsAdded += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, progressAction + " Episode: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
#process updates
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing Episodes"
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
total = len(latestMBEpisodes) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for episode in latestMBEpisodes:
|
|
|
|
if episode["SeriesId"] in allKodiTvShowsIds:
|
|
|
|
#only process tvshows that already exist in the db at incremental updates
|
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(False)
|
|
|
|
kodishow = allKodiTVShows.get(episode["SeriesId"],None)
|
|
|
|
kodiEpisodes = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],True,True)
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
userData = API().getUserData(episode)
|
|
|
|
WINDOW.setProperty("EmbyUserKey" + userData.get("Key"), episode.get('Id') + ";;" + episode.get("Type"))
|
|
|
|
|
|
|
|
#we have to compare the lists somehow
|
|
|
|
comparestring1 = str(episode.get("ParentIndexNumber")) + "-" + str(episode.get("IndexNumber"))
|
|
|
|
|
|
|
|
if kodiEpisodes != None:
|
|
|
|
KodiItem = kodiEpisodes.get(comparestring1, None)
|
|
|
|
if(KodiItem != None):
|
|
|
|
WriteKodiDB().updateEpisodeToKodiLibrary(episode, KodiItem, connection, cursor)
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating Episode: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
2015-03-19 04:43:57 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
# full sync --> Tv shows and Episodes
|
|
|
|
if fullsync:
|
|
|
|
allKodiEpisodeIds = [] # for use with deletions
|
|
|
|
viewTVShows = list()
|
|
|
|
tvShowData = ReadEmbyDB().getTVShows(id = view.get('id') , fullinfo = True, fullSync = True)
|
|
|
|
allKodiIds = set(ReadKodiDB().getKodiTvShowsIds(True))
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
2015-03-19 08:38:02 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
if (tvShowData == None):
|
|
|
|
return False
|
|
|
|
|
2015-03-19 15:38:00 +11:00
|
|
|
if(pDialog != None):
|
2015-04-05 07:48:02 +10:00
|
|
|
progressTitle = "Sync DB : Processing TV Shows"
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog.update(0, progressTitle)
|
2015-04-05 07:48:02 +10:00
|
|
|
total = len(tvShowData) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for item in tvShowData:
|
|
|
|
if item.get('IsFolder'):
|
|
|
|
allTVShows.append(item["Id"])
|
|
|
|
viewTVShows.append(item["Id"])
|
|
|
|
item['Tag'] = []
|
|
|
|
item['Tag'].append(view.get('title'))
|
|
|
|
progMessage = "Processing"
|
|
|
|
if item["Id"] not in allKodiIds:
|
|
|
|
WriteKodiDB().addTVShowToKodiLibrary(item,connection, cursor)
|
2015-03-23 14:54:07 +11:00
|
|
|
totalItemsAdded += 1
|
2015-03-19 08:38:02 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-04-05 07:48:02 +10:00
|
|
|
return False
|
|
|
|
|
2015-03-19 08:38:02 +11:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
2015-04-05 07:48:02 +10:00
|
|
|
pDialog.update(percentage, progressTitle, "Adding Tv Show: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
#process episodes first before updating tvshows
|
|
|
|
allEpisodes = list()
|
2015-03-19 08:38:02 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
showTotal = len(viewTVShows)
|
|
|
|
showCurrent = 1
|
|
|
|
|
|
|
|
# do episode adds
|
|
|
|
for tvshow in viewTVShows:
|
|
|
|
|
|
|
|
episodeData = ReadEmbyDB().getEpisodes(tvshow,True)
|
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(False)
|
|
|
|
if allKodiTVShows != None:
|
|
|
|
kodishow = allKodiTVShows.get(tvshow,None)
|
|
|
|
if kodishow != None:
|
|
|
|
kodiEpisodes = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],True,True)
|
|
|
|
else:
|
|
|
|
kodiEpisodes = None
|
|
|
|
else:
|
|
|
|
kodiEpisodes = None
|
|
|
|
|
|
|
|
if episodeData != None:
|
2015-03-19 08:38:02 +11:00
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-04-05 07:48:02 +10:00
|
|
|
return False
|
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing Tv Show " + str(showCurrent) + " of " + str(showTotal)
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
total = len(episodeData) + 1
|
|
|
|
count = 0
|
|
|
|
|
2015-03-19 08:38:02 +11:00
|
|
|
#we have to compare the lists somehow
|
2015-04-05 07:48:02 +10:00
|
|
|
# TODO --> instead of matching by season and episode number we can use the uniqueid
|
|
|
|
for item in episodeData:
|
|
|
|
if(installFirstRun):
|
|
|
|
progressAction = "Adding"
|
|
|
|
WriteKodiDB().addEpisodeToKodiLibrary(item, connection, cursor)
|
|
|
|
else:
|
|
|
|
comparestring1 = str(item.get("ParentIndexNumber")) + "-" + str(item.get("IndexNumber"))
|
|
|
|
matchFound = False
|
|
|
|
if kodiEpisodes != None:
|
|
|
|
KodiItem = kodiEpisodes.get(comparestring1, None)
|
|
|
|
if(KodiItem != None):
|
|
|
|
matchFound = True
|
|
|
|
|
|
|
|
progressAction = "Checking"
|
|
|
|
if not matchFound:
|
|
|
|
#double check the item it might me added delayed by the Kodi scanner
|
|
|
|
if ReadKodiDB().getKodiEpisodeByMbItem(item["Id"],tvshow) == None:
|
|
|
|
#no match so we have to create it
|
2015-04-05 08:38:31 +10:00
|
|
|
WriteKodiDB().addEpisodeToKodiLibrary(item,connection, cursor)
|
2015-04-05 07:48:02 +10:00
|
|
|
progressAction = "Adding"
|
|
|
|
totalItemsAdded += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, progressAction + " Episode: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
showCurrent += 1
|
|
|
|
|
2015-03-19 15:38:00 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing TV Shows"
|
|
|
|
pDialog.update(0, progressTitle, "")
|
|
|
|
total = len(viewTVShows) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
#process updates at TV Show level
|
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(True)
|
|
|
|
for item in tvShowData:
|
|
|
|
if item.get('IsFolder'):
|
|
|
|
item['Tag'] = []
|
|
|
|
item['Tag'].append(view.get('title'))
|
|
|
|
if allKodiTVShows != None:
|
|
|
|
kodishow = allKodiTVShows.get(item["Id"],None)
|
|
|
|
else:
|
|
|
|
kodishow = None
|
|
|
|
|
|
|
|
if(kodishow != None):
|
|
|
|
updated = WriteKodiDB().updateTVShowToKodiLibrary(item,kodishow,connection, cursor)
|
|
|
|
if(updated):
|
|
|
|
totalItemsUpdated += 1
|
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-04-05 07:48:02 +10:00
|
|
|
return False
|
|
|
|
|
2015-03-19 08:38:02 +11:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
2015-04-05 07:48:02 +10:00
|
|
|
pDialog.update(percentage, progressTitle, "Updating Tv Show: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
# do episode updates
|
|
|
|
showCurrent = 1
|
|
|
|
for tvshow in viewTVShows:
|
|
|
|
episodeData = ReadEmbyDB().getEpisodes(tvshow,True)
|
2015-03-19 04:00:38 +11:00
|
|
|
|
2015-03-30 04:33:41 +11:00
|
|
|
kodiEpisodes = None
|
2015-04-05 07:48:02 +10:00
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(False)
|
|
|
|
if allKodiTVShows != None:
|
|
|
|
kodishow = allKodiTVShows.get(tvshow,None)
|
|
|
|
if kodishow != None:
|
|
|
|
kodiEpisodes = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],True,True)
|
2015-03-25 23:30:08 +11:00
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-25 23:30:08 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing Tv Show " + str(showCurrent) + " of " + str(showTotal)
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
total = len(episodeData) + 1
|
|
|
|
count = 0
|
2015-04-05 07:48:02 +10:00
|
|
|
|
2015-03-25 23:31:19 +11:00
|
|
|
#we have to compare the lists somehow
|
|
|
|
for item in episodeData:
|
2015-04-05 07:48:02 +10:00
|
|
|
#add episodeId to the list of all episodes for use later on the deletes
|
|
|
|
allMB3EpisodeIds.append(item["Id"])
|
|
|
|
|
|
|
|
comparestring1 = str(item.get("ParentIndexNumber")) + "-" + str(item.get("IndexNumber"))
|
|
|
|
matchFound = False
|
2015-04-05 02:09:14 +10:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
userData = API().getUserData(item)
|
|
|
|
WINDOW.setProperty("EmbyUserKey" + userData.get("Key"), item.get('Id') + ";;" + item.get("Type"))
|
|
|
|
|
|
|
|
if kodiEpisodes != None:
|
|
|
|
KodiItem = kodiEpisodes.get(comparestring1, None)
|
|
|
|
if(KodiItem != None):
|
|
|
|
updated = WriteKodiDB().updateEpisodeToKodiLibrary(item, KodiItem, connection, cursor)
|
|
|
|
if(updated):
|
|
|
|
totalItemsUpdated += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
2015-03-25 23:31:19 +11:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
2015-04-05 07:48:02 +10:00
|
|
|
pDialog.update(percentage, progressTitle, "Updating Episode: " + str(count))
|
2015-03-25 23:31:19 +11:00
|
|
|
count += 1
|
2015-03-30 08:19:53 +11:00
|
|
|
|
2015-03-21 00:37:34 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
#add all kodi episodes to a list with episodes for use later on to delete episodes
|
|
|
|
#the mediabrowser ID is set as uniqueID in the NFO... for some reason this has key 'unknown' in the json response
|
2015-03-30 08:19:53 +11:00
|
|
|
if kodishow != None:
|
2015-04-05 07:48:02 +10:00
|
|
|
show = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],False,False)
|
|
|
|
if show != None:
|
|
|
|
for episode in show:
|
|
|
|
dict = {'episodeid': str(episode["uniqueid"]["unknown"]),'tvshowid': tvshow}
|
|
|
|
allKodiEpisodeIds.append(dict)
|
|
|
|
|
|
|
|
showCurrent += 1
|
2015-03-30 07:03:39 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
2015-04-05 07:48:02 +10:00
|
|
|
progressTitle = "Removing Deleted Items"
|
2015-03-30 07:03:39 +11:00
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
2015-03-21 06:26:37 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
# DELETES -- EPISODES
|
|
|
|
# process any deletes only at fullsync
|
|
|
|
allMB3EpisodeIdsSet = set(allMB3EpisodeIds)
|
|
|
|
for episode in allKodiEpisodeIds:
|
|
|
|
if episode.get('episodeid') not in allMB3EpisodeIdsSet:
|
|
|
|
WINDOW.setProperty("embyid" + str(episode.get('episodeid')),"deleted")
|
|
|
|
WriteKodiDB().deleteEpisodeFromKodiLibrary(episode.get('episodeid'),episode.get('tvshowid'))
|
2015-03-23 14:54:07 +11:00
|
|
|
totalItemsDeleted += 1
|
2015-04-05 07:48:02 +10:00
|
|
|
|
|
|
|
# DELETES -- TV SHOWS
|
|
|
|
if fullsync:
|
|
|
|
allKodiShows = ReadKodiDB().getKodiTvShowsIds(True)
|
|
|
|
allMB3TVShows = set(allTVShows)
|
|
|
|
for show in allKodiShows:
|
|
|
|
if not show in allMB3TVShows:
|
|
|
|
WriteKodiDB().deleteTVShowFromKodiLibrary(show)
|
|
|
|
totalItemsDeleted += 1
|
2015-03-24 10:02:46 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# display notification if set up
|
|
|
|
notificationString = ""
|
|
|
|
if(totalItemsAdded > 0):
|
|
|
|
notificationString += "Added:" + str(totalItemsAdded) + " "
|
|
|
|
if(totalItemsUpdated > 0):
|
|
|
|
notificationString += "Updated:" + str(totalItemsUpdated) + " "
|
|
|
|
if(totalItemsDeleted > 0):
|
|
|
|
notificationString += "Deleted:" + str(totalItemsDeleted) + " "
|
|
|
|
|
|
|
|
timeTaken = datetime.today() - startedSync
|
|
|
|
timeTakenString = str(int(timeTaken.seconds / 60)) + ":" + str(timeTaken.seconds % 60)
|
|
|
|
utils.logMsg("Sync Episodes", "Finished " + timeTakenString + " " + notificationString, 0)
|
|
|
|
|
|
|
|
if(dbSyncIndication == "Notify OnChange" and notificationString != ""):
|
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
|
|
|
xbmc.executebuiltin("XBMC.Notification(Episode Sync: " + notificationString + ",)")
|
|
|
|
elif(dbSyncIndication == "Notify OnFinish"):
|
|
|
|
if(notificationString == ""):
|
|
|
|
notificationString = "Done"
|
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
|
|
|
xbmc.executebuiltin("XBMC.Notification(Episode Sync: " + notificationString + ",)")
|
2015-03-24 10:02:46 +11:00
|
|
|
|
2015-03-19 04:00:38 +11:00
|
|
|
finally:
|
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.close()
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
2015-04-05 03:20:48 +10:00
|
|
|
def MusicVideosSync(self, fullsync, installFirstRun,connection, cursor):
|
2015-03-22 00:31:30 +11:00
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-22 00:31:30 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
pDialog = None
|
|
|
|
|
|
|
|
try:
|
2015-03-23 14:54:07 +11:00
|
|
|
dbSyncIndication = addon.getSetting("dbSyncIndication")
|
2015-03-22 00:31:30 +11:00
|
|
|
|
2015-03-27 11:16:45 +11:00
|
|
|
if(installFirstRun or dbSyncIndication == "Dialog Progress"):
|
2015-03-22 00:31:30 +11:00
|
|
|
pDialog = xbmcgui.DialogProgress()
|
2015-03-24 10:02:46 +11:00
|
|
|
elif(dbSyncIndication == "BG Progress"):
|
2015-03-22 00:31:30 +11:00
|
|
|
pDialog = xbmcgui.DialogProgressBG()
|
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.create('Sync DB', 'Sync DB')
|
|
|
|
|
|
|
|
allEmbyMusicVideoIds = list()
|
|
|
|
|
|
|
|
progressTitle = ""
|
|
|
|
|
|
|
|
#process new musicvideos
|
|
|
|
allMB3MusicVideos = ReadEmbyDB().getMusicVideos(True, fullsync)
|
|
|
|
allKodiIds = set(ReadKodiDB().getKodiMusicVideoIds(True))
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
if(allMB3MusicVideos == None):
|
|
|
|
return False
|
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing Musicvideos"
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
total = len(allMB3MusicVideos) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for item in allMB3MusicVideos:
|
|
|
|
|
|
|
|
if not item.get('IsFolder'):
|
|
|
|
allEmbyMusicVideoIds.append(item["Id"])
|
|
|
|
|
|
|
|
if item["Id"] not in allKodiIds:
|
2015-04-05 03:20:48 +10:00
|
|
|
WriteKodiDB().addMusicVideoToKodiLibrary(item, connection, cursor)
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Adding Musicvideo: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync DB : Processing musicvideos"
|
|
|
|
pDialog.update(0, progressTitle, "")
|
|
|
|
total = len(allMB3MusicVideos) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
#process updates
|
|
|
|
allKodiMusicVideos = ReadKodiDB().getKodiMusicVideos(True)
|
|
|
|
for item in allMB3MusicVideos:
|
|
|
|
|
|
|
|
if not item.get('IsFolder'):
|
2015-03-30 08:09:02 +11:00
|
|
|
|
|
|
|
if allKodiMusicVideos != None:
|
|
|
|
kodimusicvideo = allKodiMusicVideos.get(item["Id"], None)
|
|
|
|
else:
|
|
|
|
kodimusicvideo = None
|
|
|
|
|
2015-03-22 00:31:30 +11:00
|
|
|
if(kodimusicvideo != None):
|
|
|
|
WriteKodiDB().updateMusicVideoToKodiLibrary_Batched(item, kodimusicvideo)
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(total)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating MusicVideo: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Removing Deleted Items"
|
|
|
|
pDialog.update(0, progressTitle, "")
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
# process any deletes only at fullsync
|
|
|
|
if fullsync:
|
|
|
|
allKodiIds = ReadKodiDB().getKodiMusicVideoIds(True)
|
|
|
|
allEmbyMusicVideoIds = set(allEmbyMusicVideoIds)
|
|
|
|
for kodiId in allKodiIds:
|
|
|
|
if not kodiId in allEmbyMusicVideoIds:
|
|
|
|
WriteKodiDB().deleteMusicVideoFromKodiLibrary(kodiId)
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-22 00:31:30 +11:00
|
|
|
|
|
|
|
finally:
|
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.close()
|
|
|
|
|
|
|
|
return True
|
2015-04-02 06:07:29 +11:00
|
|
|
|
2015-03-14 08:24:59 +11:00
|
|
|
def updatePlayCounts(self):
|
|
|
|
#update all playcounts from MB3 to Kodi library
|
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-15 09:33:16 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
2015-03-16 13:32:45 +11:00
|
|
|
pDialog = None
|
2015-03-24 10:02:46 +11:00
|
|
|
startedSync = datetime.today()
|
2015-03-19 15:38:00 +11:00
|
|
|
processMovies = True
|
|
|
|
processTvShows = True
|
|
|
|
|
2015-04-03 19:39:16 +11:00
|
|
|
if(WINDOW.getProperty("SyncDatabaseShouldStop") == "true"):
|
|
|
|
utils.logMsg("Sync PlayCount", "Can not start SyncDatabaseShouldStop=True", 0)
|
|
|
|
return True
|
|
|
|
|
2015-03-29 13:34:59 +11:00
|
|
|
if(WINDOW.getProperty("updatePlayCounts_Running") == "true"):
|
|
|
|
utils.logMsg("Sync PlayCount", "updatePlayCounts Already Running", 0)
|
2015-03-30 15:08:47 +11:00
|
|
|
return False
|
2015-04-03 19:39:16 +11:00
|
|
|
|
2015-03-29 13:34:59 +11:00
|
|
|
WINDOW.setProperty("updatePlayCounts_Running", "true")
|
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
try:
|
2015-03-23 14:54:07 +11:00
|
|
|
playCountSyncIndication = addon.getSetting("playCountSyncIndication")
|
2015-03-25 18:47:22 +11:00
|
|
|
playCountSyncFirstRun = addon.getSetting("SyncFirstCountsRunDone")
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-25 18:47:22 +11:00
|
|
|
if(playCountSyncFirstRun != "true" or playCountSyncIndication == "Dialog Progress"):
|
2015-03-20 19:15:06 +11:00
|
|
|
pDialog = xbmcgui.DialogProgress()
|
2015-03-24 10:02:46 +11:00
|
|
|
elif(playCountSyncIndication == "BG Progress"):
|
2015-03-16 18:43:20 +11:00
|
|
|
pDialog = xbmcgui.DialogProgressBG()
|
2015-03-20 19:15:06 +11:00
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.create('Sync PlayCounts', 'Sync PlayCounts')
|
2015-03-16 04:04:01 +11:00
|
|
|
|
2015-03-23 14:54:07 +11:00
|
|
|
totalCountsUpdated = 0
|
|
|
|
totalPositionsUpdated = 0
|
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
#process movies
|
2015-03-17 10:04:29 +11:00
|
|
|
if processMovies:
|
2015-03-20 19:15:06 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.update(0, "Processing Movies", "")
|
|
|
|
|
2015-03-18 04:51:45 +11:00
|
|
|
views = ReadEmbyDB().getCollections("movies")
|
2015-03-19 19:42:25 +11:00
|
|
|
viewCount = len(views)
|
|
|
|
viewCurrent = 1
|
2015-03-17 10:04:29 +11:00
|
|
|
for view in views:
|
2015-03-20 00:28:55 +11:00
|
|
|
allMB3Movies = ReadEmbyDB().getMovies(view.get('id'), fullinfo = False, fullSync = True)
|
2015-03-19 20:06:05 +11:00
|
|
|
allKodiMovies = ReadKodiDB().getKodiMovies(False)
|
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(pDialog)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-16 13:32:45 +11:00
|
|
|
|
2015-03-30 15:08:47 +11:00
|
|
|
if(allMB3Movies != None and allKodiMovies != None):
|
2015-03-19 20:06:05 +11:00
|
|
|
|
2015-03-30 15:08:47 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync PlayCounts: Processing " + view.get('title') + " " + str(viewCurrent) + " of " + str(viewCount)
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
totalCount = len(allMB3Movies) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for item in allMB3Movies:
|
2015-03-17 10:04:29 +11:00
|
|
|
|
2015-03-30 15:08:47 +11:00
|
|
|
if not item.get('IsFolder'):
|
|
|
|
kodiItem = allKodiMovies.get(item["Id"], None)
|
|
|
|
|
|
|
|
userData = API().getUserData(item)
|
|
|
|
timeInfo = API().getTimeInfo(item)
|
|
|
|
|
2015-04-03 10:41:39 +11:00
|
|
|
WINDOW.setProperty("EmbyUserKey" + userData.get("Key"), item.get('Id') + ";;" + item.get("Type"))
|
|
|
|
|
2015-03-30 15:08:47 +11:00
|
|
|
if kodiItem != None:
|
|
|
|
kodiresume = int(round(kodiItem['resume'].get("position")))
|
|
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
|
|
if kodiresume != resume:
|
|
|
|
WriteKodiDB().setKodiResumePoint(kodiItem['movieid'],resume,total,"movie")
|
|
|
|
totalPositionsUpdated += 1
|
|
|
|
updated = WriteKodiDB().updateProperty(kodiItem,"playcount",int(userData.get("PlayCount")), "movie")
|
|
|
|
updated |= WriteKodiDB().updateProperty(kodiItem,"lastplayed",userData.get("LastPlayedDate"), "movie")
|
|
|
|
if(updated):
|
|
|
|
totalCountsUpdated += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(totalCount)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating Movie: " + str(count))
|
|
|
|
count += 1
|
2015-03-19 19:42:25 +11:00
|
|
|
|
|
|
|
viewCurrent += 1
|
|
|
|
|
2015-03-17 10:04:29 +11:00
|
|
|
#process Tv shows
|
|
|
|
if processTvShows:
|
2015-03-20 19:15:06 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.update(0, "Processing TV Episodes", "")
|
2015-04-05 07:48:02 +10:00
|
|
|
views = ReadEmbyDB().getCollections("tvshows")
|
|
|
|
viewCount = len(views)
|
|
|
|
viewCurrent = 1
|
|
|
|
progressTitle = ""
|
|
|
|
for view in views:
|
|
|
|
|
|
|
|
tvshowData = ReadEmbyDB().getTVShows(id = view.get('id'), fullinfo = False, fullSync = True)
|
2015-03-19 20:52:21 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
|
|
|
|
|
|
|
if (tvshowData != None):
|
2015-03-30 15:08:47 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
showTotal = len(tvshowData)
|
|
|
|
showCurrent = 1
|
2015-03-30 15:08:47 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
for item in tvshowData:
|
|
|
|
|
|
|
|
episodeData = ReadEmbyDB().getEpisodes(item["Id"], False)
|
|
|
|
allKodiTVShows = ReadKodiDB().getKodiTvShows(False)
|
|
|
|
kodishow = allKodiTVShows.get(item["Id"],None)
|
|
|
|
if kodishow != None:
|
|
|
|
kodiEpisodes = ReadKodiDB().getKodiEpisodes(kodishow["tvshowid"],False,True)
|
|
|
|
else:
|
|
|
|
kodiEpisodes = None
|
|
|
|
|
|
|
|
if (episodeData != None):
|
|
|
|
if(pDialog != None):
|
|
|
|
progressTitle = "Sync PlayCounts: Processing TV Show " + str(showCurrent) + " of " + str(showTotal)
|
|
|
|
pDialog.update(0, progressTitle)
|
|
|
|
totalCount = len(episodeData) + 1
|
|
|
|
count = 1
|
|
|
|
|
|
|
|
for episode in episodeData:
|
|
|
|
|
|
|
|
kodiItem = None
|
|
|
|
comparestring1 = str(episode.get("ParentIndexNumber")) + "-" + str(episode.get("IndexNumber"))
|
|
|
|
matchFound = False
|
|
|
|
if kodiEpisodes != None:
|
|
|
|
kodiItem = kodiEpisodes.get(comparestring1, None)
|
|
|
|
|
|
|
|
userData=API().getUserData(episode)
|
|
|
|
timeInfo = API().getTimeInfo(episode)
|
2015-03-30 15:08:47 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
WINDOW.setProperty("EmbyUserKey" + userData.get("Key"), episode.get('Id') + ";;" + episode.get("Type"))
|
|
|
|
|
|
|
|
if kodiItem != None:
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
WINDOW.setProperty("episodeid" + str(kodiItem['episodeid']), episode.get('Name') + ";;" + episode.get('Id'))
|
|
|
|
kodiresume = int(round(kodiItem['resume'].get("position")))
|
|
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
|
|
if kodiresume != resume:
|
|
|
|
WriteKodiDB().setKodiResumePoint(kodiItem['episodeid'],resume,total,"episode")
|
|
|
|
totalPositionsUpdated += 1
|
2015-03-30 15:08:47 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
updated = WriteKodiDB().updateProperty(kodiItem,"playcount",int(userData.get("PlayCount")),"episode")
|
|
|
|
updated |= WriteKodiDB().updateProperty(kodiItem,"lastplayed",userData.get("LastPlayedDate"), "episode")
|
|
|
|
if(updated):
|
|
|
|
totalCountsUpdated += 1
|
|
|
|
|
|
|
|
if(self.ShouldStop(pDialog)):
|
|
|
|
return False
|
2015-03-30 15:08:47 +11:00
|
|
|
|
2015-04-05 07:48:02 +10:00
|
|
|
# update progress bar
|
|
|
|
if(pDialog != None):
|
|
|
|
percentage = int(((float(count) / float(totalCount)) * 100))
|
|
|
|
pDialog.update(percentage, progressTitle, "Updating Episode: " + str(count))
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
showCurrent += 1
|
2015-03-25 18:47:22 +11:00
|
|
|
|
|
|
|
if(playCountSyncFirstRun != "true"):
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-25 18:47:22 +11:00
|
|
|
addon.setSetting("SyncFirstCountsRunDone", "true")
|
2015-03-24 10:02:46 +11:00
|
|
|
|
|
|
|
# display notification if set up
|
|
|
|
notificationString = ""
|
|
|
|
if(totalPositionsUpdated > 0):
|
|
|
|
notificationString += "Pos:" + str(totalPositionsUpdated) + " "
|
|
|
|
if(totalCountsUpdated > 0):
|
|
|
|
notificationString += "Counts:" + str(totalCountsUpdated) + " "
|
|
|
|
|
|
|
|
timeTaken = datetime.today() - startedSync
|
|
|
|
timeTakenString = str(int(timeTaken.seconds / 60)) + ":" + str(timeTaken.seconds % 60)
|
|
|
|
utils.logMsg("Sync PlayCount", "Finished " + timeTakenString + " " + notificationString, 0)
|
|
|
|
|
|
|
|
if(playCountSyncIndication == "Notify OnChange" and notificationString != ""):
|
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
|
|
|
xbmc.executebuiltin("XBMC.Notification(PlayCount Sync: " + notificationString + ",)")
|
|
|
|
elif(playCountSyncIndication == "Notify OnFinish"):
|
2015-03-23 14:54:07 +11:00
|
|
|
if(notificationString == ""):
|
|
|
|
notificationString = "Done"
|
2015-03-24 10:02:46 +11:00
|
|
|
notificationString = "(" + timeTakenString + ") " + notificationString
|
|
|
|
xbmc.executebuiltin("XBMC.Notification(PlayCount Sync: " + notificationString + ",)")
|
|
|
|
|
2015-03-16 13:32:45 +11:00
|
|
|
finally:
|
2015-03-29 13:34:59 +11:00
|
|
|
WINDOW.setProperty("updatePlayCounts_Running", "false")
|
2015-03-16 13:32:45 +11:00
|
|
|
if(pDialog != None):
|
|
|
|
pDialog.close()
|
2015-03-15 09:33:16 +11:00
|
|
|
|
|
|
|
return True
|
2015-03-14 08:24:59 +11:00
|
|
|
|
2015-03-20 04:40:29 +11:00
|
|
|
def updatePlayCount(self,itemID,type):
|
|
|
|
#update playcount of the itemID from MB3 to Kodi library
|
|
|
|
|
2015-03-26 04:37:21 +11:00
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
2015-03-20 04:40:29 +11:00
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
#process movie
|
|
|
|
if type=='Movie':
|
|
|
|
MB3Movie = ReadEmbyDB().getItem(itemID)
|
2015-03-20 10:34:56 +11:00
|
|
|
kodiItem = ReadKodiDB().getKodiMovie(itemID)
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(None)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-20 04:40:29 +11:00
|
|
|
|
|
|
|
if(MB3Movie == None):
|
|
|
|
return False
|
|
|
|
|
2015-03-20 10:24:29 +11:00
|
|
|
if(kodiItem == None):
|
2015-03-20 04:40:29 +11:00
|
|
|
return False
|
|
|
|
|
|
|
|
userData=API().getUserData(MB3Movie)
|
|
|
|
timeInfo = API().getTimeInfo(MB3Movie)
|
|
|
|
if kodiItem != None:
|
2015-03-20 10:24:29 +11:00
|
|
|
|
2015-03-20 04:40:29 +11:00
|
|
|
kodiresume = int(round(kodiItem['resume'].get("position")))
|
|
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
|
|
if kodiresume != resume:
|
|
|
|
WriteKodiDB().setKodiResumePoint(kodiItem['movieid'],resume,total,"movie")
|
2015-03-20 10:24:29 +11:00
|
|
|
#write property forced will refresh the item in the list so playcount change is immediately visible
|
|
|
|
WriteKodiDB().updateProperty(kodiItem,"playcount",int(userData.get("PlayCount")),"movie",True)
|
2015-03-25 07:03:07 +11:00
|
|
|
WriteKodiDB().updateProperty(kodiItem,"lastplayed",userData.get("LastPlayedDate"), "movie")
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(None)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-20 04:40:29 +11:00
|
|
|
|
|
|
|
#process episode
|
|
|
|
elif type=='Episode':
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(None)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-20 04:40:29 +11:00
|
|
|
|
|
|
|
MB3Episode = ReadEmbyDB().getItem(itemID)
|
2015-03-21 22:33:59 +11:00
|
|
|
kodiItem = ReadKodiDB().getKodiEpisodeByMbItem(MB3Episode["Id"], MB3Episode["SeriesId"])
|
2015-03-20 04:40:29 +11:00
|
|
|
if (MB3Episode != None):
|
|
|
|
userData=API().getUserData(MB3Episode)
|
|
|
|
timeInfo = API().getTimeInfo(MB3Episode)
|
|
|
|
if kodiItem != None:
|
|
|
|
kodiresume = int(round(kodiItem['resume'].get("position")))
|
|
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
|
|
if kodiresume != resume:
|
|
|
|
WriteKodiDB().setKodiResumePoint(kodiItem['episodeid'],resume,total,"episode")
|
2015-03-20 10:24:29 +11:00
|
|
|
#write property forced will refresh the item in the list so playcount change is immediately visible
|
2015-03-25 07:03:07 +11:00
|
|
|
WriteKodiDB().updateProperty(kodiItem,"playcount",int(userData.get("PlayCount")),"episode",True)
|
|
|
|
WriteKodiDB().updateProperty(kodiItem,"lastplayed",userData.get("LastPlayedDate"), "episode")
|
2015-03-20 19:15:06 +11:00
|
|
|
if(self.ShouldStop(None)):
|
2015-03-27 11:16:45 +11:00
|
|
|
return False
|
2015-03-20 04:40:29 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
2015-03-20 19:15:06 +11:00
|
|
|
def ShouldStop(self, prog):
|
|
|
|
|
|
|
|
if(prog != None and type(prog) == xbmcgui.DialogProgress):
|
|
|
|
if(prog.iscanceled() == True):
|
|
|
|
return True
|
|
|
|
|
2015-03-16 14:10:41 +11:00
|
|
|
if(xbmc.Player().isPlaying() or xbmc.abortRequested):
|
|
|
|
return True
|
2015-04-03 19:39:16 +11:00
|
|
|
|
|
|
|
WINDOW = xbmcgui.Window( 10000 )
|
|
|
|
if(WINDOW.getProperty("SyncDatabaseShouldStop") == "true"):
|
|
|
|
return True
|
|
|
|
|
|
|
|
return False
|
2015-03-17 04:51:49 +11:00
|
|
|
|
2015-03-16 04:14:23 +11:00
|
|
|
|
|
|
|
|
|
|
|
|