2016-03-21 04:26:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2014-12-29 03:21:58 +00:00
|
|
|
"""
|
|
|
|
PlexAPI Utils
|
|
|
|
"""
|
2016-03-23 03:38:06 +00:00
|
|
|
import re
|
2014-12-29 03:21:58 +00:00
|
|
|
from datetime import datetime
|
2016-03-23 03:38:06 +00:00
|
|
|
from plexapi.compat import quote, urlencode
|
|
|
|
from plexapi.exceptions import NotFound, UnknownType, Unsupported
|
2016-04-02 06:19:32 +00:00
|
|
|
from threading import Thread
|
2015-09-05 14:09:15 +00:00
|
|
|
|
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.
|
|
|
|
SEARCHTYPES = {'movie':1, 'show':2, 'season':3, 'episode':4, 'artist':8, 'album':9, 'track':10}
|
|
|
|
|
2016-03-17 04:51:20 +00:00
|
|
|
# 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.
|
2016-03-21 04:26:02 +00:00
|
|
|
# see buildItem() below for an example.
|
2016-03-17 04:51:20 +00:00
|
|
|
LIBRARY_TYPES = {}
|
|
|
|
def register_libtype(cls):
|
|
|
|
LIBRARY_TYPES[cls.TYPE] = cls
|
|
|
|
return cls
|
|
|
|
|
2016-04-06 02:30:18 +00:00
|
|
|
|
2016-03-14 04:19:48 +00:00
|
|
|
# This used to be a simple variable equal to '__NA__'. However, there has been need to
|
|
|
|
# compare NA against None in some use cases. This object allows the internals of PlexAPI
|
|
|
|
# to distinguish between unfetched values and fetched, but non-existent values.
|
|
|
|
# (NA == None results to True; NA is None results to False)
|
2016-03-17 05:15:58 +00:00
|
|
|
class _NA(object):
|
2016-03-21 04:26:02 +00:00
|
|
|
def __bool__(self): return False
|
|
|
|
def __eq__(self, other): return isinstance(other, _NA) or other in [None, '__NA__']
|
|
|
|
def __nonzero__(self): return False
|
|
|
|
def __repr__(self): return '__NA__'
|
2016-03-17 05:15:58 +00:00
|
|
|
NA = _NA()
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2016-03-17 04:51:20 +00:00
|
|
|
|
|
|
|
# Not all objects in the Plex listings return the complete list of elements for the object.
|
|
|
|
# This object will allow you to assume each object is complete, and if the specified value
|
|
|
|
# you request is None it will fetch the full object automatically and update itself.
|
2014-12-29 03:21:58 +00:00
|
|
|
class PlexPartialObject(object):
|
|
|
|
|
2016-04-04 03:55:29 +00:00
|
|
|
def __init__(self, data, initpath, server=None):
|
|
|
|
self.server = server
|
2014-12-29 03:21:58 +00:00
|
|
|
self.initpath = initpath
|
|
|
|
self._loadData(data)
|
2016-04-07 05:39:04 +00:00
|
|
|
|
2016-03-15 18:36:59 +00:00
|
|
|
def __eq__(self, other):
|
2016-04-07 05:39:04 +00:00
|
|
|
return other is not None and self.key == other.key
|
2016-03-15 18:36:59 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
2016-04-07 05:39:04 +00:00
|
|
|
clsname = self.__class__.__name__
|
2016-04-08 02:48:45 +00:00
|
|
|
key = self.key.replace('/library/metadata/', '') if self.key else 'NA'
|
2016-04-07 05:39:04 +00:00
|
|
|
title = self.title.replace(' ','.')[0:20].encode('utf8')
|
|
|
|
return '<%s:%s:%s>' % (clsname, key, title)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
|
|
|
def __getattr__(self, attr):
|
2016-04-07 05:39:04 +00:00
|
|
|
if attr == 'key' or self.__dict__.get(attr):
|
|
|
|
return self.__dict__.get(attr)
|
2014-12-29 03:21:58 +00:00
|
|
|
if self.isPartialObject():
|
|
|
|
self.reload()
|
2015-11-05 03:49:09 +00:00
|
|
|
return self.__dict__[attr]
|
2014-12-29 03:21:58 +00:00
|
|
|
|
|
|
|
def __setattr__(self, attr, value):
|
|
|
|
if value != NA:
|
|
|
|
super(PlexPartialObject, self).__setattr__(attr, value)
|
|
|
|
|
2016-04-04 03:55:29 +00:00
|
|
|
def _loadData(self, data):
|
|
|
|
raise Exception('Abstract method not implemented.')
|
|
|
|
|
|
|
|
def isFullObject(self):
|
2016-04-07 05:39:04 +00:00
|
|
|
return not self.key or self.initpath == self.key
|
2016-04-04 03:55:29 +00:00
|
|
|
|
|
|
|
def isPartialObject(self):
|
|
|
|
return not self.isFullObject()
|
|
|
|
|
|
|
|
def reload(self):
|
|
|
|
""" Reload the data for this object from PlexServer XML. """
|
|
|
|
data = self.server.query(self.key)
|
|
|
|
self.initpath = self.key
|
|
|
|
self._loadData(data[0])
|
|
|
|
|
|
|
|
|
2016-04-06 02:30:18 +00:00
|
|
|
# This is a general place to store functions specific to media that is Playable. Things
|
|
|
|
# were getting mixed up a bit when dealing with Shows, Season, Artists, Albums which
|
|
|
|
# are all not playable.
|
2016-04-04 03:55:29 +00:00
|
|
|
class Playable(object):
|
|
|
|
|
2016-04-07 05:39:04 +00:00
|
|
|
def _loadData(self, data):
|
|
|
|
# data for active sessions (/status/sessions)
|
|
|
|
self.sessionKey = cast(int, data.attrib.get('sessionKey', NA))
|
|
|
|
self.username = findUsername(data)
|
|
|
|
self.player = findPlayer(self.server, data)
|
|
|
|
self.transcodeSession = findTranscodeSession(self.server, data)
|
|
|
|
# data for history details (/status/sessions/history/all)
|
|
|
|
self.viewedAt = toDatetime(data.attrib.get('viewedAt', NA))
|
2016-04-11 03:49:23 +00:00
|
|
|
# data for playlist items
|
|
|
|
self.playlistItemID = cast(int, data.attrib.get('playlistItemID', NA))
|
2016-04-07 05:39:04 +00:00
|
|
|
|
2016-04-04 03:55:29 +00:00
|
|
|
def getStreamURL(self, **params):
|
2016-03-23 03:38:06 +00:00
|
|
|
if self.TYPE not in ('movie', 'episode', 'track'):
|
|
|
|
raise Unsupported('Fetching stream URL for %s is unsupported.' % self.TYPE)
|
|
|
|
mvb = params.get('maxVideoBitrate')
|
|
|
|
vr = params.get('videoResolution', '')
|
|
|
|
params = {
|
|
|
|
'path': self.key,
|
|
|
|
'offset': params.get('offset', 0),
|
|
|
|
'copyts': params.get('copyts', 1),
|
|
|
|
'protocol': params.get('protocol'),
|
|
|
|
'mediaIndex': params.get('mediaIndex', 0),
|
|
|
|
'X-Plex-Platform': params.get('platform', 'Chrome'),
|
|
|
|
'maxVideoBitrate': max(mvb,64) if mvb else None,
|
|
|
|
'videoResolution': vr if re.match('^\d+x\d+$', vr) else None
|
|
|
|
}
|
|
|
|
params = {k:v for k,v in params.items() if v is not None} # remove None values
|
|
|
|
streamtype = 'audio' if self.TYPE in ('track', 'album') else 'video'
|
|
|
|
return self.server.url('/%s/:/transcode/universal/start.m3u8?%s' % (streamtype, urlencode(params)))
|
2016-04-04 03:55:29 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
def iterParts(self):
|
|
|
|
for item in self.media:
|
|
|
|
for part in item.parts:
|
|
|
|
yield part
|
2016-04-04 03:55:29 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
def play(self, client):
|
|
|
|
client.playMedia(self)
|
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2016-03-31 22:36:54 +00:00
|
|
|
def buildItem(server, elem, initpath, bytag=False):
|
|
|
|
libtype = elem.tag if bytag else elem.attrib.get('type')
|
2016-04-10 03:59:47 +00:00
|
|
|
if libtype == 'photo' and elem.tag == 'Directory':
|
|
|
|
libtype = 'photoalbum'
|
2016-03-17 04:51:20 +00:00
|
|
|
if libtype in LIBRARY_TYPES:
|
|
|
|
cls = LIBRARY_TYPES[libtype]
|
|
|
|
return cls(server, elem, initpath)
|
|
|
|
raise UnknownType('Unknown library type: %s' % libtype)
|
|
|
|
|
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
def cast(func, value):
|
|
|
|
if value not in [None, NA]:
|
|
|
|
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-21 04:26:02 +00:00
|
|
|
def findKey(server, key):
|
2016-03-17 04:51:20 +00:00
|
|
|
path = '/library/metadata/{0}'.format(key)
|
|
|
|
try:
|
|
|
|
# Item seems to be the first sub element
|
|
|
|
elem = server.query(path)[0]
|
2016-03-21 04:26:02 +00:00
|
|
|
return buildItem(server, elem, path)
|
2016-03-17 04:51:20 +00:00
|
|
|
except:
|
|
|
|
raise NotFound('Unable to find key: %s' % key)
|
|
|
|
|
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
def findItem(server, path, title):
|
2016-03-17 04:51:20 +00:00
|
|
|
for elem in server.query(path):
|
|
|
|
if elem.attrib.get('title').lower() == title.lower():
|
2016-03-21 04:26:02 +00:00
|
|
|
return buildItem(server, elem, path)
|
2016-03-17 04:51:20 +00:00
|
|
|
raise NotFound('Unable to find item: %s' % title)
|
|
|
|
|
|
|
|
|
2016-04-04 03:17:29 +00:00
|
|
|
def findLocation(data):
|
|
|
|
elem = data.find('Location')
|
|
|
|
if elem is not None:
|
|
|
|
return elem.attrib.get('path')
|
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def findPlayer(server, data):
|
|
|
|
elem = data.find('Player')
|
|
|
|
if elem is not None:
|
|
|
|
from plexapi.client import PlexClient
|
2016-04-07 05:39:04 +00:00
|
|
|
baseurl = 'http://%s:%s' % (elem.attrib.get('address'), elem.attrib.get('port'))
|
|
|
|
return PlexClient(baseurl, server=server, data=elem)
|
2016-04-04 03:17:29 +00:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
|
|
|
def findStreams(media, streamtype):
|
|
|
|
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):
|
|
|
|
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):
|
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
|
|
|
|
|
|
|
|
|
2016-03-31 22:36:54 +00:00
|
|
|
def isInt(string):
|
|
|
|
try:
|
|
|
|
int(string)
|
|
|
|
return True
|
|
|
|
except ValueError:
|
|
|
|
return False
|
|
|
|
|
|
|
|
|
2016-03-17 05:14:31 +00:00
|
|
|
def joinArgs(args):
|
|
|
|
if not args: return ''
|
|
|
|
arglist = []
|
|
|
|
for key in sorted(args, key=lambda x:x.lower()):
|
|
|
|
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):
|
|
|
|
return {c.attrib['title']:c.attrib['key'] for c in server.query(path)}
|
|
|
|
|
|
|
|
|
2016-03-31 22:36:54 +00:00
|
|
|
def listItems(server, path, libtype=None, watched=None, bytag=False):
|
2016-03-17 04:51:20 +00:00
|
|
|
items = []
|
|
|
|
for elem in server.query(path):
|
|
|
|
if libtype and elem.attrib.get('type') != libtype: continue
|
|
|
|
if watched is True and elem.attrib.get('viewCount', 0) == 0: continue
|
|
|
|
if watched is False and elem.attrib.get('viewCount', 0) >= 1: continue
|
|
|
|
try:
|
2016-03-31 22:36:54 +00:00
|
|
|
items.append(buildItem(server, elem, path, bytag))
|
2016-03-17 04:51:20 +00:00
|
|
|
except UnknownType:
|
|
|
|
pass
|
|
|
|
return items
|
|
|
|
|
|
|
|
|
2016-03-24 06:20:08 +00:00
|
|
|
def rget(obj, attrstr, default=None, delim='.'):
|
|
|
|
try:
|
|
|
|
parts = attrstr.split(delim, 1)
|
|
|
|
attr = parts[0]
|
|
|
|
attrstr = parts[1] if len(parts) == 2 else None
|
|
|
|
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)
|
|
|
|
return value
|
|
|
|
except:
|
|
|
|
return default
|
|
|
|
|
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
def searchType(libtype):
|
2016-03-31 20:52:48 +00:00
|
|
|
SEARCHTYPESSTRS = [str(k) for k in SEARCHTYPES.keys()]
|
|
|
|
if libtype in SEARCHTYPES + SEARCHTYPESSTRS:
|
|
|
|
return libtype
|
|
|
|
stype = SEARCHTYPES.get(libtype.lower())
|
|
|
|
if not stype:
|
|
|
|
raise NotFound('Unknown libtype: %s' % libtype)
|
|
|
|
return stype
|
2016-03-17 04:51:20 +00:00
|
|
|
|
|
|
|
|
2016-04-02 06:19:32 +00:00
|
|
|
def threaded(callback, listargs):
|
|
|
|
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):
|
|
|
|
if value and value != NA:
|
|
|
|
if format: value = datetime.strptime(value, format)
|
|
|
|
else: value = datetime.fromtimestamp(int(value))
|
|
|
|
return value
|