2017-04-03 01:02:41 +10:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from logging import getLogger
|
|
|
|
from threading import Thread
|
|
|
|
from Queue import Empty
|
|
|
|
|
|
|
|
from xbmc import sleep
|
|
|
|
|
2018-05-13 23:22:03 +10:00
|
|
|
from utils import thread_methods, settings, language as lang, dialog
|
2017-04-03 01:02:41 +10:00
|
|
|
import plexdb_functions as plexdb
|
|
|
|
import itemtypes
|
2018-05-13 23:22:03 +10:00
|
|
|
from artwork import ArtworkSyncMessage
|
2017-04-03 01:02:41 +10:00
|
|
|
import variables as v
|
2018-05-13 23:22:03 +10:00
|
|
|
import state
|
2017-04-03 01:02:41 +10:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG = getLogger("PLEX." + __name__)
|
2017-04-03 01:02:41 +10:00
|
|
|
|
|
|
|
###############################################################################
|
|
|
|
|
|
|
|
|
2017-08-19 22:50:28 +10:00
|
|
|
@thread_methods(add_suspends=['SUSPEND_LIBRARY_THREAD',
|
|
|
|
'DB_SCAN',
|
2018-04-18 04:18:25 +10:00
|
|
|
'STOP_SYNC',
|
|
|
|
'SUSPEND_SYNC'])
|
|
|
|
class ThreadedProcessFanart(Thread):
|
2017-04-03 01:02:41 +10:00
|
|
|
"""
|
|
|
|
Threaded download of additional fanart in the background
|
|
|
|
|
|
|
|
Input:
|
|
|
|
queue Queue.Queue() object that you will need to fill with
|
|
|
|
dicts of the following form:
|
|
|
|
{
|
|
|
|
'plex_id': the Plex id as a string
|
|
|
|
'plex_type': the Plex media type, e.g. 'movie'
|
|
|
|
'refresh': True/False if True, will overwrite any 3rd party
|
|
|
|
fanart. If False, will only get missing
|
|
|
|
}
|
|
|
|
"""
|
|
|
|
def __init__(self, queue):
|
|
|
|
self.queue = queue
|
|
|
|
Thread.__init__(self)
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
"""
|
|
|
|
Do the work
|
|
|
|
"""
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG.debug("---===### Starting FanartSync ###===---")
|
2018-02-12 00:57:39 +11:00
|
|
|
stopped = self.stopped
|
|
|
|
suspended = self.suspended
|
2017-04-03 01:02:41 +10:00
|
|
|
queue = self.queue
|
2018-05-16 04:46:16 +10:00
|
|
|
counter = 0
|
|
|
|
set_zero = False
|
2018-02-12 00:57:39 +11:00
|
|
|
while not stopped():
|
2017-04-03 01:02:41 +10:00
|
|
|
# In the event the server goes offline
|
2018-02-12 00:57:39 +11:00
|
|
|
while suspended():
|
2017-04-03 01:02:41 +10:00
|
|
|
# Set in service.py
|
2018-02-12 00:57:39 +11:00
|
|
|
if stopped():
|
2017-04-03 01:02:41 +10:00
|
|
|
# Abort was requested while waiting. We should exit
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG.info("---===### Stopped FanartSync ###===---")
|
2017-04-03 01:02:41 +10:00
|
|
|
return
|
|
|
|
sleep(1000)
|
|
|
|
# grabs Plex item from queue
|
|
|
|
try:
|
|
|
|
item = queue.get(block=False)
|
|
|
|
except Empty:
|
2018-05-18 23:59:26 +10:00
|
|
|
if not set_zero:
|
|
|
|
# Avoid saving '0' all the time
|
|
|
|
set_zero = True
|
|
|
|
settings('fanarttv_lookups', value='0')
|
2017-04-03 01:02:41 +10:00
|
|
|
sleep(200)
|
|
|
|
continue
|
2018-05-18 23:59:26 +10:00
|
|
|
set_zero = False
|
2018-05-13 23:22:03 +10:00
|
|
|
if isinstance(item, ArtworkSyncMessage):
|
2018-05-16 04:46:16 +10:00
|
|
|
if state.IMAGE_SYNC_NOTIFICATIONS:
|
2018-05-13 23:22:03 +10:00
|
|
|
dialog('notification',
|
|
|
|
heading=lang(29999),
|
|
|
|
message=item.message,
|
|
|
|
icon='{plex}',
|
|
|
|
sound=False)
|
|
|
|
queue.task_done()
|
|
|
|
continue
|
|
|
|
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG.debug('Get additional fanart for Plex id %s', item['plex_id'])
|
2017-04-03 01:02:41 +10:00
|
|
|
with getattr(itemtypes,
|
2018-04-18 04:18:25 +10:00
|
|
|
v.ITEMTYPE_FROM_PLEXTYPE[item['plex_type']])() as item_type:
|
|
|
|
result = item_type.getfanart(item['plex_id'],
|
|
|
|
refresh=item['refresh'])
|
2017-04-03 01:02:41 +10:00
|
|
|
if result is True:
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG.debug('Done getting fanart for Plex id %s', item['plex_id'])
|
2017-04-03 01:02:41 +10:00
|
|
|
with plexdb.Get_Plex_DB() as plex_db:
|
|
|
|
plex_db.set_fanart_synched(item['plex_id'])
|
2018-05-18 23:59:26 +10:00
|
|
|
# Update the caching state in the PKC settings. Avoid saving '0'
|
|
|
|
counter += 1
|
|
|
|
if counter > 10:
|
|
|
|
counter = 0
|
|
|
|
settings('fanarttv_lookups', value=str(queue.qsize()))
|
2017-04-03 01:02:41 +10:00
|
|
|
queue.task_done()
|
2018-04-18 04:18:25 +10:00
|
|
|
LOG.debug("---===### Stopped FanartSync ###===---")
|