jellyfin-kodi/resources/lib/artwork.py

612 lines
21 KiB
Python
Raw Normal View History

2016-04-06 18:12:42 +00:00
# -*- coding: utf-8 -*-
#################################################################################################
import json
import requests
import os
import urllib
from sqlite3 import OperationalError
import xbmc
import xbmcgui
import xbmcvfs
import clientinfo
import image_cache_thread
2016-06-20 18:59:55 +00:00
from utils import Logging, window, settings, language as lang, kodiSQL
2016-04-06 18:12:42 +00:00
#################################################################################################
class Artwork():
xbmc_host = 'localhost'
xbmc_port = None
xbmc_username = None
xbmc_password = None
imageCacheThreads = []
imageCacheLimitThreads = 0
2016-06-16 05:43:36 +00:00
2016-04-06 18:12:42 +00:00
def __init__(self):
2016-06-16 05:43:36 +00:00
global log
log = Logging(self.__class__.__name__).log
2016-04-06 18:12:42 +00:00
self.clientinfo = clientinfo.ClientInfo()
self.addonName = self.clientinfo.getAddonName()
2016-06-16 05:43:36 +00:00
self.enableTextureCache = settings('enableTextureCache') == "true"
self.imageCacheLimitThreads = int(settings('imageCacheLimit'))
2016-04-06 18:12:42 +00:00
self.imageCacheLimitThreads = int(self.imageCacheLimitThreads * 5)
2016-06-16 05:43:36 +00:00
log("Using Image Cache Thread Count: %s" % self.imageCacheLimitThreads, 1)
2016-04-06 18:12:42 +00:00
if not self.xbmc_port and self.enableTextureCache:
self.setKodiWebServerDetails()
2016-06-16 05:43:36 +00:00
self.userId = window('emby_currUser')
self.server = window('emby_server%s' % self.userId)
2016-04-06 18:12:42 +00:00
def double_urlencode(self, text):
text = self.single_urlencode(text)
text = self.single_urlencode(text)
return text
def single_urlencode(self, text):
2016-06-16 05:43:36 +00:00
# urlencode needs a utf- string
text = urllib.urlencode({'blahblahblah':text.encode("utf-8")})
2016-04-06 18:12:42 +00:00
text = text[13:]
return text.decode("utf-8") #return the result again as unicode
def setKodiWebServerDetails(self):
# Get the Kodi webserver details - used to set the texture cache
web_query = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.GetSettingValue",
"params": {
"setting": "services.webserver"
}
}
result = xbmc.executeJSONRPC(json.dumps(web_query))
result = json.loads(result)
try:
xbmc_webserver_enabled = result['result']['value']
2016-04-14 00:37:02 +00:00
except (KeyError, TypeError):
2016-04-06 18:12:42 +00:00
xbmc_webserver_enabled = False
if not xbmc_webserver_enabled:
# Enable the webserver, it is disabled
web_port = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.SetSettingValue",
"params": {
"setting": "services.webserverport",
"value": 8080
}
}
result = xbmc.executeJSONRPC(json.dumps(web_port))
self.xbmc_port = 8080
web_user = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.SetSettingValue",
"params": {
"setting": "services.webserver",
"value": True
}
}
result = xbmc.executeJSONRPC(json.dumps(web_user))
self.xbmc_username = "kodi"
# Webserver already enabled
web_port = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.GetSettingValue",
"params": {
"setting": "services.webserverport"
}
}
result = xbmc.executeJSONRPC(json.dumps(web_port))
result = json.loads(result)
try:
self.xbmc_port = result['result']['value']
except TypeError:
pass
web_user = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.GetSettingValue",
"params": {
"setting": "services.webserverusername"
}
}
result = xbmc.executeJSONRPC(json.dumps(web_user))
result = json.loads(result)
try:
self.xbmc_username = result['result']['value']
except TypeError:
pass
web_pass = {
"jsonrpc": "2.0",
"id": 1,
"method": "Settings.GetSettingValue",
"params": {
"setting": "services.webserverpassword"
}
}
result = xbmc.executeJSONRPC(json.dumps(web_pass))
result = json.loads(result)
try:
self.xbmc_password = result['result']['value']
except TypeError:
pass
2016-06-20 18:59:55 +00:00
def fullTextureCacheSync(self):
2016-04-06 18:12:42 +00:00
# This method will sync all Kodi artwork to textures13.db
# and cache them locally. This takes diskspace!
2016-06-16 05:43:36 +00:00
dialog = xbmcgui.Dialog()
2016-04-06 18:12:42 +00:00
2016-06-16 05:43:36 +00:00
if not dialog.yesno(
2016-06-20 18:59:55 +00:00
heading=lang(29999),
line1=lang(33042)):
2016-04-06 18:12:42 +00:00
return
2016-06-16 05:43:36 +00:00
log("Doing Image Cache Sync", 1)
2016-04-06 18:12:42 +00:00
2016-06-16 05:43:36 +00:00
pdialog = xbmcgui.DialogProgress()
2016-06-20 18:59:55 +00:00
pdialog.create(lang(29999), lang(33043))
2016-04-06 18:12:42 +00:00
# ask to rest all existing or not
2016-06-20 18:59:55 +00:00
if dialog.yesno(lang(29999), lang(33044)):
2016-06-16 05:43:36 +00:00
log("Resetting all cache data first.", 1)
2016-04-06 18:12:42 +00:00
# Remove all existing textures first
2016-06-16 05:43:36 +00:00
path = xbmc.translatePath('special://thumbnails/').decode('utf-8')
2016-04-06 18:12:42 +00:00
if xbmcvfs.exists(path):
allDirs, allFiles = xbmcvfs.listdir(path)
for dir in allDirs:
allDirs, allFiles = xbmcvfs.listdir(path+dir)
for file in allFiles:
if os.path.supports_unicode_filenames:
2016-06-16 05:43:36 +00:00
path = os.path.join(path+dir.decode('utf-8'),file.decode('utf-8'))
xbmcvfs.delete(path)
2016-04-06 18:12:42 +00:00
else:
xbmcvfs.delete(os.path.join(path.encode('utf-8')+dir,file))
# remove all existing data from texture DB
2016-06-16 05:43:36 +00:00
connection = kodiSQL('texture')
cursor = connection.cursor()
cursor.execute('SELECT tbl_name FROM sqlite_master WHERE type="table"')
rows = cursor.fetchall()
2016-04-06 18:12:42 +00:00
for row in rows:
tableName = row[0]
2016-06-16 05:43:36 +00:00
if tableName != "version":
cursor.execute("DELETE FROM " + tableName)
connection.commit()
cursor.close()
2016-04-06 18:12:42 +00:00
# Cache all entries in video DB
2016-06-16 05:43:36 +00:00
connection = kodiSQL('video')
2016-04-06 18:12:42 +00:00
cursor = connection.cursor()
cursor.execute("SELECT url FROM art WHERE media_type != 'actor'") # dont include actors
result = cursor.fetchall()
total = len(result)
2016-06-16 05:43:36 +00:00
log("Image cache sync about to process %s images" % total, 1)
cursor.close()
count = 0
2016-04-06 18:12:42 +00:00
for url in result:
2016-06-16 05:43:36 +00:00
if pdialog.iscanceled():
2016-04-06 18:12:42 +00:00
break
2016-06-16 05:43:36 +00:00
2016-04-06 18:12:42 +00:00
percentage = int((float(count) / float(total))*100)
2016-06-16 05:43:36 +00:00
message = "%s of %s (%s)" % (count, total, self.imageCacheThreads)
2016-06-20 18:59:55 +00:00
pdialog.update(percentage, "%s %s" % (lang(33045), message))
2016-06-16 05:43:36 +00:00
self.cacheTexture(url[0])
2016-04-06 18:12:42 +00:00
count += 1
2016-06-16 05:43:36 +00:00
2016-04-06 18:12:42 +00:00
# Cache all entries in music DB
2016-06-16 05:43:36 +00:00
connection = kodiSQL('music')
2016-04-06 18:12:42 +00:00
cursor = connection.cursor()
cursor.execute("SELECT url FROM art")
result = cursor.fetchall()
total = len(result)
2016-06-16 05:43:36 +00:00
log("Image cache sync about to process %s images" % total, 1)
cursor.close()
count = 0
2016-04-06 18:12:42 +00:00
for url in result:
2016-06-16 05:43:36 +00:00
if pdialog.iscanceled():
2016-04-06 18:12:42 +00:00
break
2016-06-16 05:43:36 +00:00
2016-04-06 18:12:42 +00:00
percentage = int((float(count) / float(total))*100)
2016-06-16 05:43:36 +00:00
message = "%s of %s" % (count, total)
2016-06-20 18:59:55 +00:00
pdialog.update(percentage, "%s %s" % (lang(33045), message))
2016-06-16 05:43:36 +00:00
self.cacheTexture(url[0])
2016-04-06 18:12:42 +00:00
count += 1
2016-06-16 05:43:36 +00:00
2016-06-20 18:59:55 +00:00
pdialog.update(100, "%s %s" % (lang(33046), len(self.imageCacheThreads)))
2016-06-16 05:43:36 +00:00
log("Waiting for all threads to exit", 1)
while len(self.imageCacheThreads):
2016-04-06 18:12:42 +00:00
for thread in self.imageCacheThreads:
if thread.isFinished:
self.imageCacheThreads.remove(thread)
2016-06-20 18:59:55 +00:00
pdialog.update(100, "%s %s" % (lang(33046), len(self.imageCacheThreads)))
2016-06-16 05:43:36 +00:00
log("Waiting for all threads to exit: %s" % len(self.imageCacheThreads), 1)
2016-04-06 18:12:42 +00:00
xbmc.sleep(500)
2016-06-16 05:43:36 +00:00
pdialog.close()
2016-04-06 18:12:42 +00:00
2016-06-16 05:43:36 +00:00
def addWorkerImageCacheThread(self, url):
2016-04-06 18:12:42 +00:00
2016-06-16 05:43:36 +00:00
while True:
2016-04-06 18:12:42 +00:00
# removed finished
for thread in self.imageCacheThreads:
if thread.isFinished:
self.imageCacheThreads.remove(thread)
# add a new thread or wait and retry if we hit our limit
2016-06-16 05:43:36 +00:00
if len(self.imageCacheThreads) < self.imageCacheLimitThreads:
2016-04-06 18:12:42 +00:00
newThread = image_cache_thread.image_cache_thread()
2016-06-16 21:24:07 +00:00
newThread.setUrl(self.double_urlencode(url))
2016-04-06 18:12:42 +00:00
newThread.setHost(self.xbmc_host, self.xbmc_port)
newThread.setAuth(self.xbmc_username, self.xbmc_password)
newThread.start()
self.imageCacheThreads.append(newThread)
return
else:
2016-06-16 05:43:36 +00:00
log("Waiting for empty queue spot: %s" % len(self.imageCacheThreads), 2)
2016-04-06 18:12:42 +00:00
xbmc.sleep(50)
2016-06-16 05:43:36 +00:00
def cacheTexture(self, url):
2016-04-06 18:12:42 +00:00
# Cache a single image url to the texture cache
if url and self.enableTextureCache:
2016-06-16 05:43:36 +00:00
log("Processing: %s" % url, 2)
2016-04-06 18:12:42 +00:00
2016-06-16 05:43:36 +00:00
if not self.imageCacheLimitThreads:
# Add image to texture cache by simply calling it at the http endpoint
2016-04-06 18:12:42 +00:00
url = self.double_urlencode(url)
try: # Extreme short timeouts so we will have a exception.
response = requests.head(
2016-06-16 05:43:36 +00:00
url=("http://%s:%s/image/image://%s"
2016-04-06 18:12:42 +00:00
% (self.xbmc_host, self.xbmc_port, url)),
auth=(self.xbmc_username, self.xbmc_password),
timeout=(0.01, 0.01))
# We don't need the result
except: pass
else:
self.addWorkerImageCacheThread(url)
2016-06-20 18:59:55 +00:00
def addArtwork(self, artwork, kodiId, mediaType, cursor):
2016-04-06 18:12:42 +00:00
# Kodi conversion table
kodiart = {
'Primary': ["thumb", "poster"],
'Banner': "banner",
'Logo': "clearlogo",
'Art': "clearart",
'Thumb': "landscape",
'Disc': "discart",
'Backdrop': "fanart",
'BoxRear': "poster"
}
# Artwork is a dictionary
for art in artwork:
if art == "Backdrop":
# Backdrop entry is a list
# Process extra fanart for artwork downloader (fanart, fanart1, fanart2...)
backdrops = artwork[art]
backdropsNumber = len(backdrops)
query = ' '.join((
"SELECT url",
"FROM art",
"WHERE media_id = ?",
"AND media_type = ?",
"AND type LIKE ?"
))
2016-06-20 18:59:55 +00:00
cursor.execute(query, (kodiId, mediaType, "fanart%",))
2016-04-06 18:12:42 +00:00
rows = cursor.fetchall()
if len(rows) > backdropsNumber:
# More backdrops in database. Delete extra fanart.
query = ' '.join((
"DELETE FROM art",
"WHERE media_id = ?",
"AND media_type = ?",
"AND type LIKE ?"
))
2016-06-20 18:59:55 +00:00
cursor.execute(query, (kodiId, mediaType, "fanart_",))
2016-04-06 18:12:42 +00:00
# Process backdrops and extra fanart
index = ""
for backdrop in backdrops:
self.addOrUpdateArt(
2016-06-20 19:04:10 +00:00
imageUrl=backdrop,
kodiId=kodiId,
mediaType=mediaType,
imageType="%s%s" % ("fanart", index),
2016-04-06 18:12:42 +00:00
cursor=cursor)
if backdropsNumber > 1:
try: # Will only fail on the first try, str to int.
index += 1
except TypeError:
index = 1
elif art == "Primary":
# Primary art is processed as thumb and poster for Kodi.
for artType in kodiart[art]:
self.addOrUpdateArt(
2016-06-20 19:04:10 +00:00
imageUrl=artwork[art],
kodiId=kodiId,
mediaType=mediaType,
imageType=artType,
2016-04-06 18:12:42 +00:00
cursor=cursor)
elif kodiart.get(art):
# Process the rest artwork type that Kodi can use
self.addOrUpdateArt(
2016-06-20 19:04:10 +00:00
imageUrl=artwork[art],
kodiId=kodiId,
mediaType=mediaType,
imageType=kodiart[art],
2016-04-06 18:12:42 +00:00
cursor=cursor)
2016-06-20 18:59:55 +00:00
def addOrUpdateArt(self, imageUrl, kodiId, mediaType, imageType, cursor):
2016-04-06 18:12:42 +00:00
# Possible that the imageurl is an empty string
2016-06-20 18:59:55 +00:00
if imageUrl:
2016-04-06 18:12:42 +00:00
cacheimage = False
query = ' '.join((
"SELECT url",
"FROM art",
"WHERE media_id = ?",
"AND media_type = ?",
"AND type = ?"
))
2016-06-20 18:59:55 +00:00
cursor.execute(query, (kodiId, mediaType, imageType,))
2016-04-06 18:12:42 +00:00
try: # Update the artwork
url = cursor.fetchone()[0]
except TypeError: # Add the artwork
cacheimage = True
2016-06-20 18:59:55 +00:00
log("Adding Art Link for kodiId: %s (%s)" % (kodiId, imageUrl), 2)
2016-04-06 18:12:42 +00:00
query = (
'''
INSERT INTO art(media_id, media_type, type, url)
VALUES (?, ?, ?, ?)
'''
)
2016-06-20 18:59:55 +00:00
cursor.execute(query, (kodiId, mediaType, imageType, imageUrl))
2016-04-06 18:12:42 +00:00
else: # Only cache artwork if it changed
2016-06-20 18:59:55 +00:00
if url != imageUrl:
2016-04-06 18:12:42 +00:00
cacheimage = True
# Only for the main backdrop, poster
2016-06-16 05:43:36 +00:00
if (window('emby_initialScan') != "true" and
2016-06-20 18:59:55 +00:00
imageType in ("fanart", "poster")):
2016-04-06 18:12:42 +00:00
# Delete current entry before updating with the new one
self.deleteCachedArtwork(url)
2016-06-16 05:43:36 +00:00
log("Updating Art url for %s kodiId: %s (%s) -> (%s)"
2016-06-20 18:59:55 +00:00
% (imageType, kodiId, url, imageUrl), 1)
2016-04-06 18:12:42 +00:00
query = ' '.join((
"UPDATE art",
"SET url = ?",
"WHERE media_id = ?",
"AND media_type = ?",
"AND type = ?"
))
2016-06-20 18:59:55 +00:00
cursor.execute(query, (imageUrl, kodiId, mediaType, imageType))
2016-04-06 18:12:42 +00:00
# Cache fanart and poster in Kodi texture cache
2016-06-20 18:59:55 +00:00
if cacheimage and imageType in ("fanart", "poster"):
self.cacheTexture(imageUrl)
2016-04-06 18:12:42 +00:00
2016-06-20 18:59:55 +00:00
def deleteArtwork(self, kodiId, mediaType, cursor):
2016-04-06 18:12:42 +00:00
query = ' '.join((
"SELECT url, type",
"FROM art",
"WHERE media_id = ?",
"AND media_type = ?"
))
2016-06-20 18:59:55 +00:00
cursor.execute(query, (kodiId, mediaType,))
2016-04-06 18:12:42 +00:00
rows = cursor.fetchall()
for row in rows:
url = row[0]
2016-06-20 18:59:55 +00:00
imageType = row[1]
if imageType in ("poster", "fanart"):
2016-04-06 18:12:42 +00:00
self.deleteCachedArtwork(url)
def deleteCachedArtwork(self, url):
# Only necessary to remove and apply a new backdrop or poster
2016-06-16 05:43:36 +00:00
connection = kodiSQL('texture')
2016-04-06 18:12:42 +00:00
cursor = connection.cursor()
try:
cursor.execute("SELECT cachedurl FROM texture WHERE url = ?", (url,))
cachedurl = cursor.fetchone()[0]
except TypeError:
2016-06-16 05:43:36 +00:00
log("Could not find cached url.", 1)
2016-04-06 18:12:42 +00:00
except OperationalError:
2016-06-16 05:43:36 +00:00
log("Database is locked. Skip deletion process.", 1)
2016-04-06 18:12:42 +00:00
else: # Delete thumbnail as well as the entry
thumbnails = xbmc.translatePath("special://thumbnails/%s" % cachedurl).decode('utf-8')
2016-06-16 05:43:36 +00:00
log("Deleting cached thumbnail: %s" % thumbnails, 1)
2016-04-06 18:12:42 +00:00
xbmcvfs.delete(thumbnails)
try:
cursor.execute("DELETE FROM texture WHERE url = ?", (url,))
connection.commit()
except OperationalError:
2016-06-16 05:43:36 +00:00
log("Issue deleting url from cache. Skipping.", 2)
2016-04-06 18:12:42 +00:00
finally:
cursor.close()
def getPeopleArtwork(self, people):
# append imageurl if existing
for person in people:
personId = person['Id']
tag = person.get('PrimaryImageTag')
image = ""
if tag:
image = (
"%s/emby/Items/%s/Images/Primary?"
"MaxWidth=400&MaxHeight=400&Index=0&Tag=%s"
% (self.server, personId, tag))
person['imageurl'] = image
return people
2016-06-20 18:59:55 +00:00
def getUserArtwork(self, itemId, itemType):
2016-04-06 18:12:42 +00:00
# Load user information set by UserClient
image = ("%s/emby/Users/%s/Images/%s?Format=original"
2016-06-20 18:59:55 +00:00
% (self.server, itemId, itemType))
2016-04-06 18:12:42 +00:00
return image
2016-06-16 21:24:07 +00:00
def getAllArtwork(self, item, parentInfo=False):
2016-04-06 18:12:42 +00:00
itemid = item['Id']
artworks = item['ImageTags']
2016-06-16 05:43:36 +00:00
backdrops = item.get('BackdropImageTags', [])
2016-04-06 18:12:42 +00:00
maxHeight = 10000
maxWidth = 10000
customquery = ""
2016-06-16 05:43:36 +00:00
if settings('compressArt') == "true":
2016-04-06 18:12:42 +00:00
customquery = "&Quality=90"
2016-06-16 05:43:36 +00:00
if settings('enableCoverArt') == "false":
2016-04-06 18:12:42 +00:00
customquery += "&EnableImageEnhancers=false"
allartworks = {
'Primary': "",
'Art': "",
'Banner': "",
'Logo': "",
'Thumb': "",
'Disc': "",
'Backdrop': []
}
# Process backdrops
for index, tag in enumerate(backdrops):
artwork = (
"%s/emby/Items/%s/Images/Backdrop/%s?"
"MaxWidth=%s&MaxHeight=%s&Format=original&Tag=%s%s"
% (self.server, itemid, index, maxWidth, maxHeight, tag, customquery))
allartworks['Backdrop'].append(artwork)
# Process the rest of the artwork
for art in artworks:
# Filter backcover
if art != "BoxRear":
tag = artworks[art]
artwork = (
"%s/emby/Items/%s/Images/%s/0?"
"MaxWidth=%s&MaxHeight=%s&Format=original&Tag=%s%s"
% (self.server, itemid, art, maxWidth, maxHeight, tag, customquery))
allartworks[art] = artwork
# Process parent items if the main item is missing artwork
2016-06-16 21:24:07 +00:00
if parentInfo:
2016-04-06 18:12:42 +00:00
# Process parent backdrops
if not allartworks['Backdrop']:
parentId = item.get('ParentBackdropItemId')
if parentId:
# If there is a parentId, go through the parent backdrop list
parentbackdrops = item['ParentBackdropImageTags']
for index, tag in enumerate(parentbackdrops):
artwork = (
"%s/emby/Items/%s/Images/Backdrop/%s?"
"MaxWidth=%s&MaxHeight=%s&Format=original&Tag=%s%s"
% (self.server, parentId, index, maxWidth, maxHeight, tag, customquery))
allartworks['Backdrop'].append(artwork)
# Process the rest of the artwork
parentartwork = ['Logo', 'Art', 'Thumb']
for parentart in parentartwork:
if not allartworks[parentart]:
parentId = item.get('Parent%sItemId' % parentart)
if parentId:
parentTag = item['Parent%sImageTag' % parentart]
artwork = (
"%s/emby/Items/%s/Images/%s/0?"
"MaxWidth=%s&MaxHeight=%s&Format=original&Tag=%s%s"
% (self.server, parentId, parentart,
maxWidth, maxHeight, parentTag, customquery))
allartworks[parentart] = artwork
# Parent album works a bit differently
if not allartworks['Primary']:
parentId = item.get('AlbumId')
if parentId and item.get('AlbumPrimaryImageTag'):
parentTag = item['AlbumPrimaryImageTag']
artwork = (
"%s/emby/Items/%s/Images/Primary/0?"
"MaxWidth=%s&MaxHeight=%s&Format=original&Tag=%s%s"
% (self.server, parentId, maxWidth, maxHeight, parentTag, customquery))
allartworks['Primary'] = artwork
2016-06-16 05:43:36 +00:00
return allartworks