2015-12-25 07:07:00 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
|
|
|
##################################################################################################
|
|
|
|
|
|
|
|
import sqlite3
|
|
|
|
import threading
|
|
|
|
from datetime import datetime, timedelta, time
|
|
|
|
|
|
|
|
import xbmc
|
|
|
|
import xbmcgui
|
|
|
|
import xbmcvfs
|
|
|
|
|
|
|
|
import api
|
|
|
|
import utils
|
|
|
|
import clientinfo
|
|
|
|
import downloadutils
|
|
|
|
import itemtypes
|
|
|
|
import embydb_functions as embydb
|
|
|
|
import kodidb_functions as kodidb
|
|
|
|
import read_embyserver as embyserver
|
|
|
|
import userclient
|
|
|
|
import videonodes
|
|
|
|
|
|
|
|
##################################################################################################
|
|
|
|
|
|
|
|
|
|
|
|
class LibrarySync(threading.Thread):
|
|
|
|
|
|
|
|
_shared_state = {}
|
|
|
|
|
|
|
|
stop_thread = False
|
|
|
|
suspend_thread = False
|
|
|
|
|
|
|
|
# Track websocketclient updates
|
|
|
|
addedItems = []
|
|
|
|
updateItems = []
|
|
|
|
userdataItems = []
|
|
|
|
removeItems = []
|
|
|
|
forceLibraryUpdate = False
|
|
|
|
refresh_views = False
|
|
|
|
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
|
|
|
|
self.__dict__ = self._shared_state
|
|
|
|
self.monitor = xbmc.Monitor()
|
|
|
|
|
|
|
|
self.clientInfo = clientinfo.ClientInfo()
|
|
|
|
self.addonName = self.clientInfo.getAddonName()
|
2016-02-17 19:13:37 +11:00
|
|
|
self.doUtils = downloadutils.DownloadUtils().downloadUrl
|
2015-12-25 07:07:00 +11:00
|
|
|
self.user = userclient.UserClient()
|
|
|
|
self.emby = embyserver.Read_EmbyServer()
|
|
|
|
self.vnodes = videonodes.VideoNodes()
|
|
|
|
|
|
|
|
threading.Thread.__init__(self)
|
|
|
|
|
|
|
|
def logMsg(self, msg, lvl=1):
|
|
|
|
|
|
|
|
className = self.__class__.__name__
|
|
|
|
utils.logMsg("%s %s" % (self.addonName, className), msg, lvl)
|
|
|
|
|
|
|
|
|
|
|
|
def progressDialog(self, title, forced=False):
|
|
|
|
|
|
|
|
dialog = None
|
|
|
|
|
|
|
|
if utils.settings('dbSyncIndicator') == "true" or forced:
|
|
|
|
dialog = xbmcgui.DialogProgressBG()
|
|
|
|
dialog.create("Emby for Kodi", title)
|
|
|
|
self.logMsg("Show progress dialog: %s" % title, 2)
|
|
|
|
|
|
|
|
return dialog
|
|
|
|
|
|
|
|
def startSync(self):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
settings = utils.settings
|
2015-12-25 07:07:00 +11:00
|
|
|
# Run at start up - optional to use the server plugin
|
2016-02-17 19:13:37 +11:00
|
|
|
if settings('SyncInstallRunDone') == "true":
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Validate views
|
|
|
|
self.refreshViews()
|
|
|
|
completed = False
|
|
|
|
# Verify if server plugin is installed.
|
2016-02-17 19:13:37 +11:00
|
|
|
if settings('serverSync') == "true":
|
2015-12-25 07:07:00 +11:00
|
|
|
# Try to use fast start up
|
|
|
|
url = "{server}/emby/Plugins?format=json"
|
2016-02-17 19:13:37 +11:00
|
|
|
result = self.doUtils(url)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
for plugin in result:
|
|
|
|
if plugin['Name'] == "Emby.Kodi Sync Queue":
|
|
|
|
self.logMsg("Found server plugin.", 2)
|
|
|
|
completed = self.fastSync()
|
2016-03-31 13:01:24 +11:00
|
|
|
break
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if not completed:
|
|
|
|
# Fast sync failed or server plugin is not found
|
2016-03-09 11:51:23 +11:00
|
|
|
completed = ManualSync().sync()
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
|
|
|
# Install sync is not completed
|
|
|
|
completed = self.fullSync()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
return completed
|
|
|
|
|
|
|
|
def fastSync(self):
|
|
|
|
|
|
|
|
lastSync = utils.settings('LastIncrementalSync')
|
|
|
|
if not lastSync:
|
|
|
|
lastSync = "2010-01-01T00:00:00Z"
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-05 12:09:47 +11:00
|
|
|
lastSyncTime = utils.convertdate(lastSync)
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Last sync run: %s" % lastSyncTime, 1)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-04 17:09:35 +11:00
|
|
|
# get server RetentionDateTime
|
2016-02-19 15:06:33 +11:00
|
|
|
url = "{server}/emby/Emby.Kodi.SyncQueue/GetServerDateTime?format=json"
|
2016-03-31 13:19:33 +11:00
|
|
|
result = self.doUtils(url)
|
2016-02-04 17:09:35 +11:00
|
|
|
retention_time = "2010-01-01T00:00:00Z"
|
2016-02-05 12:09:47 +11:00
|
|
|
if result and result.get('RetentionDateTime'):
|
2016-02-04 17:09:35 +11:00
|
|
|
retention_time = result['RetentionDateTime']
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
#Try/except equivalent
|
|
|
|
'''
|
|
|
|
try:
|
|
|
|
retention_time = result['RetentionDateTime']
|
|
|
|
except (TypeError, KeyError):
|
|
|
|
retention_time = "2010-01-01T00:00:00Z"
|
|
|
|
'''
|
|
|
|
|
2016-02-05 12:09:47 +11:00
|
|
|
retention_time = utils.convertdate(retention_time)
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("RetentionDateTime: %s" % retention_time, 1)
|
2016-02-04 17:09:35 +11:00
|
|
|
|
|
|
|
# if last sync before retention time do a full sync
|
|
|
|
if retention_time > lastSyncTime:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Fast sync server retention insufficient, fall back to full sync", 1)
|
2016-02-04 17:09:35 +11:00
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
url = "{server}/emby/Emby.Kodi.SyncQueue/{UserId}/GetItems?format=json"
|
|
|
|
params = {'LastUpdateDT': lastSync}
|
2016-03-31 13:19:33 +11:00
|
|
|
result = self.doUtils(url, parameters=params)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
try:
|
|
|
|
processlist = {
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
'added': result['ItemsAdded'],
|
|
|
|
'update': result['ItemsUpdated'],
|
|
|
|
'userdata': result['UserDataChanged'],
|
|
|
|
'remove': result['ItemsRemoved']
|
|
|
|
}
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
except (KeyError, TypeError):
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Failed to retrieve latest updates using fast sync.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Fast sync changes: %s" % result, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
for action in processlist:
|
|
|
|
self.triage_items(action, processlist[action])
|
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def saveLastSync(self):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Save last sync time
|
|
|
|
overlap = 2
|
|
|
|
|
2016-02-19 15:06:33 +11:00
|
|
|
url = "{server}/emby/Emby.Kodi.SyncQueue/GetServerDateTime?format=json"
|
2016-02-17 19:13:37 +11:00
|
|
|
result = self.doUtils(url)
|
2015-12-25 07:07:00 +11:00
|
|
|
try: # datetime fails when used more than once, TypeError
|
|
|
|
server_time = result['ServerDateTime']
|
2016-02-05 12:09:47 +11:00
|
|
|
server_time = utils.convertdate(server_time)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
except Exception as e:
|
|
|
|
# If the server plugin is not installed or an error happened.
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("An exception occurred: %s" % e, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
time_now = datetime.utcnow()-timedelta(minutes=overlap)
|
|
|
|
lastSync = time_now.strftime('%Y-%m-%dT%H:%M:%SZ')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("New sync time: client time -%s min: %s" % (overlap, lastSync), 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
else:
|
|
|
|
lastSync = (server_time - timedelta(minutes=overlap)).strftime('%Y-%m-%dT%H:%M:%SZ')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("New sync time: server time -%s min: %s" % (overlap, lastSync), 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
finally:
|
|
|
|
utils.settings('LastIncrementalSync', value=lastSync)
|
|
|
|
|
|
|
|
def shouldStop(self):
|
|
|
|
# Checkpoint during the syncing process
|
|
|
|
if self.monitor.abortRequested():
|
|
|
|
return True
|
|
|
|
elif utils.window('emby_shouldStop') == "true":
|
|
|
|
return True
|
|
|
|
else: # Keep going
|
|
|
|
return False
|
|
|
|
|
|
|
|
def dbCommit(self, connection):
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
window = utils.window
|
2015-12-25 07:07:00 +11:00
|
|
|
# Central commit, verifies if Kodi database update is running
|
2016-02-17 19:13:37 +11:00
|
|
|
kodidb_scan = window('emby_kodiScan') == "true"
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
while kodidb_scan:
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Kodi scan is running. Waiting...", 1)
|
2016-02-17 19:13:37 +11:00
|
|
|
kodidb_scan = window('emby_kodiScan') == "true"
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if self.shouldStop():
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Commit unsuccessful. Sync terminated.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
break
|
|
|
|
|
|
|
|
if self.monitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting. We should exit
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Commit unsuccessful.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
break
|
|
|
|
else:
|
|
|
|
connection.commit()
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Commit successful.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-19 12:16:49 +11:00
|
|
|
def fullSync(self, manualrun=False, repair=False, forceddialog=False):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
window = utils.window
|
|
|
|
settings = utils.settings
|
2015-12-25 07:07:00 +11:00
|
|
|
# Only run once when first setting up. Can be run manually.
|
|
|
|
music_enabled = utils.settings('enableMusic') == "true"
|
|
|
|
|
2016-02-22 10:43:46 +11:00
|
|
|
xbmc.executebuiltin('InhibitIdleShutdown(true)')
|
2016-03-03 11:25:17 +11:00
|
|
|
screensaver = utils.getScreensaver()
|
|
|
|
utils.setScreensaver(value="")
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_dbScan', value="true")
|
2015-12-25 07:07:00 +11:00
|
|
|
# Add sources
|
|
|
|
utils.sourcesXML()
|
|
|
|
|
|
|
|
embyconn = utils.kodiSQL('emby')
|
|
|
|
embycursor = embyconn.cursor()
|
|
|
|
# Create the tables for the emby database
|
|
|
|
# emby, view, version
|
|
|
|
embycursor.execute(
|
|
|
|
"""CREATE TABLE IF NOT EXISTS emby(
|
2016-03-31 13:01:24 +11:00
|
|
|
emby_id TEXT UNIQUE, media_folder TEXT, emby_type TEXT, media_type TEXT, kodi_id INTEGER,
|
2015-12-25 07:07:00 +11:00
|
|
|
kodi_fileid INTEGER, kodi_pathid INTEGER, parent_id INTEGER, checksum INTEGER)""")
|
|
|
|
embycursor.execute(
|
|
|
|
"""CREATE TABLE IF NOT EXISTS view(
|
|
|
|
view_id TEXT UNIQUE, view_name TEXT, media_type TEXT, kodi_tagid INTEGER)""")
|
|
|
|
embycursor.execute("CREATE TABLE IF NOT EXISTS version(idVersion TEXT)")
|
|
|
|
embyconn.commit()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# content sync: movies, tvshows, musicvideos, music
|
|
|
|
kodiconn = utils.kodiSQL('video')
|
|
|
|
kodicursor = kodiconn.cursor()
|
|
|
|
|
|
|
|
if manualrun:
|
|
|
|
message = "Manual sync"
|
|
|
|
elif repair:
|
|
|
|
message = "Repair sync"
|
2016-02-19 12:16:49 +11:00
|
|
|
forceddialog = True
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
|
|
|
message = "Initial sync"
|
2016-02-19 12:16:49 +11:00
|
|
|
forceddialog = True
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_initialScan', value="true")
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-19 12:16:49 +11:00
|
|
|
pDialog = self.progressDialog("%s" % message, forced=forceddialog)
|
2015-12-25 07:07:00 +11:00
|
|
|
starttotal = datetime.now()
|
|
|
|
|
|
|
|
# Set views
|
|
|
|
self.maintainViews(embycursor, kodicursor)
|
|
|
|
embyconn.commit()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Sync video library
|
|
|
|
process = {
|
|
|
|
|
|
|
|
'movies': self.movies,
|
|
|
|
'musicvideos': self.musicvideos,
|
2016-01-12 08:20:34 +11:00
|
|
|
'tvshows': self.tvshows
|
2015-12-25 07:07:00 +11:00
|
|
|
}
|
|
|
|
for itemtype in process:
|
|
|
|
startTime = datetime.now()
|
2016-01-23 19:29:30 +11:00
|
|
|
completed = process[itemtype](embycursor, kodicursor, pDialog)
|
2015-12-25 07:07:00 +11:00
|
|
|
if not completed:
|
2016-02-22 10:45:56 +11:00
|
|
|
xbmc.executebuiltin('InhibitIdleShutdown(false)')
|
2016-03-03 11:25:17 +11:00
|
|
|
utils.setScreensaver(value=screensaver)
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_dbScan', clear=True)
|
2015-12-25 07:07:00 +11:00
|
|
|
if pDialog:
|
|
|
|
pDialog.close()
|
|
|
|
|
|
|
|
embycursor.close()
|
|
|
|
kodicursor.close()
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
self.dbCommit(kodiconn)
|
|
|
|
embyconn.commit()
|
|
|
|
elapsedTime = datetime.now() - startTime
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("SyncDatabase (finished %s in: %s)"
|
2015-12-25 07:07:00 +11:00
|
|
|
% (itemtype, str(elapsedTime).split('.')[0]), 1)
|
2016-01-19 10:47:12 +11:00
|
|
|
else:
|
|
|
|
# Close the Kodi cursor
|
|
|
|
kodicursor.close()
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
# sync music
|
|
|
|
if music_enabled:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
musicconn = utils.kodiSQL('music')
|
|
|
|
musiccursor = musicconn.cursor()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
startTime = datetime.now()
|
2016-01-23 19:29:30 +11:00
|
|
|
completed = self.music(embycursor, musiccursor, pDialog)
|
2015-12-25 07:07:00 +11:00
|
|
|
if not completed:
|
2016-02-22 10:45:56 +11:00
|
|
|
xbmc.executebuiltin('InhibitIdleShutdown(false)')
|
2016-03-03 11:25:17 +11:00
|
|
|
utils.setScreensaver(value=screensaver)
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_dbScan', clear=True)
|
2015-12-25 07:07:00 +11:00
|
|
|
if pDialog:
|
|
|
|
pDialog.close()
|
|
|
|
|
|
|
|
embycursor.close()
|
|
|
|
musiccursor.close()
|
|
|
|
return False
|
|
|
|
else:
|
|
|
|
musicconn.commit()
|
|
|
|
embyconn.commit()
|
|
|
|
elapsedTime = datetime.now() - startTime
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("SyncDatabase (finished music in: %s)"
|
2015-12-25 07:07:00 +11:00
|
|
|
% (str(elapsedTime).split('.')[0]), 1)
|
|
|
|
musiccursor.close()
|
|
|
|
|
|
|
|
if pDialog:
|
|
|
|
pDialog.close()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
embycursor.close()
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
settings('SyncInstallRunDone', value="true")
|
|
|
|
settings("dbCreatedWithVersion", self.clientInfo.getVersion())
|
2015-12-25 07:07:00 +11:00
|
|
|
self.saveLastSync()
|
|
|
|
xbmc.executebuiltin('UpdateLibrary(video)')
|
|
|
|
elapsedtotal = datetime.now() - starttotal
|
|
|
|
|
2016-02-22 10:43:46 +11:00
|
|
|
xbmc.executebuiltin('InhibitIdleShutdown(false)')
|
2016-03-03 11:25:17 +11:00
|
|
|
utils.setScreensaver(value=screensaver)
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_dbScan', clear=True)
|
|
|
|
window('emby_initialScan', clear=True)
|
2016-02-22 17:16:32 +11:00
|
|
|
if forceddialog:
|
|
|
|
xbmcgui.Dialog().notification(
|
2015-12-25 07:07:00 +11:00
|
|
|
heading="Emby for Kodi",
|
2016-03-31 13:01:24 +11:00
|
|
|
message="%s %s %s" %
|
2016-02-17 19:13:37 +11:00
|
|
|
(message, utils.language(33025), str(elapsedtotal).split('.')[0]),
|
2015-12-25 07:07:00 +11:00
|
|
|
icon="special://home/addons/plugin.video.emby/icon.png",
|
|
|
|
sound=False)
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def refreshViews(self):
|
|
|
|
|
|
|
|
embyconn = utils.kodiSQL('emby')
|
|
|
|
embycursor = embyconn.cursor()
|
|
|
|
kodiconn = utils.kodiSQL('video')
|
|
|
|
kodicursor = kodiconn.cursor()
|
|
|
|
|
|
|
|
# Compare views, assign correct tags to items
|
|
|
|
self.maintainViews(embycursor, kodicursor)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
self.dbCommit(kodiconn)
|
|
|
|
kodicursor.close()
|
|
|
|
|
|
|
|
embyconn.commit()
|
|
|
|
embycursor.close()
|
|
|
|
|
|
|
|
def maintainViews(self, embycursor, kodicursor):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Compare the views to emby
|
2016-03-02 11:00:19 +11:00
|
|
|
emby = self.emby
|
2015-12-25 07:07:00 +11:00
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
kodi_db = kodidb.Kodidb_Functions(kodicursor)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get views
|
|
|
|
url = "{server}/emby/Users/{UserId}/Views?format=json"
|
2016-03-31 13:28:08 +11:00
|
|
|
result = self.doUtils(url)
|
2015-12-25 07:07:00 +11:00
|
|
|
grouped_views = result['Items']
|
2016-03-02 11:59:08 +11:00
|
|
|
ordered_views = emby.getViews(sortedlist=True)
|
2016-03-04 16:32:33 +11:00
|
|
|
all_views = []
|
2016-03-04 16:54:53 +11:00
|
|
|
sorted_views = []
|
2016-02-25 15:28:42 +11:00
|
|
|
for view in ordered_views:
|
2016-03-04 16:32:33 +11:00
|
|
|
all_views.append(view['name'])
|
2016-02-25 15:28:42 +11:00
|
|
|
if view['type'] == "music":
|
|
|
|
continue
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-25 15:28:42 +11:00
|
|
|
if view['type'] == "mixed":
|
|
|
|
sorted_views.append(view['name'])
|
|
|
|
sorted_views.append(view['name'])
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Sorted views: %s" % sorted_views, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
# total nodes for window properties
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.clearProperties()
|
2016-03-02 11:59:08 +11:00
|
|
|
totalnodes = len(sorted_views) + 0
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-25 15:28:42 +11:00
|
|
|
current_views = emby_db.getViews()
|
2015-12-25 07:07:00 +11:00
|
|
|
# Set views for supported media type
|
2016-03-03 07:50:08 +11:00
|
|
|
emby_mediatypes = {
|
|
|
|
|
|
|
|
'movies': "Movie",
|
|
|
|
'tvshows': "Series",
|
|
|
|
'musicvideos': "MusicVideo",
|
|
|
|
'homevideos': "Video",
|
|
|
|
'music': "Audio",
|
|
|
|
'photos': "Photo"
|
|
|
|
}
|
2016-01-12 08:20:34 +11:00
|
|
|
mediatypes = ['movies', 'tvshows', 'musicvideos', 'homevideos', 'music', 'photos']
|
2015-12-25 07:07:00 +11:00
|
|
|
for mediatype in mediatypes:
|
|
|
|
|
2016-02-20 11:06:36 +11:00
|
|
|
nodes = [] # Prevent duplicate for nodes of the same type
|
2016-02-23 17:00:24 +11:00
|
|
|
playlists = [] # Prevent duplicate for playlists of the same type
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get media folders from server
|
2016-03-02 11:00:19 +11:00
|
|
|
folders = emby.getViews(mediatype, root=True)
|
2015-12-25 07:07:00 +11:00
|
|
|
for folder in folders:
|
|
|
|
|
|
|
|
folderid = folder['id']
|
|
|
|
foldername = folder['name']
|
|
|
|
viewtype = folder['type']
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-03-04 16:32:33 +11:00
|
|
|
if foldername not in all_views:
|
2015-12-25 07:07:00 +11:00
|
|
|
# Media folders are grouped into userview
|
2016-03-02 11:00:19 +11:00
|
|
|
url = "{server}/emby/Users/{UserId}/Items?format=json"
|
|
|
|
params = {
|
|
|
|
'ParentId': folderid,
|
2016-03-04 16:32:33 +11:00
|
|
|
'Recursive': True,
|
2016-03-03 07:50:08 +11:00
|
|
|
'Limit': 1,
|
|
|
|
'IncludeItemTypes': emby_mediatypes[mediatype]
|
2016-03-02 11:00:19 +11:00
|
|
|
} # Get one item from server using the folderid
|
2016-03-31 13:28:08 +11:00
|
|
|
result = self.doUtils(url, parameters=params)
|
2016-03-02 11:00:19 +11:00
|
|
|
try:
|
|
|
|
verifyitem = result['Items'][0]['Id']
|
|
|
|
except (TypeError, IndexError):
|
|
|
|
# Something is wrong. Keep the same folder name.
|
|
|
|
# Could be the view is empty or the connection
|
|
|
|
pass
|
|
|
|
else:
|
|
|
|
for grouped_view in grouped_views:
|
|
|
|
# This is only reserved for the detection of grouped views
|
2016-03-31 13:01:24 +11:00
|
|
|
if (grouped_view['Type'] == "UserView" and
|
2016-03-02 11:00:19 +11:00
|
|
|
grouped_view.get('CollectionType') == mediatype):
|
|
|
|
# Take the userview, and validate the item belong to the view
|
|
|
|
if emby.verifyView(grouped_view['Id'], verifyitem):
|
|
|
|
# Take the name of the userview
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Found corresponding view: %s %s"
|
2016-03-03 07:50:08 +11:00
|
|
|
% (grouped_view['Name'], grouped_view['Id']), 1)
|
2016-03-02 11:00:19 +11:00
|
|
|
foldername = grouped_view['Name']
|
|
|
|
break
|
2016-03-03 07:50:08 +11:00
|
|
|
else:
|
|
|
|
# Unable to find a match, add the name to our sorted_view list
|
|
|
|
sorted_views.append(foldername)
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Couldn't find corresponding grouped view: %s" % sorted_views, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-03-31 13:01:24 +11:00
|
|
|
# Failsafe
|
2016-03-04 16:32:33 +11:00
|
|
|
try:
|
|
|
|
sorted_views.index(foldername)
|
|
|
|
except ValueError:
|
|
|
|
sorted_views.append(foldername)
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get current media folders from emby database
|
|
|
|
view = emby_db.getView_byId(folderid)
|
|
|
|
try:
|
|
|
|
current_viewname = view[0]
|
|
|
|
current_viewtype = view[1]
|
|
|
|
current_tagid = view[2]
|
|
|
|
|
|
|
|
except TypeError:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Creating viewid: %s in Emby database." % folderid, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
tagid = kodi_db.createTag(foldername)
|
|
|
|
# Create playlist for the video library
|
2016-02-23 17:00:24 +11:00
|
|
|
if (foldername not in playlists and
|
|
|
|
mediatype in ('movies', 'tvshows', 'musicvideos')):
|
|
|
|
utils.playlistXSP(mediatype, foldername, folderid, viewtype)
|
|
|
|
playlists.append(foldername)
|
2016-01-19 06:17:14 +11:00
|
|
|
# Create the video node
|
2016-02-25 15:28:42 +11:00
|
|
|
if foldername not in nodes and mediatype not in ("musicvideos", "music"):
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.viewNode(sorted_views.index(foldername), foldername, mediatype,
|
2016-02-25 15:28:42 +11:00
|
|
|
viewtype, folderid)
|
|
|
|
if viewtype == "mixed": # Change the value
|
|
|
|
sorted_views[sorted_views.index(foldername)] = "%ss" % foldername
|
2016-02-20 11:06:36 +11:00
|
|
|
nodes.append(foldername)
|
2016-01-19 06:17:14 +11:00
|
|
|
totalnodes += 1
|
2015-12-25 07:07:00 +11:00
|
|
|
# Add view to emby database
|
|
|
|
emby_db.addView(folderid, foldername, viewtype, tagid)
|
|
|
|
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg(' '.join((
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
"Found viewid: %s" % folderid,
|
|
|
|
"viewname: %s" % current_viewname,
|
|
|
|
"viewtype: %s" % current_viewtype,
|
|
|
|
"tagid: %s" % current_tagid)), 2)
|
|
|
|
|
2016-02-25 15:28:42 +11:00
|
|
|
# View is still valid
|
|
|
|
try:
|
|
|
|
current_views.remove(folderid)
|
|
|
|
except ValueError:
|
|
|
|
# View was just created, nothing to remove
|
|
|
|
pass
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# View was modified, update with latest info
|
|
|
|
if current_viewname != foldername:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("viewid: %s new viewname: %s" % (folderid, foldername), 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
tagid = kodi_db.createTag(foldername)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Update view with new info
|
|
|
|
emby_db.updateView(foldername, tagid, folderid)
|
|
|
|
|
|
|
|
if mediatype != "music":
|
|
|
|
if emby_db.getView_byName(current_viewname) is None:
|
|
|
|
# The tag could be a combined view. Ensure there's no other tags
|
|
|
|
# with the same name before deleting playlist.
|
|
|
|
utils.playlistXSP(
|
2016-02-23 17:00:24 +11:00
|
|
|
mediatype, current_viewname, folderid, current_viewtype, True)
|
2015-12-25 07:07:00 +11:00
|
|
|
# Delete video node
|
|
|
|
if mediatype != "musicvideos":
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.viewNode(
|
2016-03-02 11:59:08 +11:00
|
|
|
indexnumber=None,
|
2015-12-25 07:07:00 +11:00
|
|
|
tagname=current_viewname,
|
|
|
|
mediatype=mediatype,
|
|
|
|
viewtype=current_viewtype,
|
2016-02-23 17:00:24 +11:00
|
|
|
viewid=folderid,
|
2015-12-25 07:07:00 +11:00
|
|
|
delete=True)
|
|
|
|
# Added new playlist
|
2016-02-23 17:00:24 +11:00
|
|
|
if (foldername not in playlists and
|
|
|
|
mediatype in ('movies', 'tvshows', 'musicvideos')):
|
|
|
|
utils.playlistXSP(mediatype, foldername, folderid, viewtype)
|
|
|
|
playlists.append(foldername)
|
2015-12-25 07:07:00 +11:00
|
|
|
# Add new video node
|
2016-02-25 11:34:50 +11:00
|
|
|
if foldername not in nodes and mediatype != "musicvideos":
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.viewNode(sorted_views.index(foldername), foldername,
|
2016-02-25 15:28:42 +11:00
|
|
|
mediatype, viewtype, folderid)
|
|
|
|
if viewtype == "mixed": # Change the value
|
|
|
|
sorted_views[sorted_views.index(foldername)] = "%ss" % foldername
|
2016-02-20 11:06:36 +11:00
|
|
|
nodes.append(foldername)
|
2015-12-25 07:07:00 +11:00
|
|
|
totalnodes += 1
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Update items with new tag
|
|
|
|
items = emby_db.getItem_byView(folderid)
|
|
|
|
for item in items:
|
|
|
|
# Remove the "s" from viewtype for tags
|
|
|
|
kodi_db.updateTag(
|
|
|
|
current_tagid, tagid, item[0], current_viewtype[:-1])
|
|
|
|
else:
|
2016-02-20 11:06:36 +11:00
|
|
|
# Validate the playlist exists or recreate it
|
2016-02-25 11:39:21 +11:00
|
|
|
if mediatype != "music":
|
|
|
|
if (foldername not in playlists and
|
|
|
|
mediatype in ('movies', 'tvshows', 'musicvideos')):
|
|
|
|
utils.playlistXSP(mediatype, foldername, folderid, viewtype)
|
|
|
|
playlists.append(foldername)
|
|
|
|
# Create the video node if not already exists
|
|
|
|
if foldername not in nodes and mediatype != "musicvideos":
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.viewNode(sorted_views.index(foldername), foldername,
|
2016-02-25 15:28:42 +11:00
|
|
|
mediatype, viewtype, folderid)
|
|
|
|
if viewtype == "mixed": # Change the value
|
|
|
|
sorted_views[sorted_views.index(foldername)] = "%ss" % foldername
|
2016-02-25 11:39:21 +11:00
|
|
|
nodes.append(foldername)
|
|
|
|
totalnodes += 1
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
|
|
|
# Add video nodes listings
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.singleNode(totalnodes, "Favorite movies", "movies", "favourites")
|
2015-12-25 07:07:00 +11:00
|
|
|
totalnodes += 1
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.singleNode(totalnodes, "Favorite tvshows", "tvshows", "favourites")
|
2015-12-25 07:07:00 +11:00
|
|
|
totalnodes += 1
|
2016-03-31 13:29:24 +11:00
|
|
|
self.vnodes.singleNode(totalnodes, "channels", "movies", "channels")
|
2015-12-25 07:07:00 +11:00
|
|
|
totalnodes += 1
|
|
|
|
# Save total
|
|
|
|
utils.window('Emby.nodes.total', str(totalnodes))
|
|
|
|
|
2016-02-25 15:28:42 +11:00
|
|
|
# Remove any old referenced views
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Removing views: %s" % current_views, 1)
|
2016-02-25 15:28:42 +11:00
|
|
|
for view in current_views:
|
|
|
|
emby_db.removeView(view)
|
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
def movies(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
lang = utils.language
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get movies from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
movies = itemtypes.Movies(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('movies')
|
|
|
|
views += emby_db.getView_byType('mixed')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
##### PROCESS MOVIES #####
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (lang(33017), viewName))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Initial or repair sync
|
|
|
|
all_embymovies = emby.getMovies(viewId, dialog=pdialog)
|
|
|
|
total = all_embymovies['TotalRecordCount']
|
|
|
|
embymovies = all_embymovies['Items']
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embymovie in embymovies:
|
|
|
|
# Process individual movies
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
title = embymovie['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
movies.add_update(embymovie, viewName, viewId)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Movies finished.", 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
|
|
|
|
##### PROCESS BOXSETS #####
|
|
|
|
if pdialog:
|
2016-02-17 19:13:37 +11:00
|
|
|
pdialog.update(heading="Emby for Kodi", message=lang(33018))
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-18 20:23:56 +11:00
|
|
|
boxsets = emby.getBoxset(dialog=pdialog)
|
2016-01-23 19:29:30 +11:00
|
|
|
total = boxsets['TotalRecordCount']
|
|
|
|
embyboxsets = boxsets['Items']
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing Boxsets / %s items" % total)
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for boxset in embyboxsets:
|
|
|
|
# Process individual boxset
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
title = boxset['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
movies.add_updateBoxset(boxset)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Boxsets finished.", 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
def musicvideos(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get musicvideos from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
mvideos = itemtypes.MusicVideos(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('musicvideos')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (utils.language(33019), viewName))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Initial or repair sync
|
|
|
|
all_embymvideos = emby.getMusicVideos(viewId, dialog=pdialog)
|
|
|
|
total = all_embymvideos['TotalRecordCount']
|
|
|
|
embymvideos = all_embymvideos['Items']
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embymvideo in embymvideos:
|
|
|
|
# Process individual musicvideo
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
title = embymvideo['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
mvideos.add_update(embymvideo, viewName, viewId)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("MusicVideos finished.", 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
def tvshows(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get shows from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
tvshows = itemtypes.TVShows(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('tvshows')
|
|
|
|
views += emby_db.getView_byType('mixed')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (utils.language(33020), viewName))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
all_embytvshows = emby.getShows(viewId, dialog=pdialog)
|
|
|
|
total = all_embytvshows['TotalRecordCount']
|
|
|
|
embytvshows = all_embytvshows['Items']
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embytvshow in embytvshows:
|
|
|
|
# Process individual show
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
itemid = embytvshow['Id']
|
|
|
|
title = embytvshow['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
tvshows.add_update(embytvshow, viewName, viewId)
|
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Process episodes
|
|
|
|
all_episodes = emby.getEpisodesbyShow(itemid)
|
|
|
|
for episode in all_episodes['Items']:
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Process individual show
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
episodetitle = episode['Name']
|
2015-12-25 07:07:00 +11:00
|
|
|
if pdialog:
|
2016-01-23 19:29:30 +11:00
|
|
|
pdialog.update(percentage, message="%s - %s" % (title, episodetitle))
|
|
|
|
tvshows.add_updateEpisode(episode)
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("TVShows finished.", 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
def music(self, embycursor, kodicursor, pdialog):
|
2015-12-25 07:07:00 +11:00
|
|
|
# Get music from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
music = itemtypes.Music(embycursor, kodicursor)
|
|
|
|
|
|
|
|
process = {
|
|
|
|
|
|
|
|
'artists': [emby.getArtists, music.add_updateArtist],
|
|
|
|
'albums': [emby.getAlbums, music.add_updateAlbum],
|
|
|
|
'songs': [emby.getSongs, music.add_updateSong]
|
|
|
|
}
|
|
|
|
types = ['artists', 'albums', 'songs']
|
2016-02-17 19:13:37 +11:00
|
|
|
for itemtype in types:
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (utils.language(33021), itemtype))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
all_embyitems = process[itemtype][0](dialog=pdialog)
|
2016-01-23 19:29:30 +11:00
|
|
|
total = all_embyitems['TotalRecordCount']
|
|
|
|
embyitems = all_embyitems['Items']
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if pdialog:
|
2016-02-17 19:13:37 +11:00
|
|
|
pdialog.update(heading="Processing %s / %s items" % (itemtype, total))
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embyitem in embyitems:
|
|
|
|
# Process individual item
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
title = embyitem['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
process[itemtype][1](embyitem)
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
2016-02-17 19:13:37 +11:00
|
|
|
self.logMsg("%s finished." % itemtype, 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
# Reserved for websocket_client.py and fast start
|
|
|
|
def triage_items(self, process, items):
|
|
|
|
|
|
|
|
processlist = {
|
|
|
|
|
|
|
|
'added': self.addedItems,
|
|
|
|
'update': self.updateItems,
|
|
|
|
'userdata': self.userdataItems,
|
|
|
|
'remove': self.removeItems
|
|
|
|
}
|
|
|
|
if items:
|
|
|
|
if process == "userdata":
|
|
|
|
itemids = []
|
|
|
|
for item in items:
|
|
|
|
itemids.append(item['ItemId'])
|
|
|
|
items = itemids
|
|
|
|
|
|
|
|
self.logMsg("Queue %s: %s" % (process, items), 1)
|
|
|
|
processlist[process].extend(items)
|
|
|
|
|
|
|
|
def incrementalSync(self):
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
embyconn = utils.kodiSQL('emby')
|
|
|
|
embycursor = embyconn.cursor()
|
|
|
|
kodiconn = utils.kodiSQL('video')
|
|
|
|
kodicursor = kodiconn.cursor()
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
pDialog = None
|
2016-02-10 15:50:31 +11:00
|
|
|
update_embydb = False
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if self.refresh_views:
|
|
|
|
# Received userconfig update
|
|
|
|
self.refresh_views = False
|
|
|
|
self.maintainViews(embycursor, kodicursor)
|
|
|
|
self.forceLibraryUpdate = True
|
2016-02-10 15:50:31 +11:00
|
|
|
update_embydb = True
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if self.addedItems or self.updateItems or self.userdataItems or self.removeItems:
|
|
|
|
# Only present dialog if we are going to process items
|
|
|
|
pDialog = self.progressDialog('Incremental sync')
|
|
|
|
|
|
|
|
|
|
|
|
process = {
|
|
|
|
|
|
|
|
'added': self.addedItems,
|
|
|
|
'update': self.updateItems,
|
|
|
|
'userdata': self.userdataItems,
|
|
|
|
'remove': self.removeItems
|
|
|
|
}
|
|
|
|
types = ['added', 'update', 'userdata', 'remove']
|
|
|
|
for type in types:
|
|
|
|
|
|
|
|
if process[type] and utils.window('emby_kodiScan') != "true":
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
listItems = list(process[type])
|
|
|
|
del process[type][:] # Reset class list
|
|
|
|
|
|
|
|
items_process = itemtypes.Items(embycursor, kodicursor)
|
|
|
|
update = False
|
|
|
|
|
|
|
|
# Prepare items according to process type
|
|
|
|
if type == "added":
|
|
|
|
items = emby.sortby_mediatype(listItems)
|
|
|
|
|
|
|
|
elif type in ("userdata", "remove"):
|
|
|
|
items = emby_db.sortby_mediaType(listItems, unsorted=False)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
|
|
|
items = emby_db.sortby_mediaType(listItems)
|
|
|
|
if items.get('Unsorted'):
|
|
|
|
sorted_items = emby.sortby_mediatype(items['Unsorted'])
|
|
|
|
doupdate = items_process.itemsbyId(sorted_items, "added", pDialog)
|
|
|
|
if doupdate:
|
2016-02-10 15:50:31 +11:00
|
|
|
embyupdate, kodiupdate_video = doupdate
|
|
|
|
if embyupdate:
|
|
|
|
update_embydb = True
|
|
|
|
if kodiupdate_video:
|
|
|
|
self.forceLibraryUpdate = True
|
2015-12-25 07:07:00 +11:00
|
|
|
del items['Unsorted']
|
|
|
|
|
|
|
|
doupdate = items_process.itemsbyId(items, type, pDialog)
|
|
|
|
if doupdate:
|
2016-02-10 15:50:31 +11:00
|
|
|
embyupdate, kodiupdate_video = doupdate
|
|
|
|
if embyupdate:
|
|
|
|
update_embydb = True
|
|
|
|
if kodiupdate_video:
|
|
|
|
self.forceLibraryUpdate = True
|
|
|
|
|
|
|
|
if update_embydb:
|
|
|
|
update_embydb = False
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Updating emby database.", 1)
|
2016-02-10 15:50:31 +11:00
|
|
|
embyconn.commit()
|
|
|
|
self.saveLastSync()
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if self.forceLibraryUpdate:
|
|
|
|
# Force update the Kodi library
|
|
|
|
self.forceLibraryUpdate = False
|
|
|
|
self.dbCommit(kodiconn)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Updating video library.", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
utils.window('emby_kodiScan', value="true")
|
|
|
|
xbmc.executebuiltin('UpdateLibrary(video)')
|
|
|
|
|
|
|
|
if pDialog:
|
|
|
|
pDialog.close()
|
|
|
|
|
|
|
|
kodicursor.close()
|
|
|
|
embycursor.close()
|
|
|
|
|
|
|
|
|
|
|
|
def compareDBVersion(self, current, minimum):
|
|
|
|
# It returns True is database is up to date. False otherwise.
|
|
|
|
self.logMsg("current: %s minimum: %s" % (current, minimum), 1)
|
|
|
|
currMajor, currMinor, currPatch = current.split(".")
|
|
|
|
minMajor, minMinor, minPatch = minimum.split(".")
|
|
|
|
|
|
|
|
if currMajor > minMajor:
|
|
|
|
return True
|
|
|
|
elif currMajor == minMajor and (currMinor > minMinor or
|
|
|
|
(currMinor == minMinor and currPatch >= minPatch)):
|
|
|
|
return True
|
|
|
|
else:
|
|
|
|
# Database out of date.
|
|
|
|
return False
|
|
|
|
|
|
|
|
def run(self):
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
try:
|
|
|
|
self.run_internal()
|
|
|
|
except Exception as e:
|
2016-01-13 15:52:49 +11:00
|
|
|
utils.window('emby_dbScan', clear=True)
|
2015-12-25 07:07:00 +11:00
|
|
|
xbmcgui.Dialog().ok(
|
|
|
|
heading="Emby for Kodi",
|
|
|
|
line1=(
|
|
|
|
"Library sync thread has exited! "
|
|
|
|
"You should restart Kodi now. "
|
|
|
|
"Please report this on the forum."))
|
|
|
|
raise
|
|
|
|
|
|
|
|
def run_internal(self):
|
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
lang = utils.language
|
|
|
|
window = utils.window
|
|
|
|
settings = utils.settings
|
|
|
|
dialog = xbmcgui.Dialog()
|
|
|
|
|
2015-12-25 07:07:00 +11:00
|
|
|
startupComplete = False
|
|
|
|
monitor = self.monitor
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("---===### Starting LibrarySync ###===---", 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
while not monitor.abortRequested():
|
|
|
|
|
|
|
|
# In the event the server goes offline
|
|
|
|
while self.suspend_thread:
|
|
|
|
# Set in service.py
|
|
|
|
if monitor.waitForAbort(5):
|
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
if (window('emby_dbCheck') != "true" and settings('SyncInstallRunDone') == "true"):
|
2015-12-25 07:07:00 +11:00
|
|
|
# Verify the validity of the database
|
2016-02-17 19:13:37 +11:00
|
|
|
currentVersion = settings('dbCreatedWithVersion')
|
|
|
|
minVersion = window('emby_minDBVersion')
|
2015-12-25 07:07:00 +11:00
|
|
|
uptoDate = self.compareDBVersion(currentVersion, minVersion)
|
|
|
|
|
|
|
|
if not uptoDate:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Database version out of date: %s minimum version required: %s"
|
2015-12-25 07:07:00 +11:00
|
|
|
% (currentVersion, minVersion), 0)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
resp = dialog.yesno("Emby for Kodi", lang(33022))
|
2015-12-25 07:07:00 +11:00
|
|
|
if not resp:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Database version is out of date! USER IGNORED!", 0)
|
2016-02-17 19:13:37 +11:00
|
|
|
dialog.ok("Emby for Kodi", lang(33023))
|
2015-12-25 07:07:00 +11:00
|
|
|
else:
|
|
|
|
utils.reset()
|
|
|
|
|
2016-03-02 03:49:16 +11:00
|
|
|
break
|
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_dbCheck', value="true")
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
|
|
|
|
if not startupComplete:
|
|
|
|
# Verify the video database can be found
|
|
|
|
videoDb = utils.getKodiVideoDBPath()
|
|
|
|
if not xbmcvfs.exists(videoDb):
|
|
|
|
# Database does not exists
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg(
|
2016-02-17 19:13:37 +11:00
|
|
|
"The current Kodi version is incompatible "
|
|
|
|
"with the Emby for Kodi add-on. Please visit "
|
|
|
|
"https://github.com/MediaBrowser/Emby.Kodi/wiki "
|
|
|
|
"to know which Kodi versions are supported.", 0)
|
|
|
|
|
|
|
|
dialog.ok(
|
|
|
|
heading="Emby for Kodi",
|
|
|
|
line1=lang(33024))
|
2015-12-25 07:07:00 +11:00
|
|
|
break
|
|
|
|
|
|
|
|
# Run start up sync
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Database version: %s" % settings('dbCreatedWithVersion'), 0)
|
|
|
|
self.logMsg("SyncDatabase (started)", 1)
|
2015-12-25 07:07:00 +11:00
|
|
|
startTime = datetime.now()
|
|
|
|
librarySync = self.startSync()
|
|
|
|
elapsedTime = datetime.now() - startTime
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("SyncDatabase (finished in: %s) %s"
|
2015-12-25 07:07:00 +11:00
|
|
|
% (str(elapsedTime).split('.')[0], librarySync), 1)
|
|
|
|
# Only try the initial sync once per kodi session regardless
|
|
|
|
# This will prevent an infinite loop in case something goes wrong.
|
|
|
|
startupComplete = True
|
|
|
|
|
|
|
|
# Process updates
|
2016-02-17 19:13:37 +11:00
|
|
|
if window('emby_dbScan') != "true":
|
2015-12-25 07:07:00 +11:00
|
|
|
self.incrementalSync()
|
|
|
|
|
2016-02-17 19:13:37 +11:00
|
|
|
if window('emby_onWake') == "true" and window('emby_online') == "true":
|
2015-12-25 07:07:00 +11:00
|
|
|
# Kodi is waking up
|
|
|
|
# Set in kodimonitor.py
|
2016-02-17 19:13:37 +11:00
|
|
|
window('emby_onWake', clear=True)
|
|
|
|
if window('emby_syncRunning') != "true":
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("SyncDatabase onWake (started)", 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
librarySync = self.startSync()
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("SyncDatabase onWake (finished) %s" % librarySync, 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
if self.stop_thread:
|
|
|
|
# Set in service.py
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Service terminated thread.", 2)
|
2015-12-25 07:07:00 +11:00
|
|
|
break
|
|
|
|
|
|
|
|
if monitor.waitForAbort(1):
|
|
|
|
# Abort was requested while waiting. We should exit
|
|
|
|
break
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("###===--- LibrarySync Stopped ---===###", 0)
|
2015-12-25 07:07:00 +11:00
|
|
|
|
|
|
|
def stopThread(self):
|
|
|
|
self.stop_thread = True
|
|
|
|
self.logMsg("Ending thread...", 2)
|
|
|
|
|
|
|
|
def suspendThread(self):
|
|
|
|
self.suspend_thread = True
|
|
|
|
self.logMsg("Pausing thread...", 0)
|
|
|
|
|
|
|
|
def resumeThread(self):
|
|
|
|
self.suspend_thread = False
|
2016-01-23 19:29:30 +11:00
|
|
|
self.logMsg("Resuming thread...", 0)
|
2016-01-23 19:32:51 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
class ManualSync(LibrarySync):
|
|
|
|
|
|
|
|
|
2016-03-09 11:51:23 +11:00
|
|
|
def __init__(self):
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
LibrarySync.__init__(self)
|
|
|
|
|
2016-03-09 11:51:23 +11:00
|
|
|
def sync(self, dialog=False):
|
|
|
|
|
|
|
|
return self.fullSync(manualrun=True, forceddialog=dialog)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
def movies(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
lang = utils.language
|
2016-01-23 19:29:30 +11:00
|
|
|
# Get movies from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
movies = itemtypes.Movies(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('movies')
|
|
|
|
views += emby_db.getView_byType('mixed')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
# Pull the list of movies and boxsets in Kodi
|
|
|
|
try:
|
|
|
|
all_kodimovies = dict(emby_db.getChecksum('Movie'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodimovies = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
all_kodisets = dict(emby_db.getChecksum('BoxSet'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodisets = {}
|
|
|
|
|
|
|
|
all_embymoviesIds = set()
|
|
|
|
all_embyboxsetsIds = set()
|
|
|
|
updatelist = []
|
|
|
|
|
|
|
|
##### PROCESS MOVIES #####
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (lang(33026), viewName))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
all_embymovies = emby.getMovies(viewId, basic=True, dialog=pdialog)
|
|
|
|
for embymovie in all_embymovies['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
API = api.API(embymovie)
|
|
|
|
itemid = embymovie['Id']
|
|
|
|
all_embymoviesIds.add(itemid)
|
|
|
|
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if all_kodimovies.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if movie is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Movies to update for %s: %s" % (viewName, updatelist), 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
embymovies = emby.getFullItems(updatelist)
|
|
|
|
total = len(updatelist)
|
|
|
|
del updatelist[:]
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embymovie in embymovies:
|
|
|
|
# Process individual movies
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
title = embymovie['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
movies.add_update(embymovie, viewName, viewId)
|
|
|
|
|
|
|
|
##### PROCESS BOXSETS #####
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
boxsets = emby.getBoxset(dialog=pdialog)
|
|
|
|
embyboxsets = []
|
|
|
|
|
|
|
|
if pdialog:
|
2016-02-20 08:50:19 +11:00
|
|
|
pdialog.update(heading="Emby for Kodi", message=lang(33027))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
for boxset in boxsets['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Boxset has no real userdata, so using etag to compare
|
|
|
|
checksum = boxset['Etag']
|
|
|
|
itemid = boxset['Id']
|
|
|
|
all_embyboxsetsIds.add(itemid)
|
|
|
|
|
|
|
|
if all_kodisets.get(itemid) != checksum:
|
|
|
|
# Only update if boxset is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
embyboxsets.append(boxset)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Boxsets to update: %s" % updatelist, 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
total = len(updatelist)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing Boxsets / %s items" % total)
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for boxset in embyboxsets:
|
|
|
|
# Process individual boxset
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
title = boxset['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
movies.add_updateBoxset(boxset)
|
|
|
|
|
|
|
|
##### PROCESS DELETES #####
|
|
|
|
|
|
|
|
for kodimovie in all_kodimovies:
|
|
|
|
if kodimovie not in all_embymoviesIds:
|
|
|
|
movies.remove(kodimovie)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Movies compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
for boxset in all_kodisets:
|
|
|
|
if boxset not in all_embyboxsetsIds:
|
|
|
|
movies.remove(boxset)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Boxsets compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def musicvideos(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Get musicvideos from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
mvideos = itemtypes.MusicVideos(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('musicvideos')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
# Pull the list of musicvideos in Kodi
|
|
|
|
try:
|
|
|
|
all_kodimvideos = dict(emby_db.getChecksum('MusicVideo'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodimvideos = {}
|
|
|
|
|
|
|
|
all_embymvideosIds = set()
|
|
|
|
updatelist = []
|
|
|
|
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (utils.language(33028), viewName))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
all_embymvideos = emby.getMusicVideos(viewId, basic=True, dialog=pdialog)
|
|
|
|
for embymvideo in all_embymvideos['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
API = api.API(embymvideo)
|
|
|
|
itemid = embymvideo['Id']
|
|
|
|
all_embymvideosIds.add(itemid)
|
|
|
|
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if all_kodimvideos.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if musicvideo is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("MusicVideos to update for %s: %s" % (viewName, updatelist), 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
embymvideos = emby.getFullItems(updatelist)
|
|
|
|
total = len(updatelist)
|
|
|
|
del updatelist[:]
|
|
|
|
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embymvideo in embymvideos:
|
|
|
|
# Process individual musicvideo
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
title = embymvideo['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
mvideos.add_update(embymvideo, viewName, viewId)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
##### PROCESS DELETES #####
|
|
|
|
|
|
|
|
for kodimvideo in all_kodimvideos:
|
|
|
|
if kodimvideo not in all_embymvideosIds:
|
|
|
|
mvideos.remove(kodimvideo)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("MusicVideos compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def tvshows(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
|
|
|
lang = utils.language
|
2016-01-23 19:29:30 +11:00
|
|
|
# Get shows from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
tvshows = itemtypes.TVShows(embycursor, kodicursor)
|
|
|
|
|
|
|
|
views = emby_db.getView_byType('tvshows')
|
|
|
|
views += emby_db.getView_byType('mixed')
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Media folders: %s" % views, 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
# Pull the list of tvshows and episodes in Kodi
|
|
|
|
try:
|
|
|
|
all_koditvshows = dict(emby_db.getChecksum('Series'))
|
|
|
|
except ValueError:
|
|
|
|
all_koditvshows = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
all_kodiepisodes = dict(emby_db.getChecksum('Episode'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodiepisodes = {}
|
|
|
|
|
|
|
|
all_embytvshowsIds = set()
|
|
|
|
all_embyepisodesIds = set()
|
|
|
|
updatelist = []
|
|
|
|
|
|
|
|
|
|
|
|
for view in views:
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
# Get items per view
|
|
|
|
viewId = view['id']
|
|
|
|
viewName = view['name']
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (lang(33029), viewName))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
all_embytvshows = emby.getShows(viewId, basic=True, dialog=pdialog)
|
|
|
|
for embytvshow in all_embytvshows['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
API = api.API(embytvshow)
|
|
|
|
itemid = embytvshow['Id']
|
|
|
|
all_embytvshowsIds.add(itemid)
|
|
|
|
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
if all_koditvshows.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if movie is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("TVShows to update for %s: %s" % (viewName, updatelist), 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
embytvshows = emby.getFullItems(updatelist)
|
|
|
|
total = len(updatelist)
|
|
|
|
del updatelist[:]
|
|
|
|
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (viewName, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embytvshow in embytvshows:
|
|
|
|
# Process individual show
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
itemid = embytvshow['Id']
|
|
|
|
title = embytvshow['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
tvshows.add_update(embytvshow, viewName, viewId)
|
|
|
|
|
|
|
|
else:
|
|
|
|
# Get all episodes in view
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (lang(33030), viewName))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
all_embyepisodes = emby.getEpisodes(viewId, basic=True, dialog=pdialog)
|
|
|
|
for embyepisode in all_embyepisodes['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
API = api.API(embyepisode)
|
|
|
|
itemid = embyepisode['Id']
|
|
|
|
all_embyepisodesIds.add(itemid)
|
|
|
|
|
|
|
|
if all_kodiepisodes.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if movie is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Episodes to update for %s: %s" % (viewName, updatelist), 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
embyepisodes = emby.getFullItems(updatelist)
|
|
|
|
total = len(updatelist)
|
|
|
|
del updatelist[:]
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for episode in embyepisodes:
|
|
|
|
|
|
|
|
# Process individual episode
|
|
|
|
if self.shouldStop():
|
2016-03-31 13:01:24 +11:00
|
|
|
return False
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
title = episode['SeriesName']
|
|
|
|
episodetitle = episode['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message="%s - %s" % (title, episodetitle))
|
|
|
|
count += 1
|
|
|
|
tvshows.add_updateEpisode(episode)
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
##### PROCESS DELETES #####
|
|
|
|
|
|
|
|
for koditvshow in all_koditvshows:
|
|
|
|
if koditvshow not in all_embytvshowsIds:
|
|
|
|
tvshows.remove(koditvshow)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("TVShows compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
for kodiepisode in all_kodiepisodes:
|
|
|
|
if kodiepisode not in all_embyepisodesIds:
|
|
|
|
tvshows.remove(kodiepisode)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Episodes compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
return True
|
|
|
|
|
|
|
|
def music(self, embycursor, kodicursor, pdialog):
|
2016-02-17 19:13:37 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
# Get music from emby
|
|
|
|
emby = self.emby
|
|
|
|
emby_db = embydb.Embydb_Functions(embycursor)
|
|
|
|
music = itemtypes.Music(embycursor, kodicursor)
|
|
|
|
|
|
|
|
# Pull the list of artists, albums, songs
|
|
|
|
try:
|
|
|
|
all_kodiartists = dict(emby_db.getChecksum('MusicArtist'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodiartists = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
all_kodialbums = dict(emby_db.getChecksum('MusicAlbum'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodialbums = {}
|
|
|
|
|
|
|
|
try:
|
|
|
|
all_kodisongs = dict(emby_db.getChecksum('Audio'))
|
|
|
|
except ValueError:
|
|
|
|
all_kodisongs = {}
|
|
|
|
|
|
|
|
all_embyartistsIds = set()
|
|
|
|
all_embyalbumsIds = set()
|
|
|
|
all_embysongsIds = set()
|
|
|
|
updatelist = []
|
|
|
|
|
|
|
|
process = {
|
|
|
|
|
|
|
|
'artists': [emby.getArtists, music.add_updateArtist],
|
|
|
|
'albums': [emby.getAlbums, music.add_updateAlbum],
|
|
|
|
'songs': [emby.getSongs, music.add_updateSong]
|
|
|
|
}
|
|
|
|
types = ['artists', 'albums', 'songs']
|
|
|
|
for type in types:
|
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(
|
|
|
|
heading="Emby for Kodi",
|
2016-02-17 19:13:37 +11:00
|
|
|
message="%s %s..." % (utils.language(33031), type))
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
if type != "artists":
|
|
|
|
all_embyitems = process[type][0](basic=True, dialog=pdialog)
|
|
|
|
else:
|
|
|
|
all_embyitems = process[type][0](dialog=pdialog)
|
|
|
|
for embyitem in all_embyitems['Items']:
|
|
|
|
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
|
|
|
|
|
|
|
API = api.API(embyitem)
|
|
|
|
itemid = embyitem['Id']
|
|
|
|
if type == "artists":
|
|
|
|
all_embyartistsIds.add(itemid)
|
|
|
|
if all_kodiartists.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if artist is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
elif type == "albums":
|
|
|
|
all_embyalbumsIds.add(itemid)
|
|
|
|
if all_kodialbums.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if album is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
else:
|
|
|
|
all_embysongsIds.add(itemid)
|
|
|
|
if all_kodisongs.get(itemid) != API.getChecksum():
|
|
|
|
# Only update if songs is not in Kodi or checksum is different
|
|
|
|
updatelist.append(itemid)
|
|
|
|
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("%s to update: %s" % (type, updatelist), 1)
|
2016-02-04 21:06:28 +11:00
|
|
|
embyitems = emby.getFullItems(updatelist)
|
|
|
|
total = len(updatelist)
|
|
|
|
del updatelist[:]
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
if pdialog:
|
|
|
|
pdialog.update(heading="Processing %s / %s items" % (type, total))
|
|
|
|
|
|
|
|
count = 0
|
|
|
|
for embyitem in embyitems:
|
|
|
|
# Process individual item
|
|
|
|
if self.shouldStop():
|
|
|
|
return False
|
2016-03-31 13:01:24 +11:00
|
|
|
|
2016-01-23 19:29:30 +11:00
|
|
|
title = embyitem['Name']
|
|
|
|
if pdialog:
|
|
|
|
percentage = int((float(count) / float(total))*100)
|
|
|
|
pdialog.update(percentage, message=title)
|
|
|
|
count += 1
|
|
|
|
|
|
|
|
process[type][1](embyitem)
|
|
|
|
|
|
|
|
##### PROCESS DELETES #####
|
|
|
|
|
|
|
|
for kodiartist in all_kodiartists:
|
|
|
|
if kodiartist not in all_embyartistsIds and all_kodiartists[kodiartist] is not None:
|
|
|
|
music.remove(kodiartist)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Artist compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
for kodialbum in all_kodialbums:
|
|
|
|
if kodialbum not in all_embyalbumsIds:
|
|
|
|
music.remove(kodialbum)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Albums compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
for kodisong in all_kodisongs:
|
|
|
|
if kodisong not in all_embysongsIds:
|
|
|
|
music.remove(kodisong)
|
|
|
|
else:
|
2016-03-31 13:17:09 +11:00
|
|
|
self.logMsg("Songs compare finished.", 1)
|
2016-01-23 19:29:30 +11:00
|
|
|
|
|
|
|
return True
|