2016-03-21 04:26:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2017-02-04 19:46:51 +00:00
|
|
|
import logging, os, requests
|
2014-12-29 03:21:58 +00:00
|
|
|
from datetime import datetime
|
2016-04-02 06:19:32 +00:00
|
|
|
from threading import Thread
|
2017-02-04 19:46:51 +00:00
|
|
|
from plexapi.compat import quote, string_type
|
|
|
|
from plexapi.exceptions import NotFound, UnknownType
|
2016-03-17 04:51:20 +00:00
|
|
|
|
2016-03-31 20:52:48 +00:00
|
|
|
# Search Types - Plex uses these to filter specific media types when searching.
|
2017-02-04 19:18:10 +00:00
|
|
|
# Library Types - Populated at runtime
|
2017-02-02 03:53:05 +00:00
|
|
|
SEARCHTYPES = {'movie': 1, 'show': 2, 'season': 3, 'episode': 4,
|
|
|
|
'artist': 8, 'album': 9, 'track': 10, 'photo': 14}
|
2016-03-17 04:51:20 +00:00
|
|
|
LIBRARY_TYPES = {}
|
2016-12-16 00:17:02 +00:00
|
|
|
|
|
|
|
|
2017-01-26 06:33:01 +00:00
|
|
|
class SecretsFilter(logging.Filter):
|
|
|
|
""" Logging filter to hide secrets. """
|
|
|
|
def __init__(self, secrets=None):
|
|
|
|
self.secrets = secrets or set()
|
|
|
|
|
|
|
|
def add_secret(self, secret):
|
|
|
|
self.secrets.add(secret)
|
|
|
|
|
|
|
|
def filter(self, record):
|
|
|
|
cleanargs = list(record.args)
|
|
|
|
for i in range(len(cleanargs)):
|
2017-01-26 06:44:55 +00:00
|
|
|
if isinstance(cleanargs[i], string_type):
|
|
|
|
for secret in self.secrets:
|
|
|
|
cleanargs[i] = cleanargs[i].replace(secret, '<hidden>')
|
2017-01-26 06:33:01 +00:00
|
|
|
record.args = tuple(cleanargs)
|
|
|
|
return True
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2016-03-17 04:51:20 +00:00
|
|
|
|
2017-02-04 19:46:51 +00:00
|
|
|
def register_libtype(cls):
|
|
|
|
""" Registry of library types we may come across when parsing XML. This allows us to
|
|
|
|
define a few helper functions to dynamically convery the XML into objects. See
|
|
|
|
buildItem() below for an example.
|
2016-12-16 00:17:02 +00:00
|
|
|
"""
|
2017-02-04 19:46:51 +00:00
|
|
|
LIBRARY_TYPES[cls.TYPE] = cls
|
|
|
|
return cls
|
2017-01-09 14:21:54 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
def cast(func, value):
|
2017-02-03 06:29:19 +00:00
|
|
|
""" Cast the specified value to the specified type (returned by func). Currently this
|
|
|
|
only support int, float, bool. Should be extended if needed.
|
2017-01-03 22:58:35 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
2017-02-03 06:29:19 +00:00
|
|
|
func (func): Calback function to used cast to type (int, bool, float).
|
2017-01-26 05:25:13 +00:00
|
|
|
value (any): value to be cast and returned.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2017-02-04 17:43:50 +00:00
|
|
|
if value is not None:
|
2017-02-03 15:25:11 +00:00
|
|
|
if func == bool:
|
|
|
|
return bool(int(value))
|
|
|
|
elif func in (int, float):
|
|
|
|
try:
|
|
|
|
return func(value)
|
|
|
|
except ValueError:
|
|
|
|
return float('nan')
|
|
|
|
return func(value)
|
|
|
|
return value
|
2016-03-17 05:14:31 +00:00
|
|
|
|
|
|
|
|
2016-04-12 02:43:21 +00:00
|
|
|
def findLocations(data, single=False):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a list of filepaths from a location tag.
|
2016-12-16 00:17:02 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
data (ElementTree): XML object to search for locations in.
|
|
|
|
single (bool): Set True to only return the first location found.
|
|
|
|
Return type will be a string if this is set to True.
|
2016-12-16 00:17:02 +00:00
|
|
|
"""
|
2016-04-12 02:43:21 +00:00
|
|
|
locations = []
|
|
|
|
for elem in data:
|
|
|
|
if elem.tag == 'Location':
|
|
|
|
locations.append(elem.attrib.get('path'))
|
|
|
|
if single:
|
|
|
|
return locations[0] if locations else None
|
|
|
|
return locations
|
2016-12-16 00:17:02 +00:00
|
|
|
|
2016-04-04 03:17:29 +00:00
|
|
|
|
|
|
|
def findPlayer(server, data):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns the :class:`~plexapi.client.PlexClient` object found in the specified data.
|
2016-12-16 00:17:02 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
server (:class:`~plexapi.server.PlexServer`): PlexServer object this is from.
|
2017-01-31 04:44:03 +00:00
|
|
|
data (ElementTree): XML data to find Player in.
|
2016-12-16 00:17:02 +00:00
|
|
|
"""
|
2016-04-04 03:17:29 +00:00
|
|
|
elem = data.find('Player')
|
|
|
|
if elem is not None:
|
|
|
|
from plexapi.client import PlexClient
|
2017-01-26 05:25:13 +00:00
|
|
|
baseurl = 'http://%s:%s' % (elem.attrib.get('address'), elem.attrib.get('port'))
|
2016-04-07 05:39:04 +00:00
|
|
|
return PlexClient(baseurl, server=server, data=elem)
|
2016-04-04 03:17:29 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def findStreams(media, streamtype):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a list of streams (str) found in media that match the specified streamtype.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
media (:class:`~plexapi.utils.Playable`): Item to search for streams (show, movie, episode).
|
|
|
|
streamtype (str): Streamtype to return (videostream, audiostream, subtitlestream).
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2016-04-04 03:17:29 +00:00
|
|
|
streams = []
|
|
|
|
for mediaitem in media:
|
|
|
|
for part in mediaitem.parts:
|
|
|
|
for stream in part.streams:
|
|
|
|
if stream.TYPE == streamtype:
|
|
|
|
streams.append(stream)
|
|
|
|
return streams
|
|
|
|
|
|
|
|
|
|
|
|
def findTranscodeSession(server, data):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a :class:`~plexapi.media.TranscodeSession` object if found within the specified
|
|
|
|
XML data.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
server (:class:`~plexapi.server.PlexServer`): PlexServer object this is from.
|
2017-01-31 04:44:03 +00:00
|
|
|
data (ElementTree): XML data to find TranscodeSession in.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
|
|
|
|
2016-04-04 03:17:29 +00:00
|
|
|
elem = data.find('TranscodeSession')
|
|
|
|
if elem is not None:
|
|
|
|
from plexapi import media
|
|
|
|
return media.TranscodeSession(server, elem)
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2016-04-07 05:39:04 +00:00
|
|
|
def findUsername(data):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns the username if found in the specified XML data. Returns None if not found.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
2017-01-31 04:44:03 +00:00
|
|
|
data (ElementTree): XML data to find username in.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2016-04-04 03:17:29 +00:00
|
|
|
elem = data.find('User')
|
|
|
|
if elem is not None:
|
2016-04-07 05:39:04 +00:00
|
|
|
return elem.attrib.get('title')
|
2016-04-04 03:17:29 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
2017-02-08 05:36:22 +00:00
|
|
|
def getattributeOrNone(obj, self, attr):
|
|
|
|
try:
|
|
|
|
return super(obj, self).__getattribute__(attr)
|
|
|
|
except AttributeError:
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
2017-01-02 21:06:40 +00:00
|
|
|
def isInt(str):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns True if the specified string passes as an int. """
|
2016-12-16 00:17:02 +00:00
|
|
|
try:
|
2017-01-02 21:06:40 +00:00
|
|
|
int(str)
|
2016-03-31 22:36:54 +00:00
|
|
|
return True
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
def joinArgs(args):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a query string (uses for HTTP URLs) where only the value is URL encoded.
|
|
|
|
Example return value: '?genre=action&type=1337'.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
args (dict): Arguments to include in query string.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2016-12-16 00:17:02 +00:00
|
|
|
if not args:
|
|
|
|
return ''
|
2016-03-17 05:14:31 +00:00
|
|
|
arglist = []
|
2016-12-16 00:17:02 +00:00
|
|
|
for key in sorted(args, key=lambda x: x.lower()):
|
2016-03-17 05:14:31 +00:00
|
|
|
value = str(args[key])
|
|
|
|
arglist.append('%s=%s' % (key, quote(value)))
|
|
|
|
return '?%s' % '&'.join(arglist)
|
|
|
|
|
|
|
|
|
2016-03-31 20:52:48 +00:00
|
|
|
def listChoices(server, path):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a dict of {title:key} for all simple choices in a search filter.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
server (:class:`~plexapi.server.PlexServer`): PlexServer object this is from.
|
|
|
|
path (str): Relative path to request XML data from.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2017-02-07 06:20:49 +00:00
|
|
|
return {c.attrib['title']: c.attrib['key'] for c in server._query(path)}
|
2016-12-16 00:17:02 +00:00
|
|
|
|
2016-03-17 04:51:20 +00:00
|
|
|
|
2017-02-01 21:32:00 +00:00
|
|
|
def rget(obj, attrstr, default=None, delim='.'): # pragma: no cover
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns the value at the specified attrstr location within a nexted tree of
|
|
|
|
dicts, lists, tuples, functions, classes, etc. The lookup is done recursivley
|
|
|
|
for each key in attrstr (split by by the delimiter) This function is heavily
|
|
|
|
influenced by the lookups used in Django templates.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
obj (any): Object to start the lookup in (dict, obj, list, tuple, etc).
|
|
|
|
attrstr (str): String to lookup (ex: 'foo.bar.baz.value')
|
|
|
|
default (any): Default value to return if not found.
|
|
|
|
delim (str): Delimiter separating keys in attrstr.
|
|
|
|
"""
|
2016-03-24 06:20:08 +00:00
|
|
|
try:
|
|
|
|
parts = attrstr.split(delim, 1)
|
|
|
|
attr = parts[0]
|
|
|
|
attrstr = parts[1] if len(parts) == 2 else None
|
2016-12-16 00:17:02 +00:00
|
|
|
if isinstance(obj, dict):
|
|
|
|
value = obj[attr]
|
|
|
|
elif isinstance(obj, list):
|
|
|
|
value = obj[int(attr)]
|
|
|
|
elif isinstance(obj, tuple):
|
|
|
|
value = obj[int(attr)]
|
|
|
|
elif isinstance(obj, object):
|
|
|
|
value = getattr(obj, attr)
|
|
|
|
if attrstr:
|
|
|
|
return rget(value, attrstr, default, delim)
|
2016-03-24 06:20:08 +00:00
|
|
|
return value
|
|
|
|
except:
|
|
|
|
return default
|
2016-12-16 00:17:02 +00:00
|
|
|
|
2016-03-24 06:20:08 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
def searchType(libtype):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns the integer value of the library string type.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
libtype (str): Library type to lookup (movie, show, season, episode,
|
|
|
|
artist, album, track)
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Raises:
|
|
|
|
NotFound: Unknown libtype
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2016-04-13 02:55:45 +00:00
|
|
|
libtype = str(libtype)
|
|
|
|
if libtype in [str(v) for v in SEARCHTYPES.values()]:
|
2016-03-31 20:52:48 +00:00
|
|
|
return libtype
|
2016-04-13 02:55:45 +00:00
|
|
|
if SEARCHTYPES.get(libtype) is not None:
|
|
|
|
return SEARCHTYPES[libtype]
|
|
|
|
raise NotFound('Unknown libtype: %s' % libtype)
|
2016-03-17 04:51:20 +00:00
|
|
|
|
|
|
|
|
2016-04-02 06:19:32 +00:00
|
|
|
def threaded(callback, listargs):
|
2017-01-31 04:44:03 +00:00
|
|
|
""" Returns the result of <callback> for each set of \*args in listargs. Each call
|
2017-01-26 05:25:13 +00:00
|
|
|
to <callback. is called concurrently in their own separate threads.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
2017-01-31 04:44:03 +00:00
|
|
|
callback (func): Callback function to apply to each set of \*args.
|
|
|
|
listargs (list): List of lists; \*args to pass each thread.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2016-04-02 06:19:32 +00:00
|
|
|
threads, results = [], []
|
|
|
|
for args in listargs:
|
|
|
|
args += [results, len(results)]
|
|
|
|
results.append(None)
|
|
|
|
threads.append(Thread(target=callback, args=args))
|
|
|
|
threads[-1].start()
|
|
|
|
for thread in threads:
|
|
|
|
thread.join()
|
|
|
|
return results
|
|
|
|
|
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def toDatetime(value, format=None):
|
2017-01-26 05:25:13 +00:00
|
|
|
""" Returns a datetime object from the specified value.
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-26 05:25:13 +00:00
|
|
|
Parameters:
|
|
|
|
value (str): value to return as a datetime
|
|
|
|
format (str): Format to pass strftime (optional; if value is a str).
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2017-02-04 17:43:50 +00:00
|
|
|
if value and value is not None:
|
2016-12-16 00:17:02 +00:00
|
|
|
if format:
|
|
|
|
value = datetime.strptime(value, format)
|
|
|
|
else:
|
|
|
|
value = datetime.fromtimestamp(int(value))
|
2014-12-29 03:21:58 +00:00
|
|
|
return value
|
2017-01-09 14:21:54 +00:00
|
|
|
|
|
|
|
|
2017-02-03 16:39:46 +00:00
|
|
|
def toList(value, itemcast=None, delim=','):
|
|
|
|
""" Returns a list of strings from the specified value.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
value (str): comma delimited string to convert to list.
|
|
|
|
itemcast (func): Function to cast each list item to (default str).
|
|
|
|
delim (str): string delimiter (optional; default ',').
|
|
|
|
"""
|
|
|
|
value = value or ''
|
|
|
|
itemcast = itemcast or str
|
|
|
|
return [itemcast(item) for item in value.split(delim) if item != '']
|
|
|
|
|
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
def download(url, filename=None, savepath=None, session=None, chunksize=4024, mocked=False):
|
2017-02-02 03:53:05 +00:00
|
|
|
""" Helper to download a thumb, videofile or other media item. Returns the local
|
|
|
|
path to the downloaded file.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
url (str): URL where the content be reached.
|
|
|
|
filename (str): Filename of the downloaded file, default None.
|
|
|
|
savepath (str): Defaults to current working dir.
|
|
|
|
chunksize (int): What chunksize read/write at the time.
|
2017-01-09 14:21:54 +00:00
|
|
|
mocked (bool): Helper to do evertything except write the file.
|
|
|
|
|
|
|
|
Example:
|
|
|
|
>>> download(a_episode.getStreamURL(), a_episode.location)
|
|
|
|
/path/to/file
|
|
|
|
"""
|
2017-02-06 04:52:10 +00:00
|
|
|
# TODO: Review this; It should be properly logging and raising exceptions..
|
2017-01-09 14:21:54 +00:00
|
|
|
session = session or requests.Session()
|
2017-01-29 19:24:21 +00:00
|
|
|
print('Mocked download %s' % mocked)
|
2017-01-09 14:21:54 +00:00
|
|
|
if savepath is None:
|
|
|
|
savepath = os.getcwd()
|
|
|
|
else:
|
|
|
|
# Make sure the user supplied path exists
|
|
|
|
try:
|
|
|
|
os.makedirs(savepath)
|
|
|
|
except OSError:
|
2017-01-29 21:22:48 +00:00
|
|
|
if not os.path.isdir(savepath): # pragma: no cover
|
2017-01-09 14:21:54 +00:00
|
|
|
raise
|
|
|
|
filename = os.path.basename(filename)
|
|
|
|
fullpath = os.path.join(savepath, filename)
|
|
|
|
try:
|
|
|
|
response = session.get(url, stream=True)
|
|
|
|
# images dont have a extention so we try
|
|
|
|
# to guess it from content-type
|
|
|
|
ext = os.path.splitext(fullpath)[-1]
|
|
|
|
if ext:
|
|
|
|
ext = ''
|
|
|
|
else:
|
|
|
|
cp = response.headers.get('content-type')
|
|
|
|
if cp:
|
|
|
|
if 'image' in cp:
|
|
|
|
ext = '.%s' % cp.split('/')[1]
|
|
|
|
fullpath = '%s%s' % (fullpath, ext)
|
|
|
|
if mocked:
|
|
|
|
return fullpath
|
|
|
|
with open(fullpath, 'wb') as f:
|
|
|
|
for chunk in response.iter_content(chunk_size=chunksize):
|
|
|
|
if chunk:
|
|
|
|
f.write(chunk)
|
2017-02-01 21:32:00 +00:00
|
|
|
#log.debug('Downloaded %s to %s from %s' % (filename, fullpath, url))
|
2017-01-09 14:21:54 +00:00
|
|
|
return fullpath
|
2017-02-02 03:53:05 +00:00
|
|
|
except Exception as err: # pragma: no cover
|
|
|
|
print('Error downloading file: %s' % err)
|
2017-02-01 21:32:00 +00:00
|
|
|
#log.exception('Failed to download %s to %s %s' % (url, fullpath, e))
|