PlexKodiConnect/resources/lib/artwork.py

318 lines
11 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
from __future__ import absolute_import, division, unicode_literals
2017-12-09 05:43:06 +11:00
from logging import getLogger
2017-12-10 00:35:08 +11:00
from Queue import Queue, Empty
from urllib import quote_plus, unquote
2016-10-19 05:32:16 +11:00
from threading import Thread
2017-12-10 00:35:08 +11:00
import requests
import xbmc
2018-11-06 01:23:51 +11:00
from . import backgroundthread, path_ops, utils
2018-06-22 03:24:37 +10:00
from . import state
2016-08-30 03:39:59 +10:00
###############################################################################
2018-06-22 03:24:37 +10:00
LOG = getLogger('PLEX.artwork')
2018-03-02 17:36:45 +11:00
# Disable annoying requests warnings
requests.packages.urllib3.disable_warnings()
ARTWORK_QUEUE = Queue()
2018-11-06 01:23:51 +11:00
IMAGE_CACHING_SUSPENDS = [
state.SUSPEND_LIBRARY_THREAD,
state.DB_SCAN
]
2018-06-22 03:24:37 +10:00
if not utils.settings('imageSyncDuringPlayback') == 'true':
2018-11-06 01:23:51 +11:00
IMAGE_CACHING_SUSPENDS.append(state.SUSPEND_SYNC)
2018-03-04 23:39:18 +11:00
###############################################################################
def double_urlencode(text):
return quote_plus(quote_plus(text))
def double_urldecode(text):
return unquote(unquote(text))
2018-11-06 01:23:51 +11:00
class ImageCachingThread(backgroundthread.KillableThread):
2016-12-21 02:13:19 +11:00
# Potentially issues with limited number of threads
# Hence let Kodi wait till download is successful
timeout = (35.1, 35.1)
def __init__(self):
self.queue = ARTWORK_QUEUE
Thread.__init__(self)
2018-11-06 01:23:51 +11:00
def isCanceled(self):
return state.STOP_PKC
def isSuspended(self):
return any(IMAGE_CACHING_SUSPENDS)
@staticmethod
def _art_url_generator():
from . import kodidb_functions as kodidb
for kind in ('video', 'music'):
with kodidb.GetKodiDB(kind) as kodi_db:
for kodi_type in ('poster', 'fanart'):
for url in kodi_db.artwork_generator(kodi_type):
yield url
def missing_art_cache_generator(self):
from . import kodidb_functions as kodidb
with kodidb.GetKodiDB('texture') as kodi_db:
for url in self._art_url_generator():
if kodi_db.url_not_yet_cached(url):
yield url
def _cache_url(self, url):
url = double_urlencode(utils.try_encode(url))
sleeptime = 0
while True:
try:
requests.head(
url="http://%s:%s/image/image://%s"
% (state.WEBSERVER_HOST,
state.WEBSERVER_PORT,
url),
auth=(state.WEBSERVER_USERNAME,
state.WEBSERVER_PASSWORD),
timeout=self.timeout)
except requests.Timeout:
# We don't need the result, only trigger Kodi to start the
# download. All is well
break
except requests.ConnectionError:
if self.isCanceled():
# Kodi terminated
break
# Server thinks its a DOS attack, ('error 10053')
# Wait before trying again
if sleeptime > 5:
LOG.error('Repeatedly got ConnectionError for url %s',
double_urldecode(url))
break
LOG.debug('Were trying too hard to download art, server '
'over-loaded. Sleep %s seconds before trying '
'again to download %s',
2**sleeptime, double_urldecode(url))
xbmc.sleep((2**sleeptime) * 1000)
sleeptime += 1
continue
except Exception as err:
LOG.error('Unknown exception for url %s: %s'.
double_urldecode(url), err)
import traceback
LOG.error("Traceback:\n%s", traceback.format_exc())
break
# We did not even get a timeout
break
def run(self):
2018-11-06 00:18:52 +11:00
LOG.info("---===### Starting ImageCachingThread ###===---")
2018-11-06 01:23:51 +11:00
# Cache already synced artwork first
for url in self.missing_art_cache_generator():
if self.isCanceled():
return
while self.isSuspended():
# Set in service.py
2018-11-06 01:23:51 +11:00
if self.isCanceled():
# Abort was requested while waiting. We should exit
2018-11-06 00:18:52 +11:00
LOG.info("---===### Stopped ImageCachingThread ###===---")
return
xbmc.sleep(1000)
2018-11-06 01:23:51 +11:00
self._cache_url(url)
2018-11-06 01:23:51 +11:00
# Now wait for more stuff to cache - via the queue
while not self.isCanceled():
# In the event the server goes offline
while self.isSuspended():
# Set in service.py
if self.isCanceled():
# Abort was requested while waiting. We should exit
LOG.info("---===### Stopped ImageCachingThread ###===---")
return
xbmc.sleep(1000)
try:
2018-11-06 01:23:51 +11:00
url = self.queue.get(block=False)
except Empty:
xbmc.sleep(1000)
continue
if isinstance(url, ArtworkSyncMessage):
if state.IMAGE_SYNC_NOTIFICATIONS:
2018-06-22 03:24:37 +10:00
utils.dialog('notification',
heading=utils.lang(29999),
message=url.message,
icon='{plex}',
sound=False)
2018-11-06 01:23:51 +11:00
self.queue.task_done()
continue
2018-11-06 01:23:51 +11:00
self._cache_url(url)
self.queue.task_done()
# Sleep for a bit to reduce CPU strain
2018-11-06 01:23:51 +11:00
xbmc.sleep(100)
2018-11-06 00:18:52 +11:00
LOG.info("---===### Stopped ImageCachingThread ###===---")
class Artwork():
2018-06-22 03:24:37 +10:00
enableTextureCache = utils.settings('enableTextureCache') == "true"
if enableTextureCache:
queue = ARTWORK_QUEUE
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!
"""
2018-09-19 00:26:40 +10:00
if not utils.yesno_dialog("Image Texture Cache", utils.lang(39250)):
return
2017-12-09 05:43:06 +11:00
LOG.info("Doing Image Cache Sync")
# ask to rest all existing or not
2018-09-19 00:26:40 +10:00
if utils.yesno_dialog("Image Texture Cache", utils.lang(39251)):
2017-12-09 05:43:06 +11:00
LOG.info("Resetting all cache data first")
# Remove all existing textures first
path = path_ops.translate_path('special://thumbnails/')
if path_ops.exists(path):
path_ops.rmtree(path, ignore_errors=True)
2018-03-04 23:39:18 +11:00
self.restore_cache_directories()
# remove all existing data from texture DB
2018-06-22 03:24:37 +10:00
connection = utils.kodi_sql('texture')
cursor = connection.cursor()
query = 'SELECT tbl_name FROM sqlite_master WHERE type=?'
cursor.execute(query, ('table', ))
rows = cursor.fetchall()
for row in rows:
tableName = row[0]
if tableName != "version":
2017-05-12 21:25:46 +10:00
cursor.execute("DELETE FROM %s" % tableName)
connection.commit()
2016-09-11 21:51:53 +10:00
connection.close()
# Cache all entries in video DB
2018-06-22 03:24:37 +10:00
connection = utils.kodi_sql('video')
cursor = connection.cursor()
2016-09-11 21:51:53 +10:00
# dont include actors
query = "SELECT url FROM art WHERE media_type != ?"
cursor.execute(query, ('actor', ))
result = cursor.fetchall()
total = len(result)
2018-03-04 23:39:18 +11:00
LOG.info("Image cache sync about to process %s video images", total)
2016-09-11 21:51:53 +10:00
connection.close()
for url in result:
2018-03-04 23:39:18 +11:00
self.cache_texture(url[0])
# Cache all entries in music DB
2018-06-22 03:24:37 +10:00
connection = utils.kodi_sql('music')
cursor = connection.cursor()
cursor.execute("SELECT url FROM art")
result = cursor.fetchall()
total = len(result)
2018-03-04 23:39:18 +11:00
LOG.info("Image cache sync about to process %s music images", total)
2016-09-11 21:51:53 +10:00
connection.close()
for url in result:
2018-03-04 23:39:18 +11:00
self.cache_texture(url[0])
2018-03-04 23:39:18 +11:00
def cache_texture(self, url):
'''
Cache a single image url to the texture cache. url: unicode
2018-03-04 23:39:18 +11:00
'''
if url and self.enableTextureCache:
self.queue.put(url)
2018-03-04 23:39:18 +11:00
def modify_artwork(self, artworks, kodi_id, kodi_type, cursor):
"""
Pass in an artworks dict (see PlexAPI) to set an items artwork.
"""
for kodi_art, url in artworks.iteritems():
self.modify_art(url, kodi_id, kodi_type, kodi_art, cursor)
2018-03-04 23:39:18 +11:00
def modify_art(self, url, kodi_id, kodi_type, kodi_art, cursor):
"""
Adds or modifies the artwork of kind kodi_art (e.g. 'poster') in the
Kodi art table for item kodi_id/kodi_type. Will also cache everything
except actor portraits.
"""
query = '''
SELECT url FROM art
WHERE media_id = ? AND media_type = ? AND type = ?
LIMIT 1
'''
cursor.execute(query, (kodi_id, kodi_type, kodi_art,))
2016-09-11 21:51:53 +10:00
try:
# Update the artwork
2018-03-04 23:39:18 +11:00
old_url = cursor.fetchone()[0]
2016-09-11 21:51:53 +10:00
except TypeError:
# Add the artwork
2018-03-04 23:39:18 +11:00
query = '''
2016-09-11 21:51:53 +10:00
INSERT INTO art(media_id, media_type, type, url)
VALUES (?, ?, ?, ?)
2018-03-04 23:39:18 +11:00
'''
cursor.execute(query, (kodi_id, kodi_type, kodi_art, url))
2016-09-11 21:51:53 +10:00
else:
2018-03-04 23:39:18 +11:00
if url == old_url:
2016-09-11 21:51:53 +10:00
# Only cache artwork if it changed
return
2018-03-04 23:39:18 +11:00
self.delete_cached_artwork(old_url)
query = '''
UPDATE art SET url = ?
WHERE media_id = ? AND media_type = ? AND type = ?
'''
cursor.execute(query, (url, kodi_id, kodi_type, kodi_art))
2016-09-11 21:51:53 +10:00
# Cache fanart and poster in Kodi texture cache
2018-03-04 23:39:18 +11:00
if kodi_type != 'actor':
self.cache_texture(url)
2018-03-04 23:39:18 +11:00
def delete_artwork(self, kodiId, mediaType, cursor):
2018-02-26 04:06:33 +11:00
query = 'SELECT url FROM art WHERE media_id = ? AND media_type = ?'
cursor.execute(query, (kodiId, mediaType,))
2018-02-26 04:06:33 +11:00
for row in cursor.fetchall():
2018-03-04 23:39:18 +11:00
self.delete_cached_artwork(row[0])
2018-03-04 23:39:18 +11:00
@staticmethod
def delete_cached_artwork(url):
"""
Deleted the cached artwork with path url (if it exists)
"""
2018-06-22 03:24:37 +10:00
connection = utils.kodi_sql('texture')
cursor = connection.cursor()
try:
2018-03-04 23:39:18 +11:00
cursor.execute("SELECT cachedurl FROM texture WHERE url=? LIMIT 1",
2016-09-11 21:51:53 +10:00
(url,))
cachedurl = cursor.fetchone()[0]
except TypeError:
2018-03-01 03:42:21 +11:00
# Could not find cached url
pass
2016-09-11 21:51:53 +10:00
else:
# Delete thumbnail as well as the entry
path = path_ops.translate_path("special://thumbnails/%s"
% cachedurl)
if path_ops.exists(path):
path_ops.rmtree(path, ignore_errors=True)
cursor.execute("DELETE FROM texture WHERE url = ?", (url,))
connection.commit()
finally:
2016-09-11 21:51:53 +10:00
connection.close()
2018-01-29 03:36:36 +11:00
@staticmethod
2018-03-04 23:39:18 +11:00
def restore_cache_directories():
LOG.info("Restoring cache directories...")
2018-03-04 23:39:18 +11:00
paths = ("", "0", "1", "2", "3", "4", "5", "6", "7", "8", "9",
"a", "b", "c", "d", "e", "f",
"Video", "plex")
for path in paths:
new_path = path_ops.translate_path("special://thumbnails/%s" % path)
path_ops.makedirs(path_ops.encode_path(new_path))
class ArtworkSyncMessage(object):
"""
Put in artwork queue to display the message as a Kodi notification
"""
def __init__(self, message):
self.message = message