jellyfin-kodi/resources/lib/image_cache_thread.py

60 lines
1.6 KiB
Python
Raw Normal View History

2016-06-18 03:03:28 +00:00
# -*- coding: utf-8 -*-
#################################################################################################
import logging
import requests
import threading
#################################################################################################
log = logging.getLogger("EMBY."+__name__)
2016-06-18 03:03:28 +00:00
#################################################################################################
class image_cache_thread(threading.Thread):
urlToProcess = None
isFinished = False
xbmc_host = ""
xbmc_port = ""
xbmc_username = ""
xbmc_password = ""
2016-06-18 03:03:28 +00:00
def __init__(self):
2016-06-18 03:03:28 +00:00
threading.Thread.__init__(self)
2016-06-18 03:03:28 +00:00
def setUrl(self, url):
2016-06-18 03:03:28 +00:00
self.urlToProcess = url
def setHost(self, host, port):
2016-06-18 03:03:28 +00:00
self.xbmc_host = host
self.xbmc_port = port
def setAuth(self, user, pwd):
2016-06-18 03:03:28 +00:00
self.xbmc_username = user
self.xbmc_password = pwd
def run(self):
log.debug("Image Caching Thread Processing: %s" % self.urlToProcess)
try:
response = requests.head(
url=(
"http://%s:%s/image/image://%s"
% (self.xbmc_host, self.xbmc_port, self.urlToProcess)),
auth=(self.xbmc_username, self.xbmc_password),
timeout=(35.1, 35.1))
# We don't need the result
except: pass
log.debug("Image Caching Thread Exited")
2016-06-18 03:03:28 +00:00
self.isFinished = True