mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-26 21:50:20 +00:00
37 lines
1.4 KiB
Python
37 lines
1.4 KiB
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
PlexPlaylist
|
|
"""
|
|
from plexapi import utils
|
|
from plexapi.utils import cast, toDatetime
|
|
NA = utils.NA
|
|
|
|
|
|
@utils.register_libtype
|
|
class Playlist(utils.PlexPartialObject):
|
|
TYPE = 'playlist'
|
|
|
|
def _loadData(self, data):
|
|
self.addedAt = toDatetime(data.attrib.get('addedAt', NA))
|
|
self.composite = data.attrib.get('composite', NA) # uri to thumbnail
|
|
self.duration = cast(int, data.attrib.get('duration', NA))
|
|
self.durationInSeconds = cast(int, data.attrib.get('durationInSeconds', NA))
|
|
self.guid = data.attrib.get('guid', NA)
|
|
self.key = data.attrib.get('key', NA).replace('/items', '') # plex bug? http://bit.ly/1Sc2J3V
|
|
self.leafCount = cast(int, data.attrib.get('leafCount', NA))
|
|
self.playlistType = data.attrib.get('playlistType', NA)
|
|
self.ratingKey = data.attrib.get('ratingKey', NA)
|
|
self.smart = cast(bool, data.attrib.get('smart', NA))
|
|
self.summary = data.attrib.get('summary', NA)
|
|
self.title = data.attrib.get('title', NA)
|
|
self.type = data.attrib.get('type', NA)
|
|
self.updatedAt = toDatetime(data.attrib.get('updatedAt', NA))
|
|
|
|
def items(self):
|
|
path = '%s/items' % self.key
|
|
return utils.listItems(self.server, path)
|
|
|
|
def isFullObject(self):
|
|
# plex bug? http://bit.ly/1Sc2J3V
|
|
fixed_key = self.key.replace('/items', '')
|
|
return self.initpath == fixed_key
|