2015-12-25 06:51:47 +11:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import json
|
2016-08-30 02:44:27 +10:00
|
|
|
import logging
|
2015-12-25 06:51:47 +11:00
|
|
|
import requests
|
|
|
|
import os
|
|
|
|
import urllib
|
2016-02-29 14:39:00 +11:00
|
|
|
from sqlite3 import OperationalError
|
2016-09-17 18:58:08 +10:00
|
|
|
from threading import Lock
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
import xbmc
|
2016-01-16 14:07:36 +11:00
|
|
|
import xbmcgui
|
2015-12-25 06:51:47 +11:00
|
|
|
import xbmcvfs
|
|
|
|
|
2016-01-16 14:07:36 +11:00
|
|
|
import image_cache_thread
|
2016-09-11 20:21:13 +10:00
|
|
|
from utils import window, settings, language as lang, kodiSQL, tryEncode, \
|
2016-09-17 18:58:08 +10:00
|
|
|
tryDecode, IfExists
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-04-07 02:23:51 +10:00
|
|
|
# Disable annoying requests warnings
|
|
|
|
import requests.packages.urllib3
|
|
|
|
requests.packages.urllib3.disable_warnings()
|
2016-08-30 03:39:59 +10:00
|
|
|
###############################################################################
|
2016-08-30 02:44:27 +10:00
|
|
|
|
2016-08-30 03:39:59 +10:00
|
|
|
log = logging.getLogger("PLEX."+__name__)
|
2016-03-24 02:57:49 +11:00
|
|
|
|
2016-02-20 06:03:06 +11:00
|
|
|
###############################################################################
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
|
2016-09-11 21:51:53 +10:00
|
|
|
def setKodiWebServerDetails():
|
|
|
|
"""
|
|
|
|
Get the Kodi webserver details - used to set the texture cache
|
|
|
|
"""
|
2015-12-25 06:51:47 +11:00
|
|
|
xbmc_port = None
|
|
|
|
xbmc_username = None
|
|
|
|
xbmc_password = None
|
2016-09-11 21:51:53 +10:00
|
|
|
web_query = {
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"id": 1,
|
|
|
|
"method": "Settings.GetSettingValue",
|
|
|
|
"params": {
|
|
|
|
"setting": "services.webserver"
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
2016-09-11 21:51:53 +10:00
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(web_query))
|
|
|
|
result = json.loads(result)
|
|
|
|
try:
|
|
|
|
xbmc_webserver_enabled = result['result']['value']
|
|
|
|
except (KeyError, TypeError):
|
|
|
|
xbmc_webserver_enabled = False
|
|
|
|
if not xbmc_webserver_enabled:
|
|
|
|
# Enable the webserver, it is disabled
|
2015-12-27 13:07:13 +11:00
|
|
|
web_port = {
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"id": 1,
|
2016-09-11 21:51:53 +10:00
|
|
|
"method": "Settings.SetSettingValue",
|
2015-12-27 13:07:13 +11:00
|
|
|
"params": {
|
2016-09-11 21:51:53 +10:00
|
|
|
"setting": "services.webserverport",
|
|
|
|
"value": 8080
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
2015-12-27 13:07:13 +11:00
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(web_port))
|
2016-09-11 21:51:53 +10:00
|
|
|
xbmc_port = 8080
|
2015-12-27 13:07:13 +11:00
|
|
|
web_user = {
|
|
|
|
"jsonrpc": "2.0",
|
|
|
|
"id": 1,
|
2016-09-11 21:51:53 +10:00
|
|
|
"method": "Settings.SetSettingValue",
|
2015-12-27 13:07:13 +11:00
|
|
|
"params": {
|
2016-09-11 21:51:53 +10:00
|
|
|
"setting": "services.webserver",
|
|
|
|
"value": True
|
2015-12-25 06:51:47 +11:00
|
|
|
}
|
2015-12-27 13:07:13 +11:00
|
|
|
}
|
|
|
|
result = xbmc.executeJSONRPC(json.dumps(web_user))
|
2016-09-11 21:51:53 +10:00
|
|
|
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:
|
|
|
|
xbmc_port = result['result']['value']
|
|
|
|
except (TypeError, KeyError):
|
|
|
|
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:
|
|
|
|
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:
|
|
|
|
xbmc_password = result['result']['value']
|
|
|
|
except TypeError:
|
|
|
|
pass
|
|
|
|
return (xbmc_port, xbmc_username, xbmc_password)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
|
2016-09-17 18:58:03 +10:00
|
|
|
class Artwork():
|
|
|
|
lock = Lock()
|
2016-09-17 18:58:08 +10:00
|
|
|
|
|
|
|
enableTextureCache = settings('enableTextureCache') == "true"
|
2016-09-17 18:58:03 +10:00
|
|
|
imageCacheLimitThreads = int(settings('imageCacheLimit'))
|
|
|
|
imageCacheLimitThreads = imageCacheLimitThreads * 5
|
2016-09-17 18:58:08 +10:00
|
|
|
log.info("Using Image Cache Thread Count: %s" % imageCacheLimitThreads)
|
|
|
|
|
|
|
|
xbmc_host = 'localhost'
|
|
|
|
xbmc_port = None
|
|
|
|
xbmc_username = None
|
|
|
|
xbmc_password = None
|
2016-09-17 18:58:03 +10:00
|
|
|
if enableTextureCache:
|
2016-09-17 18:58:08 +10:00
|
|
|
xbmc_port, xbmc_username, xbmc_password = setKodiWebServerDetails()
|
|
|
|
|
|
|
|
imageCacheThreads = []
|
2016-09-11 21:51:53 +10:00
|
|
|
|
|
|
|
def double_urlencode(self, text):
|
|
|
|
text = self.single_urlencode(text)
|
|
|
|
text = self.single_urlencode(text)
|
|
|
|
return text
|
|
|
|
|
|
|
|
def single_urlencode(self, text):
|
|
|
|
# urlencode needs a utf- string
|
|
|
|
text = urllib.urlencode({'blahblahblah': tryEncode(text)})
|
|
|
|
text = text[13:]
|
|
|
|
# return the result again as unicode
|
|
|
|
return tryDecode(text)
|
2016-03-04 00:00:48 +11:00
|
|
|
|
2016-09-11 21:51:53 +10:00
|
|
|
def fullTextureCacheSync(self):
|
|
|
|
"""
|
|
|
|
This method will sync all Kodi artwork to textures13.db
|
|
|
|
and cache them locally. This takes diskspace!
|
|
|
|
"""
|
2016-03-07 23:38:45 +11:00
|
|
|
if not xbmcgui.Dialog().yesno(
|
2016-09-11 21:51:53 +10:00
|
|
|
"Image Texture Cache", lang(39250)):
|
2016-01-16 14:07:36 +11:00
|
|
|
return
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-08-30 02:44:27 +10:00
|
|
|
log.info("Doing Image Cache Sync")
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-08-30 03:39:59 +10:00
|
|
|
pdialog = xbmcgui.DialogProgress()
|
|
|
|
pdialog.create("PlexKodiConnect", "Image Cache Sync")
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-01-16 14:07:36 +11:00
|
|
|
# ask to rest all existing or not
|
2016-03-07 23:38:45 +11:00
|
|
|
if xbmcgui.Dialog().yesno(
|
2016-09-11 21:51:53 +10:00
|
|
|
"Image Texture Cache", lang(39251), ""):
|
2016-08-30 03:39:59 +10:00
|
|
|
log.info("Resetting all cache data first")
|
2016-01-16 14:07:36 +11:00
|
|
|
# Remove all existing textures first
|
2016-08-30 03:39:59 +10:00
|
|
|
path = tryDecode(xbmc.translatePath("special://thumbnails/"))
|
|
|
|
if IfExists(path):
|
2016-01-16 14:07:36 +11:00
|
|
|
allDirs, allFiles = xbmcvfs.listdir(path)
|
|
|
|
for dir in allDirs:
|
|
|
|
allDirs, allFiles = xbmcvfs.listdir(path+dir)
|
|
|
|
for file in allFiles:
|
2016-01-18 22:05:05 +11:00
|
|
|
if os.path.supports_unicode_filenames:
|
2016-05-07 21:15:02 +10:00
|
|
|
xbmcvfs.delete(os.path.join(
|
2016-08-30 03:39:59 +10:00
|
|
|
path + tryDecode(dir),
|
|
|
|
tryDecode(file)))
|
2016-01-18 22:05:05 +11:00
|
|
|
else:
|
2016-05-07 21:15:02 +10:00
|
|
|
xbmcvfs.delete(os.path.join(
|
2016-08-30 03:39:59 +10:00
|
|
|
tryEncode(path) + dir,
|
2016-05-07 21:15:02 +10:00
|
|
|
file))
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-01-16 14:07:36 +11:00
|
|
|
# remove all existing data from texture DB
|
2016-08-30 02:44:27 +10:00
|
|
|
connection = kodiSQL('texture')
|
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute('SELECT tbl_name FROM sqlite_master WHERE type="table"')
|
|
|
|
rows = cursor.fetchall()
|
2016-01-16 14:07:36 +11:00
|
|
|
for row in rows:
|
|
|
|
tableName = row[0]
|
2016-08-30 02:44:27 +10:00
|
|
|
if tableName != "version":
|
|
|
|
cursor.execute("DELETE FROM " + tableName)
|
|
|
|
connection.commit()
|
2016-09-11 21:51:53 +10:00
|
|
|
connection.close()
|
2016-01-16 14:07:36 +11:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
# Cache all entries in video DB
|
2016-08-30 02:44:27 +10:00
|
|
|
connection = kodiSQL('video')
|
2015-12-25 06:51:47 +11:00
|
|
|
cursor = connection.cursor()
|
2016-09-11 21:51:53 +10:00
|
|
|
# dont include actors
|
|
|
|
cursor.execute("SELECT url FROM art WHERE media_type != 'actor'")
|
2015-12-25 06:51:47 +11:00
|
|
|
result = cursor.fetchall()
|
2016-01-16 14:07:36 +11:00
|
|
|
total = len(result)
|
2016-08-30 02:44:27 +10:00
|
|
|
log.info("Image cache sync about to process %s images" % total)
|
2016-09-11 21:51:53 +10:00
|
|
|
connection.close()
|
2016-08-30 02:44:27 +10:00
|
|
|
|
|
|
|
count = 0
|
2015-12-25 06:51:47 +11:00
|
|
|
for url in result:
|
2016-08-30 02:44:27 +10:00
|
|
|
if pdialog.iscanceled():
|
2016-01-19 18:58:42 +11:00
|
|
|
break
|
2016-08-30 02:44:27 +10:00
|
|
|
|
2016-01-16 14:07:36 +11:00
|
|
|
percentage = int((float(count) / float(total))*100)
|
2016-08-30 02:44:27 +10:00
|
|
|
message = "%s of %s (%s)" % (count, total, self.imageCacheThreads)
|
|
|
|
pdialog.update(percentage, "%s %s" % (lang(33045), message))
|
|
|
|
self.cacheTexture(url[0])
|
2016-01-16 14:07:36 +11:00
|
|
|
count += 1
|
2015-12-25 06:51:47 +11:00
|
|
|
# Cache all entries in music DB
|
2016-08-30 02:44:27 +10:00
|
|
|
connection = kodiSQL('music')
|
2015-12-25 06:51:47 +11:00
|
|
|
cursor = connection.cursor()
|
|
|
|
cursor.execute("SELECT url FROM art")
|
|
|
|
result = cursor.fetchall()
|
2016-01-16 14:07:36 +11:00
|
|
|
total = len(result)
|
2016-08-30 02:44:27 +10:00
|
|
|
log.info("Image cache sync about to process %s images" % total)
|
2016-09-11 21:51:53 +10:00
|
|
|
connection.close()
|
2016-08-30 02:44:27 +10:00
|
|
|
|
|
|
|
count = 0
|
2015-12-25 06:51:47 +11:00
|
|
|
for url in result:
|
2016-08-30 02:44:27 +10:00
|
|
|
if pdialog.iscanceled():
|
2016-04-26 21:53:19 +10:00
|
|
|
break
|
2016-08-30 02:44:27 +10:00
|
|
|
|
2016-01-16 14:07:36 +11:00
|
|
|
percentage = int((float(count) / float(total))*100)
|
2016-08-30 02:44:27 +10:00
|
|
|
message = "%s of %s" % (count, total)
|
|
|
|
pdialog.update(percentage, "%s %s" % (lang(33045), message))
|
|
|
|
self.cacheTexture(url[0])
|
2016-01-16 14:07:36 +11:00
|
|
|
count += 1
|
2016-09-11 21:51:53 +10:00
|
|
|
pdialog.update(100, "%s %s"
|
|
|
|
% (lang(33046), len(self.imageCacheThreads)))
|
2016-08-30 02:44:27 +10:00
|
|
|
log.info("Waiting for all threads to exit")
|
|
|
|
while len(self.imageCacheThreads):
|
2016-09-11 21:51:53 +10:00
|
|
|
with self.lock:
|
|
|
|
for thread in self.imageCacheThreads:
|
|
|
|
if thread.is_finished:
|
|
|
|
self.imageCacheThreads.remove(thread)
|
|
|
|
pdialog.update(100, "%s %s"
|
|
|
|
% (lang(33046), len(self.imageCacheThreads)))
|
|
|
|
log.info("Waiting for all threads to exit: %s"
|
|
|
|
% len(self.imageCacheThreads))
|
2016-01-16 14:07:36 +11:00
|
|
|
xbmc.sleep(500)
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-08-30 02:44:27 +10:00
|
|
|
pdialog.close()
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-17 18:58:08 +10:00
|
|
|
def addWorkerImageCacheThread(self, url):
|
|
|
|
while True:
|
|
|
|
# removed finished
|
|
|
|
with self.lock:
|
|
|
|
for thread in self.imageCacheThreads:
|
|
|
|
if thread.is_finished:
|
|
|
|
self.imageCacheThreads.remove(thread)
|
|
|
|
# add a new thread or wait and retry if we hit our limit
|
|
|
|
with self.lock:
|
|
|
|
if len(self.imageCacheThreads) < self.imageCacheLimitThreads:
|
|
|
|
newThread = image_cache_thread.ImageCacheThread()
|
|
|
|
newThread.set_url(self.double_urlencode(url))
|
|
|
|
newThread.set_host(self.xbmc_host, self.xbmc_port)
|
|
|
|
newThread.set_auth(self.xbmc_username, self.xbmc_password)
|
|
|
|
newThread.start()
|
|
|
|
self.imageCacheThreads.append(newThread)
|
|
|
|
return
|
|
|
|
log.debug("Waiting for empty queue spot: %s"
|
|
|
|
% len(self.imageCacheThreads))
|
|
|
|
xbmc.sleep(50)
|
|
|
|
|
2016-08-30 02:44:27 +10:00
|
|
|
def cacheTexture(self, url):
|
2015-12-25 06:51:47 +11:00
|
|
|
# Cache a single image url to the texture cache
|
|
|
|
if url and self.enableTextureCache:
|
2016-08-30 02:44:27 +10:00
|
|
|
log.debug("Processing: %s" % url)
|
|
|
|
if not self.imageCacheLimitThreads:
|
2016-09-11 21:51:53 +10:00
|
|
|
# Add image to texture cache by simply calling it at the http
|
|
|
|
# endpoint
|
2016-01-16 14:07:36 +11:00
|
|
|
url = self.double_urlencode(url)
|
2016-09-11 21:51:53 +10:00
|
|
|
try:
|
|
|
|
# Extreme short timeouts so we will have a exception.
|
|
|
|
requests.head(
|
|
|
|
url=("http://%s:%s/image/image://%s"
|
|
|
|
% (self.xbmc_host, self.xbmc_port, url)),
|
|
|
|
auth=(self.xbmc_username, self.xbmc_password),
|
|
|
|
timeout=(0.01, 0.01))
|
2016-01-16 14:07:36 +11:00
|
|
|
# We don't need the result
|
2016-09-11 21:51:53 +10:00
|
|
|
except:
|
|
|
|
pass
|
2016-01-16 14:07:36 +11:00
|
|
|
else:
|
2016-09-17 18:58:08 +10:00
|
|
|
self.addWorkerImageCacheThread(url)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-11 23:49:50 +10:00
|
|
|
def addArtwork(self, artwork, kodiId, mediaType, cursor):
|
2015-12-25 06:51:47 +11: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
|
2016-09-11 21:51:53 +10:00
|
|
|
# Process extra fanart for artwork downloader (fanart, fanart1,
|
|
|
|
# fanart2...)
|
2015-12-25 06:51:47 +11:00
|
|
|
backdrops = artwork[art]
|
|
|
|
backdropsNumber = len(backdrops)
|
|
|
|
|
|
|
|
query = ' '.join((
|
|
|
|
|
|
|
|
"SELECT url",
|
|
|
|
"FROM art",
|
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?",
|
|
|
|
"AND type LIKE ?"
|
|
|
|
))
|
2016-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (kodiId, mediaType, "fanart%",))
|
|
|
|
rows = cursor.fetchall()
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
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-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (kodiId, mediaType, "fanart_",))
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
# Process backdrops and extra fanart
|
|
|
|
index = ""
|
|
|
|
for backdrop in backdrops:
|
|
|
|
self.addOrUpdateArt(
|
|
|
|
imageUrl=backdrop,
|
|
|
|
kodiId=kodiId,
|
|
|
|
mediaType=mediaType,
|
2016-09-11 23:49:50 +10:00
|
|
|
imageType="%s%s" % ("fanart", index),
|
|
|
|
cursor=cursor)
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
if backdropsNumber > 1:
|
2016-09-11 23:49:50 +10:00
|
|
|
try: # Will only fail on the first try, str to int.
|
2015-12-25 06:51:47 +11:00
|
|
|
index += 1
|
|
|
|
except TypeError:
|
|
|
|
index = 1
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
elif art == "Primary":
|
|
|
|
# Primary art is processed as thumb and poster for Kodi.
|
|
|
|
for artType in kodiart[art]:
|
|
|
|
self.addOrUpdateArt(
|
|
|
|
imageUrl=artwork[art],
|
|
|
|
kodiId=kodiId,
|
|
|
|
mediaType=mediaType,
|
2016-09-11 23:49:50 +10:00
|
|
|
imageType=artType,
|
|
|
|
cursor=cursor)
|
|
|
|
|
2015-12-25 06:51:47 +11:00
|
|
|
elif kodiart.get(art):
|
|
|
|
# Process the rest artwork type that Kodi can use
|
|
|
|
self.addOrUpdateArt(
|
|
|
|
imageUrl=artwork[art],
|
|
|
|
kodiId=kodiId,
|
|
|
|
mediaType=mediaType,
|
2016-09-11 23:49:50 +10:00
|
|
|
imageType=kodiart[art],
|
|
|
|
cursor=cursor)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-11 23:49:50 +10:00
|
|
|
def addOrUpdateArt(self, imageUrl, kodiId, mediaType, imageType, cursor):
|
2016-09-11 21:51:53 +10:00
|
|
|
if not imageUrl:
|
|
|
|
# Possible that the imageurl is an empty string
|
|
|
|
return
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-11 21:51:53 +10:00
|
|
|
query = ' '.join((
|
|
|
|
"SELECT url",
|
|
|
|
"FROM art",
|
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?",
|
|
|
|
"AND type = ?"
|
|
|
|
))
|
2016-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (kodiId, mediaType, imageType,))
|
2016-09-11 21:51:53 +10:00
|
|
|
try:
|
|
|
|
# Update the artwork
|
2016-09-11 23:49:50 +10:00
|
|
|
url = cursor.fetchone()[0]
|
2016-09-11 21:51:53 +10:00
|
|
|
except TypeError:
|
|
|
|
# Add the artwork
|
|
|
|
log.debug("Adding Art Link for kodiId: %s (%s)"
|
|
|
|
% (kodiId, imageUrl))
|
|
|
|
query = (
|
|
|
|
'''
|
|
|
|
INSERT INTO art(media_id, media_type, type, url)
|
|
|
|
VALUES (?, ?, ?, ?)
|
|
|
|
'''
|
|
|
|
)
|
2016-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (kodiId, mediaType, imageType, imageUrl))
|
2016-09-11 21:51:53 +10:00
|
|
|
else:
|
|
|
|
if url == imageUrl:
|
|
|
|
# Only cache artwork if it changed
|
|
|
|
return
|
|
|
|
# Only for the main backdrop, poster
|
|
|
|
if (window('plex_initialScan') != "true" and
|
|
|
|
imageType in ("fanart", "poster")):
|
|
|
|
# Delete current entry before updating with the new one
|
|
|
|
self.deleteCachedArtwork(url)
|
|
|
|
log.debug("Updating Art url for %s kodiId %s %s -> (%s)"
|
|
|
|
% (imageType, kodiId, url, imageUrl))
|
2015-12-25 06:51:47 +11:00
|
|
|
query = ' '.join((
|
2016-09-11 21:51:53 +10:00
|
|
|
"UPDATE art",
|
|
|
|
"SET url = ?",
|
2015-12-25 06:51:47 +11:00
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?",
|
|
|
|
"AND type = ?"
|
|
|
|
))
|
2016-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (imageUrl, kodiId, mediaType, imageType))
|
2016-04-26 21:53:19 +10:00
|
|
|
|
2016-09-11 21:51:53 +10:00
|
|
|
# Cache fanart and poster in Kodi texture cache
|
|
|
|
self.cacheTexture(imageUrl)
|
2015-12-25 06:51:47 +11:00
|
|
|
|
2016-09-11 23:49:50 +10:00
|
|
|
def deleteArtwork(self, kodiId, mediaType, cursor):
|
2015-12-25 06:51:47 +11:00
|
|
|
query = ' '.join((
|
2016-09-11 21:51:53 +10:00
|
|
|
"SELECT url",
|
2015-12-25 06:51:47 +11:00
|
|
|
"FROM art",
|
|
|
|
"WHERE media_id = ?",
|
|
|
|
"AND media_type = ?"
|
|
|
|
))
|
2016-09-11 23:49:50 +10:00
|
|
|
cursor.execute(query, (kodiId, mediaType,))
|
|
|
|
rows = cursor.fetchall()
|
2015-12-25 06:51:47 +11:00
|
|
|
for row in rows:
|
2016-09-11 21:51:53 +10:00
|
|
|
self.deleteCachedArtwork(row[0])
|
2015-12-25 06:51:47 +11:00
|
|
|
|
|
|
|
def deleteCachedArtwork(self, url):
|
|
|
|
# Only necessary to remove and apply a new backdrop or poster
|
2016-08-30 02:44:27 +10:00
|
|
|
connection = kodiSQL('texture')
|
2015-12-25 06:51:47 +11:00
|
|
|
cursor = connection.cursor()
|
|
|
|
try:
|
2016-09-11 21:51:53 +10:00
|
|
|
cursor.execute("SELECT cachedurl FROM texture WHERE url = ?",
|
|
|
|
(url,))
|
2015-12-25 06:51:47 +11:00
|
|
|
cachedurl = cursor.fetchone()[0]
|
|
|
|
except TypeError:
|
2016-08-30 02:44:27 +10:00
|
|
|
log.info("Could not find cached url.")
|
2016-02-29 14:39:00 +11:00
|
|
|
except OperationalError:
|
2016-09-11 21:51:53 +10:00
|
|
|
log.warn("Database is locked. Skip deletion process.")
|
|
|
|
else:
|
|
|
|
# Delete thumbnail as well as the entry
|
2016-08-30 03:39:59 +10:00
|
|
|
thumbnails = tryDecode(
|
2016-05-07 21:15:02 +10:00
|
|
|
xbmc.translatePath("special://thumbnails/%s" % cachedurl))
|
2016-09-11 21:51:53 +10:00
|
|
|
log.debug("Deleting cached thumbnail: %s" % thumbnails)
|
|
|
|
try:
|
|
|
|
xbmcvfs.delete(thumbnails)
|
|
|
|
except Exception as e:
|
|
|
|
log.error('Could not delete cached artwork %s. Error: %s'
|
|
|
|
% (thumbnails, e))
|
2015-12-25 06:51:47 +11:00
|
|
|
try:
|
|
|
|
cursor.execute("DELETE FROM texture WHERE url = ?", (url,))
|
|
|
|
connection.commit()
|
2016-02-29 14:39:00 +11:00
|
|
|
except OperationalError:
|
2016-09-11 21:51:53 +10:00
|
|
|
log.error("OperationalError deleting url from cache.")
|
2015-12-25 06:51:47 +11:00
|
|
|
finally:
|
2016-09-11 21:51:53 +10:00
|
|
|
connection.close()
|