5ac32f467a
currently only working from home widgets
1128 lines
56 KiB
Python
1128 lines
56 KiB
Python
#################################################################################################
|
|
# WriteKodiVideoDB
|
|
#################################################################################################
|
|
|
|
|
|
import xbmc
|
|
import xbmcgui
|
|
import xbmcaddon
|
|
import xbmcvfs
|
|
import json
|
|
import urllib
|
|
import sqlite3
|
|
import os
|
|
from decimal import Decimal
|
|
|
|
from DownloadUtils import DownloadUtils
|
|
from PlayUtils import PlayUtils
|
|
from ReadKodiDB import ReadKodiDB
|
|
from ReadEmbyDB import ReadEmbyDB
|
|
from API import API
|
|
import Utils as utils
|
|
|
|
from xml.etree.ElementTree import Element, SubElement, Comment, tostring
|
|
from xml.etree import ElementTree
|
|
from xml.dom import minidom
|
|
import xml.etree.cElementTree as ET
|
|
|
|
class WriteKodiVideoDB():
|
|
|
|
def updatePlayCountFromKodi(self, id, type, playcount=0):
|
|
#when user marks item watched from kodi interface update this in Emby
|
|
|
|
utils.logMsg("Emby", "updatePlayCountFromKodi Called")
|
|
connection = utils.KodiSQL()
|
|
cursor = connection.cursor()
|
|
cursor.execute("SELECT emby_id FROM emby WHERE media_type=? AND kodi_id=?",(type,id))
|
|
|
|
emby_id = cursor.fetchone()[0]
|
|
cursor.close
|
|
|
|
if(emby_id != None):
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
downloadUtils = DownloadUtils()
|
|
watchedurl = "{server}/mediabrowser/Users/{UserId}/PlayedItems/%s" % emby_id
|
|
if playcount != 0:
|
|
downloadUtils.downloadUrl(watchedurl, type="POST")
|
|
else:
|
|
downloadUtils.downloadUrl(watchedurl, type="DELETE")
|
|
|
|
def addOrUpdateMovieToKodiLibrary( self, embyId ,connection, cursor, viewTag):
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
WINDOW = xbmcgui.Window(10000)
|
|
username = WINDOW.getProperty('currUser')
|
|
userid = WINDOW.getProperty('userId%s' % username)
|
|
server = WINDOW.getProperty('server%s' % username)
|
|
downloadUtils = DownloadUtils()
|
|
|
|
MBitem = ReadEmbyDB().getFullItem(embyId)
|
|
|
|
# If the item already exist in the local Kodi DB we'll perform a full item update
|
|
# If the item doesn't exist, we'll add it to the database
|
|
|
|
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id = ?",(MBitem["Id"],))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
movieid = result[0]
|
|
else:
|
|
movieid = None
|
|
|
|
timeInfo = API().getTimeInfo(MBitem)
|
|
userData=API().getUserData(MBitem)
|
|
people = API().getPeople(MBitem)
|
|
|
|
#### The movie details #########
|
|
runtime = int(timeInfo.get('Duration'))*60
|
|
plot = utils.convertEncoding(API().getOverview(MBitem))
|
|
title = utils.convertEncoding(MBitem["Name"])
|
|
sorttitle = utils.convertEncoding(MBitem["SortName"])
|
|
year = MBitem.get("ProductionYear")
|
|
rating = MBitem.get("CommunityRating")
|
|
mpaa = MBitem.get("OfficialRating")
|
|
genres = MBitem.get("Genres")
|
|
genre = " / ".join(genres)
|
|
studios = API().getStudios(MBitem)
|
|
studio = " / ".join(studios)
|
|
writer = " / ".join(people.get("Writer"))
|
|
director = " / ".join(people.get("Director"))
|
|
country = None
|
|
if MBitem.get("ProductionLocations") !=None and MBitem.get("ProductionLocations") != []:
|
|
country = MBitem.get("ProductionLocations")[0]
|
|
|
|
imdb = None
|
|
if MBitem.get("ProviderIds"):
|
|
if MBitem.get("ProviderIds").get("Imdb"):
|
|
imdb = MBitem.get("ProviderIds").get("Imdb")
|
|
|
|
if MBitem.get("ShortOverview") != None:
|
|
shortplot = utils.convertEncoding(MBitem.get("ShortOverview"))
|
|
else:
|
|
shortplot = None
|
|
|
|
trailerUrl = None
|
|
if MBitem.get("LocalTrailerCount") != None and MBitem.get("LocalTrailerCount") > 0:
|
|
itemTrailerUrl = "%s/mediabrowser/Users/%s/Items/%s/LocalTrailers?format=json" % (server, userid, MBitem.get("Id"))
|
|
jsonData = downloadUtils.downloadUrl(itemTrailerUrl)
|
|
if(jsonData != ""):
|
|
trailerItem = jsonData
|
|
trailerUrl = "plugin://plugin.video.emby/trailer/?id=%s&mode=playnow" % trailerItem[0][u'Id']
|
|
|
|
if MBitem.get("DateCreated") != None:
|
|
dateadded = MBitem["DateCreated"].split('.')[0].replace('T', " ")
|
|
else:
|
|
dateadded = None
|
|
|
|
playcount = 0
|
|
if userData.get("PlayCount") == "1":
|
|
playcount = 1
|
|
else:
|
|
playcount = None #playcount must be set to NULL in the db
|
|
|
|
#### ADD OR UPDATE THE FILE AND PATH ###########
|
|
#### NOTE THAT LASTPLAYED AND PLAYCOUNT ARE STORED AT THE FILE ENTRY
|
|
path = "plugin://plugin.video.emby/movies/%s/" % MBitem["Id"]
|
|
filename = "plugin://plugin.video.emby/movies/%s/?id=%s&mode=play" % (MBitem["Id"],MBitem["Id"])
|
|
|
|
#create the path
|
|
cursor.execute("SELECT idPath as pathid FROM path WHERE strPath = ?",(path,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
pathid = result[0]
|
|
else:
|
|
cursor.execute("select coalesce(max(idPath),0) as pathid from path")
|
|
pathid = cursor.fetchone()[0]
|
|
pathid = pathid + 1
|
|
pathsql = "insert into path(idPath, strPath, strContent, strScraper, noUpdate) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (pathid,path,"movies","metadata.local",1))
|
|
|
|
#create the file if not exists
|
|
cursor.execute("SELECT idFile as fileid FROM files WHERE strFilename = ? and idPath = ?",(filename,pathid,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
fileid = result[0]
|
|
if result == None:
|
|
cursor.execute("select coalesce(max(idFile),0) as fileid from files")
|
|
fileid = cursor.fetchone()[0]
|
|
fileid = fileid + 1
|
|
pathsql="insert into files(idFile, idPath, strFilename, playCount, lastPlayed, dateAdded) values(?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (fileid,pathid,filename,playcount,userData.get("LastPlayedDate"),dateadded))
|
|
else:
|
|
pathsql="update files SET playCount = ?, lastPlayed = ? WHERE idFile = ?"
|
|
cursor.execute(pathsql, (playcount,userData.get("LastPlayedDate"), fileid))
|
|
|
|
##### ADD THE MOVIE ############
|
|
if movieid == None:
|
|
|
|
utils.logMsg("ADD movie to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
|
|
#create the movie
|
|
cursor.execute("select coalesce(max(idMovie),0) as movieid from movie")
|
|
movieid = cursor.fetchone()[0]
|
|
movieid = movieid + 1
|
|
pathsql="insert into movie(idMovie, idFile, c00, c01, c02, c05, c06, c07, c09, c10, c11, c12, c14, c15, c16, c18, c19, c21) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (movieid, fileid, title, plot, shortplot, rating, writer, year, imdb, sorttitle, runtime, mpaa, genre, director, title, studio, trailerUrl, country))
|
|
|
|
#add the viewtag
|
|
self.AddTagToMedia(movieid, viewTag, "movie", cursor)
|
|
|
|
#create the reference in emby table
|
|
pathsql = "INSERT into emby(emby_id, kodi_id, media_type, checksum) values(?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (MBitem["Id"], movieid, "movie", API().getChecksum(MBitem)))
|
|
|
|
#### UPDATE THE MOVIE #####
|
|
else:
|
|
utils.logMsg("UPDATE movie to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
pathsql="update movie SET c00 = ?, c01 = ?, c02 = ?, c05 = ?, c06 = ?, c07 = ?, c09 = ?, c10 = ?, c11 = ?, c12 = ?, c14 = ?, c15 = ?, c16 = ?, c18 = ?, c19 = ?, c21 = ?WHERE idMovie = ?"
|
|
cursor.execute(pathsql, (title, plot, shortplot, rating, writer, year, imdb, sorttitle, runtime, mpaa, genre, director, title, studio, trailerUrl, country, movieid))
|
|
|
|
#update the checksum in emby table
|
|
cursor.execute("UPDATE emby SET checksum = ? WHERE emby_id = ?", (API().getChecksum(MBitem),MBitem["Id"]))
|
|
|
|
#update or insert actors
|
|
self.AddPeopleToMedia(movieid,MBitem.get("People"),"movie", connection, cursor)
|
|
|
|
#update artwork
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), movieid, "movie", "thumb", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), movieid, "movie", "poster", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Banner"), movieid, "movie", "banner", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Logo"), movieid, "movie", "clearlogo", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Art"), movieid, "movie", "clearart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Thumb"), movieid, "movie", "landscape", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Disc"), movieid, "movie", "discart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Backdrop"), movieid, "movie", "fanart", cursor)
|
|
|
|
#update genres
|
|
self.AddGenresToMedia(movieid, genres, "movie", cursor)
|
|
|
|
#update countries
|
|
self.AddCountriesToMedia(movieid, MBitem.get("ProductionLocations"), "movie", cursor)
|
|
|
|
#update studios
|
|
self.AddStudiosToMedia(movieid, studios, "movie", cursor)
|
|
|
|
#add streamdetails
|
|
self.AddStreamDetailsToMedia(API().getMediaStreams(MBitem), fileid, cursor)
|
|
|
|
#add to or remove from favorites tag
|
|
if userData.get("Favorite"):
|
|
self.AddTagToMedia(movieid, "Favorite movies", "movie", cursor)
|
|
else:
|
|
self.AddTagToMedia(movieid, "Favorite movies", "movie", cursor, True)
|
|
|
|
#set resume point
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
self.setKodiResumePoint(fileid, resume, total, cursor)
|
|
|
|
def addOrUpdateMusicVideoToKodiLibrary( self, embyId ,connection, cursor):
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
WINDOW = xbmcgui.Window(10000)
|
|
username = WINDOW.getProperty('currUser')
|
|
userid = WINDOW.getProperty('userId%s' % username)
|
|
server = WINDOW.getProperty('server%s' % username)
|
|
downloadUtils = DownloadUtils()
|
|
|
|
MBitem = ReadEmbyDB().getFullItem(embyId)
|
|
|
|
# If the item already exist in the local Kodi DB we'll perform a full item update
|
|
# If the item doesn't exist, we'll add it to the database
|
|
|
|
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id = ?",(MBitem["Id"],))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
idMVideo = result[0]
|
|
else:
|
|
idMVideo = None
|
|
|
|
timeInfo = API().getTimeInfo(MBitem)
|
|
userData=API().getUserData(MBitem)
|
|
people = API().getPeople(MBitem)
|
|
|
|
#### The video details #########
|
|
runtime = int(timeInfo.get('Duration'))*60
|
|
plot = utils.convertEncoding(API().getOverview(MBitem))
|
|
title = utils.convertEncoding(MBitem["Name"])
|
|
year = MBitem.get("ProductionYear")
|
|
genres = MBitem.get("Genres")
|
|
genre = " / ".join(genres)
|
|
studios = API().getStudios(MBitem)
|
|
studio = " / ".join(studios)
|
|
director = " / ".join(people.get("Director"))
|
|
artist = " / ".join(MBitem.get("Artists"))
|
|
album = MBitem.get("Album")
|
|
track = MBitem.get("Track")
|
|
|
|
if MBitem.get("DateCreated") != None:
|
|
dateadded = MBitem["DateCreated"].split('.')[0].replace('T', " ")
|
|
else:
|
|
dateadded = None
|
|
|
|
playcount = 0
|
|
if userData.get("PlayCount") == "1":
|
|
playcount = 1
|
|
else:
|
|
playcount = None #playcount must be set to NULL in the db
|
|
|
|
#### ADD OR UPDATE THE FILE AND PATH ###########
|
|
#### NOTE THAT LASTPLAYED AND PLAYCOUNT ARE STORED AT THE FILE ENTRY
|
|
path = "plugin://plugin.video.emby/musicvideos/%s/" % MBitem["Id"]
|
|
filename = "plugin://plugin.video.emby/musicvideos/%s/?id=%s&mode=play" % (MBitem["Id"], MBitem["Id"])
|
|
|
|
#create the path
|
|
cursor.execute("SELECT idPath as pathid FROM path WHERE strPath = ?",(path,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
pathid = result[0]
|
|
else:
|
|
cursor.execute("select coalesce(max(idPath),0) as pathid from path")
|
|
pathid = cursor.fetchone()[0]
|
|
pathid = pathid + 1
|
|
pathsql = "insert into path(idPath, strPath, strContent, strScraper, noUpdate) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (pathid,path,"musicvideos","metadata.local",1))
|
|
|
|
#create the file if not exists
|
|
cursor.execute("SELECT idFile as fileid FROM files WHERE strFilename = ? and idPath = ?",(filename,pathid,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
fileid = result[0]
|
|
if result == None:
|
|
cursor.execute("select coalesce(max(idFile),0) as fileid from files")
|
|
fileid = cursor.fetchone()[0]
|
|
fileid = fileid + 1
|
|
pathsql="insert into files(idFile, idPath, strFilename, playCount, lastPlayed, dateAdded) values(?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (fileid,pathid,filename,playcount,userData.get("LastPlayedDate"),dateadded))
|
|
else:
|
|
pathsql="update files SET playCount = ?, lastPlayed = ? WHERE idFile = ?"
|
|
cursor.execute(pathsql, (playcount,userData.get("LastPlayedDate"), fileid))
|
|
|
|
##### ADD THE VIDEO ############
|
|
if idMVideo == None:
|
|
|
|
utils.logMsg("ADD musicvideo to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
|
|
#create the video
|
|
cursor.execute("select coalesce(max(idMVideo),0) as idMVideo from musicvideo")
|
|
idMVideo = cursor.fetchone()[0]
|
|
idMVideo = idMVideo + 1
|
|
pathsql="insert into musicvideo(idMVideo, idFile, c00, c04, c05, c06, c07, c08, c09, c10, c11, c12) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (idMVideo, fileid, title, runtime, director, studio, year, plot, album, artist, genre, track))
|
|
|
|
#create the reference in emby table
|
|
pathsql = "INSERT into emby(emby_id, kodi_id, media_type, checksum) values(?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (MBitem["Id"], idMVideo, "musicvideo", API().getChecksum(MBitem)))
|
|
|
|
#### UPDATE THE VIDEO #####
|
|
else:
|
|
utils.logMsg("UPDATE musicvideo to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
pathsql="update musicvideo SET c00 = ?, c04 = ?, c05 = ?, c06 = ?, c07 = ?, c08 = ?, c09 = ?, c10 = ?, c11 = ?, c12 = ? WHERE idMVideo = ?"
|
|
cursor.execute(pathsql, (title, runtime, director, studio, year, plot, album, artist, genre, track, idMVideo))
|
|
|
|
#update the checksum in emby table
|
|
cursor.execute("UPDATE emby SET checksum = ? WHERE emby_id = ?", (API().getChecksum(MBitem),MBitem["Id"]))
|
|
|
|
#update or insert actors
|
|
self.AddPeopleToMedia(idMVideo,MBitem.get("People"),"musicvideo", connection, cursor)
|
|
|
|
#update artwork
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), idMVideo, "musicvideo", "thumb", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), idMVideo, "musicvideo", "poster", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Banner"), idMVideo, "musicvideo", "banner", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Logo"), idMVideo, "musicvideo", "clearlogo", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Art"), idMVideo, "musicvideo", "clearart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Thumb"), idMVideo, "musicvideo", "landscape", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Disc"), idMVideo, "musicvideo", "discart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Backdrop"), idMVideo, "musicvideo", "fanart", cursor)
|
|
|
|
#update genres
|
|
self.AddGenresToMedia(idMVideo, genres, "musicvideo", cursor)
|
|
|
|
#update studios
|
|
self.AddStudiosToMedia(idMVideo, studios, "musicvideo", cursor)
|
|
|
|
#add streamdetails
|
|
self.AddStreamDetailsToMedia(API().getMediaStreams(MBitem), fileid, cursor)
|
|
|
|
#set resume point
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
self.setKodiResumePoint(fileid, resume, total, cursor)
|
|
|
|
def addOrUpdateTvShowToKodiLibrary( self, embyId, connection, cursor, viewTag ):
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
port = addon.getSetting('port')
|
|
host = addon.getSetting('ipaddress')
|
|
server = host + ":" + port
|
|
|
|
MBitem = ReadEmbyDB().getFullItem(embyId)
|
|
|
|
timeInfo = API().getTimeInfo(MBitem)
|
|
userData=API().getUserData(MBitem)
|
|
|
|
thumbPath = API().getArtwork(MBitem, "Primary")
|
|
|
|
# If the item already exist in the local Kodi DB we'll perform a full item update
|
|
# If the item doesn't exist, we'll add it to the database
|
|
|
|
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id = ?",(MBitem["Id"],))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
showid = result[0]
|
|
else:
|
|
showid = None
|
|
|
|
#### TV SHOW DETAILS #########
|
|
|
|
genres = MBitem.get("Genres")
|
|
genre = " / ".join(genres)
|
|
studios = API().getStudios(MBitem)
|
|
studio = " / ".join(studios)
|
|
mpaa = MBitem.get("OfficialRating")
|
|
runtime = int(timeInfo.get('Duration'))*60
|
|
plot = utils.convertEncoding(API().getOverview(MBitem))
|
|
title = utils.convertEncoding(MBitem["Name"])
|
|
sorttitle = utils.convertEncoding(MBitem["SortName"])
|
|
rating = MBitem.get("CommunityRating")
|
|
|
|
tvdb = None
|
|
if MBitem.get("ProviderIds"):
|
|
if MBitem.get("ProviderIds").get("Tvdb"):
|
|
tvdb = MBitem.get("ProviderIds").get("Tvdb")
|
|
|
|
if MBitem.get("DateCreated") != None:
|
|
dateadded = MBitem["DateCreated"].split('.')[0].replace('T', " ")
|
|
else:
|
|
dateadded = None
|
|
|
|
if MBitem.get("PremiereDate") != None:
|
|
premieredatelist = (MBitem.get("PremiereDate")).split("T")
|
|
premieredate = premieredatelist[0]
|
|
else:
|
|
premieredate = None
|
|
|
|
path = "plugin://plugin.video.emby/tvshows/" + MBitem["Id"] + "/"
|
|
|
|
#### ADD THE TV SHOW TO KODI ##############
|
|
if showid == None:
|
|
|
|
utils.logMsg("ADD tvshow to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
|
|
#create the tv show path
|
|
cursor.execute("select coalesce(max(idPath),0) as pathid from path")
|
|
pathid = cursor.fetchone()[0]
|
|
pathid = pathid + 1
|
|
pathsql="insert into path(idPath, strPath, strContent, strScraper, noUpdate) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (pathid,path,None,None,1))
|
|
|
|
#create toplevel path as monitored source - needed for things like actors and stuff to work (no clue why)
|
|
toplevelpath = "plugin://plugin.video.emby/"
|
|
cursor.execute("SELECT idPath as tlpathid FROM path WHERE strPath = ?",(toplevelpath,))
|
|
result = cursor.fetchone()
|
|
if result == None:
|
|
cursor.execute("select coalesce(max(idPath),0) as tlpathid from path")
|
|
tlpathid = cursor.fetchone()[0]
|
|
tlpathid = tlpathid + 1
|
|
pathsql="insert into path(idPath, strPath, strContent, strScraper, noUpdate) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (tlpathid,toplevelpath,"tvshows","metadata.local",1))
|
|
|
|
#create the tvshow
|
|
cursor.execute("select coalesce(max(idShow),0) as showid from tvshow")
|
|
showid = cursor.fetchone()[0]
|
|
showid = showid + 1
|
|
pathsql="insert into tvshow(idShow, c00, c01, c04, c05, c08, c09, c12, c13, c14, c15) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (showid, title, plot, rating, premieredate, genre, title, tvdb, mpaa, studio, sorttitle))
|
|
|
|
#create the reference in emby table
|
|
pathsql = "INSERT into emby(emby_id, kodi_id, media_type, checksum) values(?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (MBitem["Id"], showid, "tvshow", API().getChecksum(MBitem)))
|
|
|
|
#link the path
|
|
pathsql="insert into tvshowlinkpath(idShow,idPath) values(?, ?)"
|
|
cursor.execute(pathsql, (showid,pathid))
|
|
|
|
#add the viewtag
|
|
self.AddTagToMedia(showid, viewTag, "tvshow", cursor)
|
|
|
|
#### UPDATE THE TV SHOW #############
|
|
else:
|
|
utils.logMsg("UPDATE tvshow to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
|
|
pathsql="UPDATE tvshow SET c00 = ?, c01 = ?, c04 = ?, c05 = ?, c08 = ?, c09 = ?, c12 = ?, c13 = ?, c14 = ?, c15 = ? WHERE idShow = ?"
|
|
cursor.execute(pathsql, (title, plot, rating, premieredate, title, genre, tvdb, mpaa, studio, sorttitle, showid))
|
|
|
|
#update the checksum in emby table
|
|
cursor.execute("UPDATE emby SET checksum = ? WHERE emby_id = ?", (API().getChecksum(MBitem), MBitem["Id"]))
|
|
|
|
#update or insert people
|
|
self.AddPeopleToMedia(showid,MBitem.get("People"),"tvshow", connection, cursor)
|
|
|
|
#update genres
|
|
self.AddGenresToMedia(showid, genres, "tvshow", cursor)
|
|
|
|
#update studios
|
|
self.AddStudiosToMedia(showid, studios, "tvshow", cursor)
|
|
|
|
#add to or remove from favorites tag
|
|
if userData.get("Favorite"):
|
|
self.AddTagToMedia(showid, "Favorite tvshows", "tvshow", cursor)
|
|
else:
|
|
self.AddTagToMedia(showid, "Favorite tvshows", "tvshow", cursor, True)
|
|
|
|
#update artwork
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), showid, "tvshow", "thumb", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), showid, "tvshow", "poster", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Banner"), showid, "tvshow", "banner", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Logo"), showid, "tvshow", "clearlogo", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Art"), showid, "tvshow", "clearart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Thumb"), showid, "tvshow", "landscape", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Disc"), showid, "tvshow", "discart", cursor)
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Backdrop"), showid, "tvshow", "fanart", cursor)
|
|
|
|
#update season details
|
|
self.updateSeasons(MBitem["Id"], showid, connection, cursor)
|
|
|
|
def addOrUpdateEpisodeToKodiLibrary(self, embyId, showid, connection, cursor):
|
|
|
|
# If the episode already exist in the local Kodi DB we'll perform a full item update
|
|
# If the item doesn't exist, we'll add it to the database
|
|
|
|
MBitem = ReadEmbyDB().getFullItem(embyId)
|
|
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id = ?",(MBitem["Id"],))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
episodeid = result[0]
|
|
else:
|
|
episodeid = None
|
|
|
|
addon = xbmcaddon.Addon(id='plugin.video.emby')
|
|
port = addon.getSetting('port')
|
|
host = addon.getSetting('ipaddress')
|
|
server = host + ":" + port
|
|
|
|
timeInfo = API().getTimeInfo(MBitem)
|
|
userData=API().getUserData(MBitem)
|
|
people = API().getPeople(MBitem)
|
|
|
|
###### episode properties ################
|
|
episode = 0
|
|
if MBitem.get("IndexNumber") != None:
|
|
episode = int(MBitem.get("IndexNumber"))
|
|
|
|
runtime = int(timeInfo.get('Duration'))*60
|
|
plot = utils.convertEncoding(API().getOverview(MBitem))
|
|
title = utils.convertEncoding(MBitem["Name"])
|
|
rating = MBitem.get("CommunityRating")
|
|
writer = " / ".join(people.get("Writer"))
|
|
director = " / ".join(people.get("Director"))
|
|
|
|
if MBitem.get("PremiereDate") != None:
|
|
premieredatelist = (MBitem.get("PremiereDate")).split("T")
|
|
premieredate = premieredatelist[0]
|
|
else:
|
|
premieredate = None
|
|
|
|
if MBitem.get("DateCreated") != None:
|
|
dateadded = MBitem["DateCreated"].replace("T"," ")
|
|
dateadded = dateadded.split(".")[0]
|
|
else:
|
|
dateadded = None
|
|
|
|
if userData.get("LastPlayedDate") != None:
|
|
lastplayed = userData.get("LastPlayedDate")
|
|
else:
|
|
lastplayed = None
|
|
|
|
playcount = None
|
|
if userData.get("PlayCount") == "1":
|
|
playcount = 1
|
|
else:
|
|
playcount = None #playcount must be set to NULL in the db
|
|
|
|
#### ADD OR UPDATE THE FILE AND PATH ###########
|
|
#### NOTE THAT LASTPLAYED AND PLAYCOUNT ARE STORED AT THE FILE ENTRY
|
|
path = "plugin://plugin.video.emby/tvshows/" + MBitem["SeriesId"] + "/"
|
|
filename = "plugin://plugin.video.emby/tvshows/" + MBitem["SeriesId"] + "/?id=" + MBitem["Id"] + "&mode=play"
|
|
|
|
#create the new path - return id if already exists
|
|
cursor.execute("SELECT idPath as pathid FROM path WHERE strPath = ?",(path,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
pathid = result[0]
|
|
if result == None:
|
|
cursor.execute("select coalesce(max(idPath),0) as pathid from path")
|
|
pathid = cursor.fetchone()[0]
|
|
pathid = pathid + 1
|
|
pathsql="insert into path(idPath, strPath, strContent, strScraper, noUpdate) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (pathid,path,None,None,1))
|
|
|
|
#create the file if not exists
|
|
cursor.execute("SELECT idFile as fileid FROM files WHERE strFilename = ? and idPath = ?",(filename,pathid,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
fileid = result[0]
|
|
if result == None:
|
|
cursor.execute("select coalesce(max(idFile),0) as fileid from files")
|
|
fileid = cursor.fetchone()[0]
|
|
fileid = fileid + 1
|
|
sql="INSERT OR REPLACE into files(idFile, idPath, strFilename, playCount, lastPlayed, dateAdded) values(?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(sql, (fileid,pathid,filename,playcount,lastplayed,dateadded))
|
|
else:
|
|
pathsql="update files SET playCount = ?, lastPlayed = ? WHERE idFile = ?"
|
|
cursor.execute(pathsql, (playcount,userData.get("LastPlayedDate"), fileid))
|
|
|
|
# safety check: check season first
|
|
season = 0
|
|
if MBitem.get("ParentIndexNumber") != None:
|
|
season = int(MBitem.get("ParentIndexNumber"))
|
|
else:
|
|
utils.logMsg("Emby","SKIP adding episode to Kodi Library, no ParentIndexNumber - ID: " + MBitem["Id"] + " - " + MBitem["Name"])
|
|
return False
|
|
|
|
cursor.execute("SELECT idSeason FROM seasons WHERE idShow = ? and season = ?",(showid, season))
|
|
result = cursor.fetchone()
|
|
if(result == None):
|
|
#update seasons first
|
|
self.updateSeasons(MBitem["SeriesId"], showid, connection, cursor)
|
|
|
|
# ADD EPISODE TO KODI
|
|
if episodeid == None:
|
|
utils.logMsg("ADD episode to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
#create the episode
|
|
cursor.execute("select coalesce(max(idEpisode),0) as episodeid from episode")
|
|
episodeid = cursor.fetchone()[0]
|
|
episodeid = episodeid + 1
|
|
pathsql = "INSERT into episode(idEpisode, idFile, c00, c01, c03, c04, c05, c09, c10, c12, c13, c14, idShow, c15, c16) values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (episodeid, fileid, title, plot, rating, writer, premieredate, runtime, director, season, episode, title, showid, "-1", "-1"))
|
|
|
|
#create the reference in emby table
|
|
pathsql = "INSERT into emby(emby_id, kodi_id, media_type, checksum, parent_id) values(?, ?, ?, ?, ?)"
|
|
cursor.execute(pathsql, (MBitem["Id"], episodeid, "episode", API().getChecksum(MBitem), showid))
|
|
|
|
# UPDATE THE EPISODE IN KODI (for now, we just send in all data)
|
|
else:
|
|
utils.logMsg("UPDATE episode to Kodi library","Id: %s - Title: %s" % (embyId, title))
|
|
|
|
pathsql = "UPDATE episode SET c00 = ?, c01 = ?, c03 = ?, c04 = ?, c05 = ?, c09 = ?, c10 = ?, c12 = ?, c13 = ?, c14 = ?, c15 = ?, c16 = ? WHERE idEpisode = ?"
|
|
cursor.execute(pathsql, (title, plot, rating, writer, premieredate, runtime, director, season, episode, title, "-1", "-1", episodeid))
|
|
|
|
#update the checksum in emby table
|
|
cursor.execute("UPDATE emby SET checksum = ? WHERE emby_id = ?", (API().getChecksum(MBitem), MBitem["Id"]))
|
|
|
|
#update or insert actors
|
|
self.AddPeopleToMedia(episodeid,MBitem.get("People"),"episode", connection, cursor)
|
|
|
|
#set resume point
|
|
resume = int(round(float(timeInfo.get("ResumeTime"))))*60
|
|
total = int(round(float(timeInfo.get("TotalTime"))))*60
|
|
self.setKodiResumePoint(fileid, resume, total, cursor)
|
|
|
|
#add streamdetails
|
|
self.AddStreamDetailsToMedia(API().getMediaStreams(MBitem), fileid, cursor)
|
|
|
|
#update artwork
|
|
self.addOrUpdateArt(API().getArtwork(MBitem, "Primary"), episodeid, "episode", "thumb", cursor)
|
|
|
|
def deleteItemFromKodiLibrary(self, id, connection, cursor ):
|
|
|
|
cursor.execute("SELECT kodi_id, media_type FROM emby WHERE emby_id=?", (id,))
|
|
result = cursor.fetchone()
|
|
if result:
|
|
kodi_id = result[0]
|
|
media_type = result[1]
|
|
if media_type == "movie":
|
|
utils.logMsg("deleting movie from Kodi library --> ",id)
|
|
cursor.execute("DELETE FROM movie WHERE idMovie = ?", (kodi_id,))
|
|
if media_type == "episode":
|
|
utils.logMsg("deleting episode from Kodi library --> ",id)
|
|
cursor.execute("DELETE FROM episode WHERE idEpisode = ?", (kodi_id,))
|
|
if media_type == "tvshow":
|
|
utils.logMsg("deleting tvshow from Kodi library --> ",id)
|
|
cursor.execute("DELETE FROM tvshow WHERE idShow = ?", (kodi_id,))
|
|
if media_type == "musicvideo":
|
|
utils.logMsg("deleting musicvideo from Kodi library --> ",id)
|
|
cursor.execute("DELETE FROM musicvideo WHERE idMVideo = ?", (kodi_id,))
|
|
|
|
#delete the record in emby table
|
|
cursor.execute("DELETE FROM emby WHERE emby_id = ?", (id,))
|
|
|
|
def updateSeasons(self,embyTvShowId, kodiTvShowId, connection, cursor):
|
|
|
|
seasonData = ReadEmbyDB().getTVShowSeasons(embyTvShowId)
|
|
if seasonData != None:
|
|
for season in seasonData:
|
|
seasonNum = season.get("IndexNumber")
|
|
if seasonNum != None and seasonNum >= 0 and seasonNum <= 1000:
|
|
cursor.execute("SELECT idSeason as seasonid FROM seasons WHERE idShow = ? and season = ?",(kodiTvShowId, seasonNum))
|
|
result = cursor.fetchone()
|
|
if result == None:
|
|
#create the season
|
|
cursor.execute("select coalesce(max(idSeason),0) as seasonid from seasons")
|
|
seasonid = cursor.fetchone()[0]
|
|
seasonid = seasonid + 1
|
|
cursor.execute("INSERT into seasons(idSeason, idShow, season) values(?, ?, ?)", (seasonid, kodiTvShowId, seasonNum))
|
|
else:
|
|
seasonid = result[0]
|
|
|
|
#update artwork
|
|
imageUrl = API().getArtwork(season, "Thumb")
|
|
self.addOrUpdateArt(imageUrl, seasonid, "season", "landscape", cursor)
|
|
|
|
imageUrl = API().getArtwork(season, "Primary")
|
|
self.addOrUpdateArt(imageUrl, seasonid, "season", "poster", cursor)
|
|
|
|
imageUrl = API().getArtwork(season, "Banner")
|
|
self.addOrUpdateArt(imageUrl, seasonid, "season", "banner", cursor)
|
|
|
|
def addOrUpdateArt(self, imageUrl, kodiId, mediaType, imageType, cursor):
|
|
updateDone = False
|
|
if imageUrl:
|
|
cursor.execute("SELECT url FROM art WHERE media_id = ? AND media_type = ? AND type = ?", (kodiId, mediaType, imageType))
|
|
result = cursor.fetchone()
|
|
if(result == None):
|
|
utils.logMsg("ArtworkSync", "Adding Art Link for kodiId: " + str(kodiId) + " (" + imageUrl + ")")
|
|
cursor.execute("INSERT INTO art(media_id, media_type, type, url) values(?, ?, ?, ?)", (kodiId, mediaType, imageType, imageUrl))
|
|
else:
|
|
url = result[0];
|
|
if(url != imageUrl):
|
|
utils.logMsg("ArtworkSync", "Updating Art Link for kodiId: " + str(kodiId) + " (" + url + ") -> (" + imageUrl + ")")
|
|
cursor.execute("UPDATE art set url = ? WHERE media_id = ? AND media_type = ? AND type = ?", (imageUrl, kodiId, mediaType, imageType))
|
|
|
|
def setKodiResumePoint(self, fileid, resume_seconds, total_seconds, cursor):
|
|
|
|
cursor.execute("delete FROM bookmark WHERE idFile = ?", (fileid,))
|
|
if resume_seconds != 0:
|
|
cursor.execute("select coalesce(max(idBookmark),0) as bookmarkId from bookmark")
|
|
bookmarkId = cursor.fetchone()[0]
|
|
bookmarkId = bookmarkId + 1
|
|
bookmarksql="insert into bookmark(idBookmark, idFile, timeInSeconds, totalTimeInSeconds, thumbNailImage, player, playerState, type) values(?, ?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(bookmarksql, (bookmarkId,fileid,resume_seconds,total_seconds,None,"DVDPlayer",None,1))
|
|
|
|
def AddPeopleToMedia(self, id, people, mediatype, connection, cursor):
|
|
downloadUtils = DownloadUtils()
|
|
|
|
kodiVersion = 14
|
|
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
|
|
kodiVersion = 15
|
|
|
|
if(people != None):
|
|
for person in people:
|
|
|
|
Name = person.get("Name")
|
|
actorid = None
|
|
|
|
# Get existing actor
|
|
if kodiVersion == 15:
|
|
# Kodi Isengard database #
|
|
cursor.execute("SELECT actor_id as actorid FROM actor WHERE name = ?",(Name,))
|
|
else:
|
|
# Kodi Gotham or Helix database #
|
|
cursor.execute("SELECT idActor as actorid FROM actors WHERE strActor = ?",(Name,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
actorid = result[0]
|
|
if actorid == None:
|
|
if kodiVersion == 15:
|
|
# Kodi Isengard database #
|
|
cursor.execute("select coalesce(max(actor_id),0) as actorid from actor")
|
|
actorid = cursor.fetchone()[0]
|
|
actorid = actorid + 1
|
|
peoplesql="insert into actor(actor_id, name) values(?, ?)"
|
|
else:
|
|
# Kodi Gotham or Helix database #
|
|
cursor.execute("select coalesce(max(idActor),0) as actorid from actors")
|
|
actorid = cursor.fetchone()[0]
|
|
actorid = actorid + 1
|
|
peoplesql="insert into actors(idActor, strActor) values(?, ?)"
|
|
utils.logMsg("AddPeopleToMedia", "Processing : " + person.get("Name"))
|
|
cursor.execute(peoplesql, (actorid,Name))
|
|
|
|
### add people image to art table
|
|
Thumb = downloadUtils.imageUrl(person.get("Id"), "Primary", 0, 400, 400)
|
|
if Thumb:
|
|
if(person.get("Type") == "Director"):
|
|
arttype = "director"
|
|
elif(person.get("Type") == "Writer" or person.get("Type") == "Writing"):
|
|
arttype = "writer"
|
|
else:
|
|
arttype = "actor"
|
|
self.addOrUpdateArt(Thumb, actorid, arttype, "thumb", cursor)
|
|
|
|
#### ACTORS ######
|
|
if(person.get("Type") == "Actor"):
|
|
|
|
Role = person.get("Role")
|
|
if kodiVersion == 15:
|
|
# Kodi Isengard database #
|
|
peoplesql="INSERT OR REPLACE into actor_link(actor_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid, id, mediatype))
|
|
else:
|
|
# Kodi Gotham or Helix database #
|
|
if mediatype == "movie":
|
|
peoplesql="INSERT OR REPLACE into actorlinkmovie(idActor, idMovie, strRole, iOrder) values(?, ?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id,Role,None))
|
|
if mediatype == "tvshow":
|
|
peoplesql="INSERT OR REPLACE into actorlinktvshow(idActor, idShow, strRole, iOrder) values(?, ?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id,Role,None))
|
|
if mediatype == "episode":
|
|
peoplesql="INSERT OR REPLACE into actorlinkepisode(idActor, idEpisode, strRole, iOrder) values(?, ?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id,Role,None))
|
|
|
|
#### DIRECTORS ######
|
|
if(person.get("Type") == "Director"):
|
|
|
|
if kodiVersion == 15:
|
|
# Kodi Isengard database #
|
|
peoplesql="INSERT OR REPLACE into director_link(actor_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid, id, mediatype))
|
|
else:
|
|
# Kodi Gotham or Helix database #
|
|
if mediatype == "movie":
|
|
peoplesql="INSERT OR REPLACE into directorlinkmovie(idDirector, idMovie) values(?, ?)"
|
|
if mediatype == "tvshow":
|
|
peoplesql="INSERT OR REPLACE into directorlinktvshow(idDirector, idShow) values(?, ?)"
|
|
if mediatype == "musicvideo":
|
|
peoplesql="INSERT OR REPLACE into directorlinkmusicvideo(idDirector, idMVideo) values(?, ?)"
|
|
if mediatype == "episode":
|
|
peoplesql="INSERT OR REPLACE into directorlinkepisode(idDirector, idEpisode) values(?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id))
|
|
|
|
#### WRITERS ######
|
|
if(person.get("Type") == "Writing" or person.get("Type") == "Writer"):
|
|
|
|
if kodiVersion == 15:
|
|
# Kodi Isengard database #
|
|
peoplesql="INSERT OR REPLACE into writer_link(actor_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(peoplesql, (actorid, id, mediatype))
|
|
else:
|
|
# Kodi Gotham or Helix database #
|
|
if mediatype == "movie":
|
|
peoplesql="INSERT OR REPLACE into writerlinkmovie(idWriter, idMovie) values(?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id))
|
|
if mediatype == "episode":
|
|
peoplesql="INSERT OR REPLACE into writerlinkepisode(idWriter, idEpisode) values(?, ?)"
|
|
cursor.execute(peoplesql, (actorid,id))
|
|
|
|
def AddGenresToMedia(self, id, genres, mediatype, cursor):
|
|
|
|
if genres:
|
|
|
|
kodiVersion = 14
|
|
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
|
|
kodiVersion = 15
|
|
|
|
for genre in genres:
|
|
|
|
if kodiVersion == 15:
|
|
genre_id = None
|
|
cursor.execute("SELECT genre_id as genre_id FROM genre WHERE name = ?",(genre,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
genre_id = result[0]
|
|
#create genre
|
|
if genre_id == None:
|
|
cursor.execute("select coalesce(max(genre_id),0) as genre_id from genre")
|
|
genre_id = cursor.fetchone()[0]
|
|
genre_id = genre_id + 1
|
|
sql="insert into genre(genre_id, name) values(?, ?)"
|
|
cursor.execute(sql, (genre_id,genre))
|
|
utils.logMsg("AddGenresToMedia", "Processing : " + genre)
|
|
|
|
#assign genre to item
|
|
sql="INSERT OR REPLACE into genre_link(genre_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(sql, (genre_id, id, mediatype))
|
|
|
|
else:
|
|
idGenre = None
|
|
cursor.execute("SELECT idGenre as idGenre FROM genre WHERE strGenre = ?",(genre,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
idGenre = result[0]
|
|
#create genre
|
|
if idGenre == None:
|
|
cursor.execute("select coalesce(max(idGenre),0) as idGenre from genre")
|
|
idGenre = cursor.fetchone()[0]
|
|
idGenre = idGenre + 1
|
|
sql="insert into genre(idGenre, strGenre) values(?, ?)"
|
|
cursor.execute(sql, (idGenre,genre))
|
|
|
|
#assign genre to item
|
|
if mediatype == "movie":
|
|
sql="INSERT OR REPLACE into genrelinkmovie(idGenre, idMovie) values(?, ?)"
|
|
if mediatype == "tvshow":
|
|
sql="INSERT OR REPLACE into genrelinktvshow(idGenre, idShow) values(?, ?)"
|
|
if mediatype == "episode":
|
|
return
|
|
if mediatype == "musicvideo":
|
|
sql="INSERT OR REPLACE into genrelinkmusicvideo(idGenre, idMVideo) values(?, ?)"
|
|
cursor.execute(sql, (idGenre,id))
|
|
|
|
def AddCountriesToMedia(self, id, countries, mediatype, cursor):
|
|
if countries:
|
|
kodiVersion = 14
|
|
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
|
|
kodiVersion = 15
|
|
|
|
for country in countries:
|
|
|
|
if kodiVersion == 15:
|
|
country_id = None
|
|
cursor.execute("SELECT country_id as country_id FROM country WHERE name = ?",(country,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
country_id = result[0]
|
|
#create country
|
|
if country_id == None:
|
|
cursor.execute("select coalesce(max(country_id),0) as country_id from country")
|
|
country_id = cursor.fetchone()[0]
|
|
country_id = country_id + 1
|
|
sql="insert into country(country_id, name) values(?, ?)"
|
|
cursor.execute(sql, (country_id,country))
|
|
utils.logMsg("AddCountriesToMedia", "Processing : " + country)
|
|
|
|
#assign country to item
|
|
sql="INSERT OR REPLACE into country_link(country_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(sql, (country_id, id, mediatype))
|
|
|
|
else:
|
|
idCountry = None
|
|
cursor.execute("SELECT idCountry as idCountry FROM country WHERE strCountry = ?",(country,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
idCountry = result[0]
|
|
#create country
|
|
if idCountry == None:
|
|
cursor.execute("select coalesce(max(idCountry),0) as idCountry from country")
|
|
idCountry = cursor.fetchone()[0]
|
|
idCountry = idCountry + 1
|
|
sql="insert into country(idCountry, strCountry) values(?, ?)"
|
|
cursor.execute(sql, (idCountry,country))
|
|
|
|
#assign country to item
|
|
if mediatype == "movie":
|
|
sql="INSERT OR REPLACE into countrylinkmovie(idCountry, idMovie) values(?, ?)"
|
|
cursor.execute(sql, (idCountry,id))
|
|
else:
|
|
#only movies have a country field
|
|
return
|
|
|
|
|
|
def AddStudiosToMedia(self, id, studios, mediatype, cursor):
|
|
|
|
if studios:
|
|
|
|
kodiVersion = 14
|
|
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
|
|
kodiVersion = 15
|
|
|
|
for studio in studios:
|
|
|
|
if kodiVersion == 15:
|
|
studio_id = None
|
|
cursor.execute("SELECT studio_id as studio_id FROM studio WHERE name = ?",(studio,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
studio_id = result[0]
|
|
#create studio
|
|
if studio_id == None:
|
|
cursor.execute("select coalesce(max(studio_id),0) as studio_id from studio")
|
|
studio_id = cursor.fetchone()[0]
|
|
studio_id = studio_id + 1
|
|
sql="insert into studio(studio_id, name) values(?, ?)"
|
|
cursor.execute(sql, (studio_id,studio))
|
|
utils.logMsg("AddstudiosToMedia", "Processing : " + studio)
|
|
|
|
#assign studio to item
|
|
sql="INSERT OR REPLACE into studio_link(studio_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(sql, (studio_id, id, mediatype))
|
|
|
|
else:
|
|
idstudio = None
|
|
cursor.execute("SELECT idstudio as idstudio FROM studio WHERE strstudio = ?",(studio,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
idstudio = result[0]
|
|
#create studio
|
|
if idstudio == None:
|
|
cursor.execute("select coalesce(max(idstudio),0) as idstudio from studio")
|
|
idstudio = cursor.fetchone()[0]
|
|
idstudio = idstudio + 1
|
|
sql="insert into studio(idstudio, strstudio) values(?, ?)"
|
|
cursor.execute(sql, (idstudio,studio))
|
|
|
|
#assign studio to item
|
|
if mediatype == "movie":
|
|
sql="INSERT OR REPLACE into studiolinkmovie(idstudio, idMovie) values(?, ?)"
|
|
if mediatype == "musicvideo":
|
|
sql="INSERT OR REPLACE into studiolinkmusicvideo(idstudio, idMVideo) values(?, ?)"
|
|
if mediatype == "tvshow":
|
|
sql="INSERT OR REPLACE into studiolinktvshow(idstudio, idShow) values(?, ?)"
|
|
if mediatype == "episode":
|
|
sql="INSERT OR REPLACE into studiolinkepisode(idstudio, idEpisode) values(?, ?)"
|
|
cursor.execute(sql, (idstudio,id))
|
|
|
|
def AddTagToMedia(self, id, tag, mediatype, cursor, doRemove=False):
|
|
|
|
if tag:
|
|
|
|
kodiVersion = 14
|
|
if xbmc.getInfoLabel("System.BuildVersion").startswith("15"):
|
|
kodiVersion = 15
|
|
|
|
if kodiVersion == 15:
|
|
tag_id = None
|
|
cursor.execute("SELECT tag_id as tag_id FROM tag WHERE name = ?",(tag,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
tag_id = result[0]
|
|
#create tag
|
|
if tag_id == None:
|
|
cursor.execute("select coalesce(max(tag_id),0) as tag_id from tag")
|
|
tag_id = cursor.fetchone()[0]
|
|
tag_id = tag_id + 1
|
|
sql="insert into tag(tag_id, name) values(?, ?)"
|
|
cursor.execute(sql, (tag_id,tag))
|
|
utils.logMsg("AddTagToMedia", "Adding tag: " + tag)
|
|
|
|
#assign tag to item
|
|
if doRemove:
|
|
sql="DELETE FROM tag_link WHERE media_id = ? AND media_type = ? AND tag_id = ?"
|
|
cursor.execute(sql, (id, mediatype, tag_id))
|
|
else:
|
|
sql="INSERT OR REPLACE into tag_link(tag_id, media_id, media_type) values(?, ?, ?)"
|
|
cursor.execute(sql, (tag_id, id, mediatype))
|
|
|
|
else:
|
|
idTag = None
|
|
cursor.execute("SELECT idTag as idTag FROM tag WHERE strTag = ?",(tag,))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
idTag = result[0]
|
|
#create idTag
|
|
if idTag == None:
|
|
cursor.execute("select coalesce(max(idTag),0) as idTag from tag")
|
|
idTag = cursor.fetchone()[0]
|
|
idTag = idTag + 1
|
|
sql="insert into tag(idTag, strTag) values(?, ?)"
|
|
cursor.execute(sql, (idTag,tag))
|
|
utils.logMsg("AddTagToMedia", "Adding tag: " + tag)
|
|
|
|
#assign tag to item
|
|
if doRemove:
|
|
sql="DELETE FROM taglinks WHERE idMedia = ? AND media_type = ? AND idTag = ?"
|
|
cursor.execute(sql, (id, mediatype, idTag))
|
|
else:
|
|
sql="INSERT OR REPLACE into taglinks(idTag, idMedia, media_type) values(?, ?, ?)"
|
|
cursor.execute(sql, (idTag, id, mediatype))
|
|
|
|
def AddStreamDetailsToMedia(self, streamdetails, fileid, cursor):
|
|
|
|
#first remove any existing entries
|
|
cursor.execute("delete FROM streamdetails WHERE idFile = ?", (fileid,))
|
|
if streamdetails:
|
|
#video details
|
|
sql="insert into streamdetails(idFile, iStreamType, strVideoCodec, fVideoAspect, iVideoWidth, iVideoHeight, strStereoMode) values(?, ?, ?, ?, ?, ?, ?)"
|
|
cursor.execute(sql, (fileid,0,streamdetails.get("videocodec"),streamdetails.get("aspectratio"),streamdetails.get("width"),streamdetails.get("height"),streamdetails.get("3dformat")))
|
|
#audio details
|
|
sql="insert into streamdetails(idFile, iStreamType, strAudioCodec, iAudioChannels) values(?, ?, ?, ?)"
|
|
cursor.execute(sql, (fileid,1,streamdetails.get("audiocodec"),streamdetails.get("channels")))
|
|
|
|
def addBoxsetToKodiLibrary(self, boxset, connection, cursor):
|
|
|
|
strSet = boxset["Name"]
|
|
# check if exists
|
|
cursor.execute("SELECT idSet FROM sets WHERE strSet = ?", (strSet,))
|
|
result = cursor.fetchone()
|
|
setid = None
|
|
if result != None:
|
|
setid = result[0]
|
|
currentsetartsql = "SELECT type, url FROM art where media_type = ? and media_id = ? and url != ''"
|
|
cursor.execute(currentsetartsql, ("set", setid))
|
|
existing_type_map = {}
|
|
rows = cursor.fetchall()
|
|
for row in rows:
|
|
existing_type_map[row[0] ] = row[1]
|
|
|
|
artwork = {}
|
|
artwork["poster"] = API().getArtwork(boxset, "Primary")
|
|
artwork["banner"] = API().getArtwork(boxset, "Banner")
|
|
artwork["clearlogo"] = API().getArtwork(boxset, "Logo")
|
|
artwork["clearart"] = API().getArtwork(boxset, "Art")
|
|
artwork["landscape"] = API().getArtwork(boxset, "Thumb")
|
|
artwork["discart"] = API().getArtwork(boxset, "Disc")
|
|
artwork["fanart"] = API().getArtwork(boxset, "Backdrop")
|
|
|
|
art_types = ['poster','fanart','landscape','clearlogo','clearart','banner','discart']
|
|
for update_type in art_types:
|
|
if ( update_type in existing_type_map ):
|
|
if ( existing_type_map[update_type] != artwork[update_type] ) and artwork[update_type] != '':
|
|
setupdateartsql = "UPDATE art SET url = ? where media_type = ? and media_id = ? and type = ?"
|
|
cursor.execute(setupdateartsql,(artwork[update_type],"set",setid,update_type))
|
|
elif artwork[update_type] != '':
|
|
setartsql = "INSERT INTO art(media_id, media_type, type, url) VALUES(?,?,?,?)"
|
|
cursor.execute(setartsql,(setid,"set",update_type,artwork[update_type]))
|
|
|
|
if setid == None:
|
|
# insert not exists
|
|
setssql="INSERT INTO sets (idSet, strSet) values(?, ?)"
|
|
cursor.execute(setssql, (None,strSet))
|
|
#if OK:
|
|
cursor.execute("SELECT idSet FROM sets WHERE strSet = ?", (strSet,))
|
|
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
setid = result[0]
|
|
|
|
currentsetartsql = "SELECT type, url FROM art where media_type = ? and media_id = ? and url != ''"
|
|
cursor.execute(currentsetartsql, ("set", setid))
|
|
existing_type_map = {}
|
|
rows = cursor.fetchall()
|
|
for row in rows:
|
|
existing_type_map[row[0] ] = row[1]
|
|
|
|
artwork = {}
|
|
artwork["poster"] = API().getArtwork(boxset, "Primary")
|
|
artwork["banner"] = API().getArtwork(boxset, "Banner")
|
|
artwork["clearlogo"] = API().getArtwork(boxset, "Logo")
|
|
artwork["clearart"] = API().getArtwork(boxset, "Art")
|
|
artwork["landscape"] = API().getArtwork(boxset, "Thumb")
|
|
artwork["discart"] = API().getArtwork(boxset, "Disc")
|
|
artwork["fanart"] = API().getArtwork(boxset, "Backdrop")
|
|
|
|
art_types = ['poster','fanart','landscape','clearlogo','clearart','banner','discart']
|
|
for update_type in art_types:
|
|
if ( update_type in existing_type_map ):
|
|
if ( existing_type_map[update_type] != artwork[update_type] ) and artwork[update_type] != '':
|
|
setupdateartsql = "UPDATE art SET url = ? where media_type = ? and media_id = ? and type = ?"
|
|
cursor.execute(setupdateartsql,(artwork[update_type],"set",setid,update_type))
|
|
elif artwork[update_type] != '':
|
|
setartsql = "INSERT INTO art(media_id, media_type, type, url) VALUES(?,?,?,?)"
|
|
cursor.execute(setartsql,(setid,"set",update_type,artwork[update_type]))
|
|
|
|
return True
|
|
|
|
def updateBoxsetToKodiLibrary(self, boxsetmovie, boxset, connection, cursor):
|
|
strSet = boxset["Name"]
|
|
cursor.execute("SELECT kodi_id FROM emby WHERE emby_id = ?",(boxsetmovie["Id"],))
|
|
result = cursor.fetchone()
|
|
if result != None:
|
|
movieid = result[0]
|
|
else:
|
|
movieid = None
|
|
if movieid != None:
|
|
# check if exists
|
|
cursor.execute("SELECT idSet FROM sets WHERE strSet = ?", (strSet,))
|
|
result = cursor.fetchone()
|
|
setid = None
|
|
if result != None:
|
|
setid = result[0]
|
|
|
|
pathsql="update movie SET idSet = ? WHERE idMovie = ?"
|
|
cursor.execute(pathsql, (setid, movieid))
|
|
|
|
#update the checksum in emby table
|
|
cursor.execute("UPDATE emby SET checksum = ? WHERE emby_id = ?", (API().getChecksum(boxsetmovie),boxsetmovie["Id"]))
|
|
|
|
|
|
|