2016-03-21 04:26:02 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
2020-05-28 01:53:04 +00:00
|
|
|
import os
|
2022-07-21 03:07:39 +00:00
|
|
|
from urllib.parse import quote_plus
|
2020-05-28 01:53:04 +00:00
|
|
|
|
2022-02-27 06:04:18 +00:00
|
|
|
from plexapi import media, utils
|
2022-07-21 03:03:20 +00:00
|
|
|
from plexapi.base import Playable, PlexPartialObject, PlexSession
|
2021-04-05 20:44:49 +00:00
|
|
|
from plexapi.exceptions import BadRequest
|
2022-02-27 05:40:51 +00:00
|
|
|
from plexapi.mixins import (
|
2022-08-26 19:14:24 +00:00
|
|
|
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, PlayedUnplayedMixin, RatingMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
ArtUrlMixin, ArtMixin, BannerMixin, PosterUrlMixin, PosterMixin, ThemeUrlMixin, ThemeMixin,
|
2023-03-09 23:22:56 +00:00
|
|
|
AddedAtMixin, ContentRatingMixin, EditionTitleMixin, OriginallyAvailableMixin, OriginalTitleMixin, SortTitleMixin,
|
|
|
|
StudioMixin, SummaryMixin, TaglineMixin, TitleMixin,
|
2022-05-18 18:04:18 +00:00
|
|
|
CollectionMixin, CountryMixin, DirectorMixin, GenreMixin, LabelMixin, ProducerMixin, WriterMixin,
|
|
|
|
WatchlistMixin
|
2022-02-27 05:40:51 +00:00
|
|
|
)
|
2019-10-05 02:32:56 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2023-03-09 23:22:56 +00:00
|
|
|
class Video(PlexPartialObject, PlayedUnplayedMixin, AddedAtMixin):
|
2017-02-18 00:51:06 +00:00
|
|
|
""" Base class for all video objects including :class:`~plexapi.video.Movie`,
|
2017-02-09 20:01:23 +00:00
|
|
|
:class:`~plexapi.video.Show`, :class:`~plexapi.video.Season`,
|
2020-12-24 06:24:46 +00:00
|
|
|
:class:`~plexapi.video.Episode`, and :class:`~plexapi.video.Clip`.
|
2017-02-09 20:01:23 +00:00
|
|
|
|
|
|
|
Attributes:
|
2020-12-23 23:53:42 +00:00
|
|
|
addedAt (datetime): Datetime the item was added to the library.
|
|
|
|
art (str): URL to artwork image (/library/metadata/<ratingKey>/art/<artid>).
|
2020-11-22 05:25:24 +00:00
|
|
|
artBlurHash (str): BlurHash string for artwork image.
|
2020-12-23 23:53:42 +00:00
|
|
|
fields (List<:class:`~plexapi.media.Field`>): List of field objects.
|
|
|
|
guid (str): Plex GUID for the movie, show, season, episode, or clip (plex://movie/5d776b59ad5437001f79c6f8).
|
2017-02-09 20:01:23 +00:00
|
|
|
key (str): API URL (/library/metadata/<ratingkey>).
|
2021-05-30 22:47:53 +00:00
|
|
|
lastRatedAt (datetime): Datetime the item was last rated.
|
2020-12-23 23:53:42 +00:00
|
|
|
lastViewedAt (datetime): Datetime the item was last played.
|
2017-02-09 20:01:23 +00:00
|
|
|
librarySectionID (int): :class:`~plexapi.library.LibrarySection` ID.
|
2020-12-23 23:53:42 +00:00
|
|
|
librarySectionKey (str): :class:`~plexapi.library.LibrarySection` key.
|
|
|
|
librarySectionTitle (str): :class:`~plexapi.library.LibrarySection` title.
|
|
|
|
listType (str): Hardcoded as 'video' (useful for search filters).
|
|
|
|
ratingKey (int): Unique key identifying the item.
|
|
|
|
summary (str): Summary of the movie, show, season, episode, or clip.
|
|
|
|
thumb (str): URL to thumbnail image (/library/metadata/<ratingKey>/thumb/<thumbid>).
|
2020-11-22 05:25:24 +00:00
|
|
|
thumbBlurHash (str): BlurHash string for thumbnail image.
|
2020-12-23 23:53:42 +00:00
|
|
|
title (str): Name of the movie, show, season, episode, or clip.
|
2017-02-09 20:01:23 +00:00
|
|
|
titleSort (str): Title to use when sorting (defaults to title).
|
2020-12-23 23:53:42 +00:00
|
|
|
type (str): 'movie', 'show', 'season', 'episode', or 'clip'.
|
2022-02-27 03:26:08 +00:00
|
|
|
updatedAt (datetime): Datetime the item was updated.
|
2021-05-30 22:47:53 +00:00
|
|
|
userRating (float): Rating of the item (0.0 - 10.0) equaling (0 stars - 5 stars).
|
2020-12-23 23:53:42 +00:00
|
|
|
viewCount (int): Count of times the item was played.
|
2017-02-09 20:01:23 +00:00
|
|
|
"""
|
2017-10-09 14:07:09 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def _loadData(self, data):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2017-02-06 04:52:10 +00:00
|
|
|
self._data = data
|
2017-02-04 17:43:50 +00:00
|
|
|
self.addedAt = utils.toDatetime(data.attrib.get('addedAt'))
|
2020-06-09 17:37:12 +00:00
|
|
|
self.art = data.attrib.get('art')
|
2020-11-22 04:02:31 +00:00
|
|
|
self.artBlurHash = data.attrib.get('artBlurHash')
|
2020-12-24 04:39:15 +00:00
|
|
|
self.fields = self.findItems(data, media.Field)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.guid = data.attrib.get('guid')
|
2018-03-02 19:13:38 +00:00
|
|
|
self.key = data.attrib.get('key', '')
|
2021-05-16 05:38:35 +00:00
|
|
|
self.lastRatedAt = utils.toDatetime(data.attrib.get('lastRatedAt'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.lastViewedAt = utils.toDatetime(data.attrib.get('lastViewedAt'))
|
2021-03-11 21:27:08 +00:00
|
|
|
self.librarySectionID = utils.cast(int, data.attrib.get('librarySectionID'))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.librarySectionKey = data.attrib.get('librarySectionKey')
|
|
|
|
self.librarySectionTitle = data.attrib.get('librarySectionTitle')
|
|
|
|
self.listType = 'video'
|
2017-02-04 17:43:50 +00:00
|
|
|
self.ratingKey = utils.cast(int, data.attrib.get('ratingKey'))
|
|
|
|
self.summary = data.attrib.get('summary')
|
|
|
|
self.thumb = data.attrib.get('thumb')
|
2020-11-22 04:02:31 +00:00
|
|
|
self.thumbBlurHash = data.attrib.get('thumbBlurHash')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.title = data.attrib.get('title')
|
2016-03-21 04:26:02 +00:00
|
|
|
self.titleSort = data.attrib.get('titleSort', self.title)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.type = data.attrib.get('type')
|
|
|
|
self.updatedAt = utils.toDatetime(data.attrib.get('updatedAt'))
|
2021-05-30 22:47:53 +00:00
|
|
|
self.userRating = utils.cast(float, data.attrib.get('userRating'))
|
2016-03-21 04:26:02 +00:00
|
|
|
self.viewCount = utils.cast(int, data.attrib.get('viewCount', 0))
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-11-08 21:01:53 +00:00
|
|
|
def url(self, part):
|
|
|
|
""" Returns the full url for something. Typically used for getting a specific image. """
|
2018-01-05 02:44:35 +00:00
|
|
|
return self._server.url(part, includeToken=True) if part else None
|
2017-11-08 21:01:53 +00:00
|
|
|
|
2020-07-16 09:29:52 +00:00
|
|
|
def augmentation(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.library.Hub` objects.
|
2021-06-06 23:40:57 +00:00
|
|
|
Augmentation returns hub items relating to online media sources
|
|
|
|
such as Tidal Music "Track from {item}" or "Soundtrack of {item}".
|
|
|
|
Plex Pass and linked Tidal account are required.
|
2020-07-16 09:29:52 +00:00
|
|
|
"""
|
2020-07-17 01:10:50 +00:00
|
|
|
account = self._server.myPlexAccount()
|
2021-06-06 23:40:57 +00:00
|
|
|
tidalOptOut = next(
|
|
|
|
(service.value for service in account.onlineMediaSources()
|
|
|
|
if service.key == 'tv.plex.provider.music'),
|
|
|
|
None
|
|
|
|
)
|
2020-07-17 01:10:50 +00:00
|
|
|
if account.subscriptionStatus != 'Active' or tidalOptOut == 'opt_out':
|
|
|
|
raise BadRequest('Requires Plex Pass and Tidal Music enabled.')
|
2020-07-16 09:29:52 +00:00
|
|
|
data = self._server.query(self.key + '?asyncAugmentMetadata=1')
|
2021-06-06 23:40:57 +00:00
|
|
|
augmentationKey = data.attrib.get('augmentationKey')
|
2020-07-16 09:29:52 +00:00
|
|
|
return self.fetchItems(augmentationKey)
|
|
|
|
|
2018-09-08 15:25:16 +00:00
|
|
|
def _defaultSyncTitle(self):
|
|
|
|
""" Returns str, default title for a new syncItem. """
|
|
|
|
return self.title
|
|
|
|
|
2023-03-09 22:21:20 +00:00
|
|
|
def videoStreams(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.media.videoStream` objects for all MediaParts. """
|
|
|
|
streams = []
|
|
|
|
|
|
|
|
if self.isPartialObject():
|
|
|
|
self.reload()
|
|
|
|
|
|
|
|
parts = self.iterParts()
|
|
|
|
for part in parts:
|
|
|
|
streams += part.videoStreams()
|
|
|
|
return streams
|
|
|
|
|
2022-02-27 06:24:43 +00:00
|
|
|
def audioStreams(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.media.AudioStream` objects for all MediaParts. """
|
|
|
|
streams = []
|
|
|
|
|
2023-03-09 22:21:20 +00:00
|
|
|
if self.isPartialObject():
|
|
|
|
self.reload()
|
|
|
|
|
2022-02-27 06:24:43 +00:00
|
|
|
parts = self.iterParts()
|
|
|
|
for part in parts:
|
|
|
|
streams += part.audioStreams()
|
|
|
|
return streams
|
|
|
|
|
2019-10-12 18:40:43 +00:00
|
|
|
def subtitleStreams(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.media.SubtitleStream` objects for all MediaParts. """
|
|
|
|
streams = []
|
|
|
|
|
2023-03-09 22:21:20 +00:00
|
|
|
if self.isPartialObject():
|
|
|
|
self.reload()
|
|
|
|
|
2019-10-12 18:40:43 +00:00
|
|
|
parts = self.iterParts()
|
|
|
|
for part in parts:
|
|
|
|
streams += part.subtitleStreams()
|
|
|
|
return streams
|
|
|
|
|
|
|
|
def uploadSubtitles(self, filepath):
|
|
|
|
""" Upload Subtitle file for video. """
|
2022-08-28 05:56:01 +00:00
|
|
|
url = f'{self.key}/subtitles'
|
2019-10-12 18:40:43 +00:00
|
|
|
filename = os.path.basename(filepath)
|
|
|
|
subFormat = os.path.splitext(filepath)[1][1:]
|
|
|
|
with open(filepath, 'rb') as subfile:
|
|
|
|
params = {'title': filename,
|
|
|
|
'format': subFormat
|
|
|
|
}
|
|
|
|
headers = {'Accept': 'text/plain, */*'}
|
|
|
|
self._server.query(url, self._server._session.post, data=subfile, params=params, headers=headers)
|
2022-08-26 21:44:50 +00:00
|
|
|
return self
|
2019-10-12 18:40:43 +00:00
|
|
|
|
|
|
|
def removeSubtitles(self, streamID=None, streamTitle=None):
|
|
|
|
""" Remove Subtitle from movie's subtitles listing.
|
|
|
|
|
|
|
|
Note: If subtitle file is located inside video directory it will bbe deleted.
|
|
|
|
Files outside of video directory are not effected.
|
|
|
|
"""
|
|
|
|
for stream in self.subtitleStreams():
|
|
|
|
if streamID == stream.id or streamTitle == stream.title:
|
|
|
|
self._server.query(stream.key, self._server._session.delete)
|
2022-08-26 21:44:50 +00:00
|
|
|
return self
|
2019-10-12 18:40:43 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
def optimize(self, title='', target='', deviceProfile='', videoQuality=None,
|
|
|
|
locationID=-1, limit=None, unwatched=False):
|
|
|
|
""" Create an optimized version of the video.
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
title (str, optional): Title of the optimized video.
|
|
|
|
target (str, optional): Target quality profile:
|
|
|
|
"Optimized for Mobile" ("mobile"), "Optimized for TV" ("tv"), "Original Quality" ("original"),
|
|
|
|
or custom quality profile name (default "Custom: {deviceProfile}").
|
|
|
|
deviceProfile (str, optional): Custom quality device profile:
|
|
|
|
"Android", "iOS", "Universal Mobile", "Universal TV", "Windows Phone", "Windows", "Xbox One".
|
|
|
|
Required if ``target`` is custom.
|
|
|
|
videoQuality (int, optional): Index of the quality profile, one of ``VIDEO_QUALITY_*``
|
|
|
|
values defined in the :mod:`~plexapi.sync` module. Only used if ``target`` is custom.
|
|
|
|
locationID (int or :class:`~plexapi.library.Location`, optional): Default -1 for
|
|
|
|
"In folder with original items", otherwise a :class:`~plexapi.library.Location` object or ID.
|
|
|
|
See examples below.
|
|
|
|
limit (int, optional): Maximum count of items to optimize, unlimited if ``None``.
|
|
|
|
unwatched (bool, optional): ``True`` to only optimized unwatched videos.
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
:exc:`~plexapi.exceptions.BadRequest`: Unknown quality profile target
|
|
|
|
or missing deviceProfile and videoQuality.
|
|
|
|
:exc:`~plexapi.exceptions.BadRequest`: Unknown location ID.
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
Example:
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
.. code-block:: python
|
2022-11-08 21:39:53 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
# Optimize for mobile using defaults
|
|
|
|
video.optimize(target="mobile")
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
# Optimize for Android at 10 Mbps 1080p
|
|
|
|
from plexapi.sync import VIDEO_QUALITY_10_MBPS_1080p
|
|
|
|
video.optimize(deviceProfile="Android", videoQuality=sync.VIDEO_QUALITY_10_MBPS_1080p)
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
# Optimize for iOS at original quality in library location
|
|
|
|
from plexapi.sync import VIDEO_QUALITY_ORIGINAL
|
|
|
|
locations = plex.library.section("Movies")._locations()
|
|
|
|
video.optimize(deviceProfile="iOS", videoQuality=VIDEO_QUALITY_ORIGINAL, locationID=locations[0])
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
# Optimize for tv the next 5 unwatched episodes
|
|
|
|
show.optimize(target="tv", limit=5, unwatched=True)
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
"""
|
|
|
|
from plexapi.library import Location
|
|
|
|
from plexapi.sync import Policy, MediaSettings
|
2020-06-09 19:57:47 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
backgroundProcessing = self.fetchItem('/playlists?type=42')
|
2022-08-28 05:56:01 +00:00
|
|
|
key = f'{backgroundProcessing.key}/items'
|
2022-07-21 03:07:39 +00:00
|
|
|
|
|
|
|
tags = {t.tag.lower(): t.id for t in self._server.library.tags('mediaProcessingTarget')}
|
|
|
|
# Additional keys for shorthand values
|
|
|
|
tags['mobile'] = tags['optimized for mobile']
|
|
|
|
tags['tv'] = tags['optimized for tv']
|
|
|
|
tags['original'] = tags['original quality']
|
|
|
|
|
|
|
|
targetTagID = tags.get(target.lower(), '')
|
|
|
|
if not targetTagID and (not deviceProfile or videoQuality is None):
|
|
|
|
raise BadRequest('Unknown quality profile target or missing deviceProfile and videoQuality.')
|
|
|
|
if targetTagID:
|
|
|
|
target = ''
|
|
|
|
elif deviceProfile and not target:
|
|
|
|
target = f'Custom: {deviceProfile}'
|
|
|
|
|
|
|
|
section = self.section()
|
|
|
|
libraryLocationIDs = [-1] + [location.id for location in section._locations()]
|
|
|
|
if isinstance(locationID, Location):
|
|
|
|
locationID = locationID.id
|
2020-06-09 19:57:47 +00:00
|
|
|
if locationID not in libraryLocationIDs:
|
2022-07-21 03:07:39 +00:00
|
|
|
raise BadRequest(f'Unknown location ID "{locationID}" not in {libraryLocationIDs}')
|
2020-06-09 19:57:47 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
if isinstance(self, (Show, Season)):
|
|
|
|
uri = f'library:///directory/{quote_plus(f"{self.key}/children")}'
|
|
|
|
else:
|
|
|
|
uri = f'library://{section.uuid}/item/{quote_plus(self.key)}'
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
policy = Policy.create(limit, unwatched)
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2020-01-30 19:12:33 +00:00
|
|
|
params = {
|
|
|
|
'Item[type]': 42,
|
2022-07-21 03:07:39 +00:00
|
|
|
'Item[title]': title or self._defaultSyncTitle(),
|
2020-01-30 19:12:33 +00:00
|
|
|
'Item[target]': target,
|
2022-07-21 03:07:39 +00:00
|
|
|
'Item[targetTagID]': targetTagID,
|
2020-01-30 19:12:33 +00:00
|
|
|
'Item[locationID]': locationID,
|
2022-07-21 03:07:39 +00:00
|
|
|
'Item[Location][uri]': uri,
|
|
|
|
'Item[Policy][scope]': policy.scope,
|
|
|
|
'Item[Policy][value]': str(policy.value),
|
|
|
|
'Item[Policy][unwatched]': str(int(policy.unwatched)),
|
2020-01-30 19:12:33 +00:00
|
|
|
}
|
2020-01-30 15:55:29 +00:00
|
|
|
|
|
|
|
if deviceProfile:
|
2020-01-30 19:12:33 +00:00
|
|
|
params['Item[Device][profile]'] = deviceProfile
|
2020-01-30 15:55:29 +00:00
|
|
|
|
|
|
|
if videoQuality:
|
|
|
|
mediaSettings = MediaSettings.createVideo(videoQuality)
|
2020-01-30 19:12:33 +00:00
|
|
|
params['Item[MediaSettings][videoQuality]'] = mediaSettings.videoQuality
|
|
|
|
params['Item[MediaSettings][videoResolution]'] = mediaSettings.videoResolution
|
|
|
|
params['Item[MediaSettings][maxVideoBitrate]'] = mediaSettings.maxVideoBitrate
|
|
|
|
params['Item[MediaSettings][audioBoost]'] = ''
|
|
|
|
params['Item[MediaSettings][subtitleSize]'] = ''
|
|
|
|
params['Item[MediaSettings][musicBitrate]'] = ''
|
|
|
|
params['Item[MediaSettings][photoQuality]'] = ''
|
2022-07-21 03:07:39 +00:00
|
|
|
params['Item[MediaSettings][photoResolution]'] = ''
|
2020-01-30 19:12:33 +00:00
|
|
|
|
2022-07-21 03:07:39 +00:00
|
|
|
url = key + utils.joinArgs(params)
|
|
|
|
self._server.query(url, method=self._server._session.put)
|
2022-08-26 21:44:50 +00:00
|
|
|
return self
|
2020-01-30 15:55:29 +00:00
|
|
|
|
2018-09-08 15:25:16 +00:00
|
|
|
def sync(self, videoQuality, client=None, clientId=None, limit=None, unwatched=False, title=None):
|
|
|
|
""" Add current video (movie, tv-show, season or episode) as sync item for specified device.
|
2020-11-23 03:06:30 +00:00
|
|
|
See :func:`~plexapi.myplex.MyPlexAccount.sync` for possible exceptions.
|
2018-09-08 15:25:16 +00:00
|
|
|
|
|
|
|
Parameters:
|
|
|
|
videoQuality (int): idx of quality of the video, one of VIDEO_QUALITY_* values defined in
|
2020-11-23 03:06:30 +00:00
|
|
|
:mod:`~plexapi.sync` module.
|
|
|
|
client (:class:`~plexapi.myplex.MyPlexDevice`): sync destination, see
|
|
|
|
:func:`~plexapi.myplex.MyPlexAccount.sync`.
|
|
|
|
clientId (str): sync destination, see :func:`~plexapi.myplex.MyPlexAccount.sync`.
|
2018-09-08 15:25:16 +00:00
|
|
|
limit (int): maximum count of items to sync, unlimited if `None`.
|
|
|
|
unwatched (bool): if `True` watched videos wouldn't be synced.
|
2020-11-23 03:06:30 +00:00
|
|
|
title (str): descriptive title for the new :class:`~plexapi.sync.SyncItem`, if empty the value would be
|
2018-09-08 15:25:16 +00:00
|
|
|
generated from metadata of current media.
|
|
|
|
|
|
|
|
Returns:
|
2020-11-23 03:06:30 +00:00
|
|
|
:class:`~plexapi.sync.SyncItem`: an instance of created syncItem.
|
2018-09-08 15:25:16 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
from plexapi.sync import SyncItem, Policy, MediaSettings
|
|
|
|
|
|
|
|
myplex = self._server.myPlexAccount()
|
|
|
|
sync_item = SyncItem(self._server, None)
|
|
|
|
sync_item.title = title if title else self._defaultSyncTitle()
|
|
|
|
sync_item.rootTitle = self.title
|
|
|
|
sync_item.contentType = self.listType
|
|
|
|
sync_item.metadataType = self.METADATA_TYPE
|
|
|
|
sync_item.machineIdentifier = self._server.machineIdentifier
|
|
|
|
|
|
|
|
section = self._server.library.sectionByID(self.librarySectionID)
|
|
|
|
|
2022-08-28 05:56:01 +00:00
|
|
|
sync_item.location = f'library://{section.uuid}/item/{quote_plus(self.key)}'
|
2018-09-08 15:25:16 +00:00
|
|
|
sync_item.policy = Policy.create(limit, unwatched)
|
|
|
|
sync_item.mediaSettings = MediaSettings.createVideo(videoQuality)
|
|
|
|
|
|
|
|
return myplex.sync(sync_item, client=client, clientId=clientId)
|
|
|
|
|
2018-02-18 05:32:29 +00:00
|
|
|
|
2017-02-13 02:55:55 +00:00
|
|
|
@utils.registerPlexObject
|
2022-02-27 05:40:51 +00:00
|
|
|
class Movie(
|
|
|
|
Video, Playable,
|
2022-02-27 06:04:18 +00:00
|
|
|
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
ArtMixin, PosterMixin, ThemeMixin,
|
2022-08-27 13:17:33 +00:00
|
|
|
ContentRatingMixin, EditionTitleMixin, OriginallyAvailableMixin, OriginalTitleMixin, SortTitleMixin, StudioMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
SummaryMixin, TaglineMixin, TitleMixin,
|
2022-05-18 18:04:18 +00:00
|
|
|
CollectionMixin, CountryMixin, DirectorMixin, GenreMixin, LabelMixin, ProducerMixin, WriterMixin,
|
|
|
|
WatchlistMixin
|
2022-02-27 05:40:51 +00:00
|
|
|
):
|
2017-02-09 20:01:23 +00:00
|
|
|
""" Represents a single Movie.
|
2017-02-18 00:51:06 +00:00
|
|
|
|
2017-02-09 20:01:23 +00:00
|
|
|
Attributes:
|
2018-03-02 17:43:31 +00:00
|
|
|
TAG (str): 'Video'
|
2017-02-13 19:38:40 +00:00
|
|
|
TYPE (str): 'movie'
|
2017-02-09 20:01:23 +00:00
|
|
|
audienceRating (float): Audience rating (usually from Rotten Tomatoes).
|
2020-12-23 23:53:42 +00:00
|
|
|
audienceRatingImage (str): Key to audience rating image (rottentomatoes://image.rating.spilled).
|
|
|
|
chapters (List<:class:`~plexapi.media.Chapter`>): List of Chapter objects.
|
2017-02-09 20:01:23 +00:00
|
|
|
chapterSource (str): Chapter source (agent; media; mixed).
|
2020-12-23 23:53:42 +00:00
|
|
|
collections (List<:class:`~plexapi.media.Collection`>): List of collection objects.
|
2017-02-09 20:01:23 +00:00
|
|
|
contentRating (str) Content rating (PG-13; NR; TV-G).
|
2017-02-13 19:38:40 +00:00
|
|
|
countries (List<:class:`~plexapi.media.Country`>): List of countries objects.
|
|
|
|
directors (List<:class:`~plexapi.media.Director`>): List of director objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
duration (int): Duration of the movie in milliseconds.
|
2022-08-27 13:17:33 +00:00
|
|
|
editionTitle (str): The edition title of the movie (e.g. Director's Cut, Extended Edition, etc.).
|
2023-03-09 21:32:17 +00:00
|
|
|
enableCreditsMarkerGeneration (int): Setting that indicates if credits markers detection is enabled.
|
2017-02-13 19:38:40 +00:00
|
|
|
genres (List<:class:`~plexapi.media.Genre`>): List of genre objects.
|
2021-01-25 02:03:58 +00:00
|
|
|
guids (List<:class:`~plexapi.media.Guid`>): List of guid objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
labels (List<:class:`~plexapi.media.Label`>): List of label objects.
|
2022-02-27 03:26:08 +00:00
|
|
|
languageOverride (str): Setting that indicates if a language is used to override metadata
|
2021-03-11 17:20:28 +00:00
|
|
|
(eg. en-CA, None = Library default).
|
2017-02-13 19:38:40 +00:00
|
|
|
media (List<:class:`~plexapi.media.Media`>): List of media objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
originallyAvailableAt (datetime): Datetime the movie was released.
|
|
|
|
originalTitle (str): Original title, often the foreign title (転々; 엽기적인 그녀).
|
|
|
|
primaryExtraKey (str) Primary extra key (/library/metadata/66351).
|
2017-02-13 19:38:40 +00:00
|
|
|
producers (List<:class:`~plexapi.media.Producer`>): List of producers objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
rating (float): Movie critic rating (7.9; 9.8; 8.1).
|
|
|
|
ratingImage (str): Key to critic rating image (rottentomatoes://image.rating.rotten).
|
2022-12-21 19:43:52 +00:00
|
|
|
ratings (List<:class:`~plexapi.media.Rating`>): List of rating objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
roles (List<:class:`~plexapi.media.Role`>): List of role objects.
|
2018-03-02 17:43:31 +00:00
|
|
|
similar (List<:class:`~plexapi.media.Similar`>): List of Similar objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
studio (str): Studio that created movie (Di Bonaventura Pictures; 21 Laps Entertainment).
|
|
|
|
tagline (str): Movie tag line (Back 2 Work; Who says men can't change?).
|
2022-02-27 02:47:54 +00:00
|
|
|
theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
|
2021-03-11 17:20:28 +00:00
|
|
|
useOriginalTitle (int): Setting that indicates if the original title is used for the movie
|
|
|
|
(-1 = Library default, 0 = No, 1 = Yes).
|
2020-12-23 23:53:42 +00:00
|
|
|
viewOffset (int): View offset in milliseconds.
|
|
|
|
writers (List<:class:`~plexapi.media.Writer`>): List of writers objects.
|
|
|
|
year (int): Year movie was released.
|
2017-02-09 20:01:23 +00:00
|
|
|
"""
|
2017-02-13 02:55:55 +00:00
|
|
|
TAG = 'Video'
|
2014-12-29 03:21:58 +00:00
|
|
|
TYPE = 'movie'
|
2018-09-08 15:25:16 +00:00
|
|
|
METADATA_TYPE = 'movie'
|
2018-03-02 16:08:10 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def _loadData(self, data):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2016-04-07 05:39:04 +00:00
|
|
|
Video._loadData(self, data)
|
|
|
|
Playable._loadData(self, data)
|
2017-02-07 06:20:49 +00:00
|
|
|
self.audienceRating = utils.cast(float, data.attrib.get('audienceRating'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.audienceRatingImage = data.attrib.get('audienceRatingImage')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.chapters = self.findItems(data, media.Chapter)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.chapterSource = data.attrib.get('chapterSource')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.collections = self.findItems(data, media.Collection)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.contentRating = data.attrib.get('contentRating')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.countries = self.findItems(data, media.Country)
|
|
|
|
self.directors = self.findItems(data, media.Director)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.duration = utils.cast(int, data.attrib.get('duration'))
|
2022-08-27 13:17:33 +00:00
|
|
|
self.editionTitle = data.attrib.get('editionTitle')
|
2023-03-09 21:32:17 +00:00
|
|
|
self.enableCreditsMarkerGeneration = utils.cast(int, data.attrib.get('enableCreditsMarkerGeneration', '-1'))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.genres = self.findItems(data, media.Genre)
|
2021-01-25 02:03:58 +00:00
|
|
|
self.guids = self.findItems(data, media.Guid)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.labels = self.findItems(data, media.Label)
|
2021-03-11 17:20:28 +00:00
|
|
|
self.languageOverride = data.attrib.get('languageOverride')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.media = self.findItems(data, media.Media)
|
|
|
|
self.originallyAvailableAt = utils.toDatetime(data.attrib.get('originallyAvailableAt'), '%Y-%m-%d')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.originalTitle = data.attrib.get('originalTitle')
|
|
|
|
self.primaryExtraKey = data.attrib.get('primaryExtraKey')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.producers = self.findItems(data, media.Producer)
|
2017-08-20 20:30:50 +00:00
|
|
|
self.rating = utils.cast(float, data.attrib.get('rating'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.ratingImage = data.attrib.get('ratingImage')
|
2022-12-21 19:43:52 +00:00
|
|
|
self.ratings = self.findItems(data, media.Rating)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.roles = self.findItems(data, media.Role)
|
|
|
|
self.similar = self.findItems(data, media.Similar)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.studio = data.attrib.get('studio')
|
|
|
|
self.tagline = data.attrib.get('tagline')
|
2022-02-27 02:47:54 +00:00
|
|
|
self.theme = data.attrib.get('theme')
|
2021-03-11 17:20:28 +00:00
|
|
|
self.useOriginalTitle = utils.cast(int, data.attrib.get('useOriginalTitle', '-1'))
|
2016-03-21 04:26:02 +00:00
|
|
|
self.viewOffset = utils.cast(int, data.attrib.get('viewOffset', 0))
|
2017-02-13 02:55:55 +00:00
|
|
|
self.writers = self.findItems(data, media.Writer)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.year = utils.cast(int, data.attrib.get('year'))
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
@property
|
|
|
|
def actors(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Alias to self.roles. """
|
2016-03-21 04:26:02 +00:00
|
|
|
return self.roles
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2017-01-09 14:21:54 +00:00
|
|
|
@property
|
2017-02-13 03:33:38 +00:00
|
|
|
def locations(self):
|
2017-01-09 14:21:54 +00:00
|
|
|
""" This does not exist in plex xml response but is added to have a common
|
2020-12-23 23:53:42 +00:00
|
|
|
interface to get the locations of the movie.
|
2020-12-24 04:40:08 +00:00
|
|
|
|
2021-04-14 12:02:04 +00:00
|
|
|
Returns:
|
2020-12-24 04:40:08 +00:00
|
|
|
List<str> of file paths where the movie is found on disk.
|
2017-01-09 14:21:54 +00:00
|
|
|
"""
|
2017-05-13 03:25:57 +00:00
|
|
|
return [part.file for part in self.iterParts() if part]
|
|
|
|
|
2023-03-09 21:32:17 +00:00
|
|
|
@property
|
|
|
|
def hasCreditsMarker(self):
|
|
|
|
""" Returns True if the movie has a credits marker. """
|
|
|
|
return any(marker.type == 'credits' for marker in self.markers)
|
|
|
|
|
2021-05-11 01:06:50 +00:00
|
|
|
@property
|
|
|
|
def hasPreviewThumbnails(self):
|
|
|
|
""" Returns True if any of the media parts has generated preview (BIF) thumbnails. """
|
|
|
|
return any(part.hasPreviewThumbnails for media in self.media for part in media.parts)
|
|
|
|
|
2017-02-18 00:51:06 +00:00
|
|
|
def _prettyfilename(self):
|
2021-11-20 22:16:58 +00:00
|
|
|
""" Returns a filename for use in download. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f'{self.title} ({self.year})'
|
2017-02-18 00:51:06 +00:00
|
|
|
|
2020-07-15 18:41:09 +00:00
|
|
|
def reviews(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.media.Review` objects. """
|
2021-06-06 23:40:57 +00:00
|
|
|
data = self._server.query(self._details_key)
|
|
|
|
return self.findItems(data, media.Review, rtag='Video')
|
2020-07-15 18:41:09 +00:00
|
|
|
|
2022-08-27 13:17:33 +00:00
|
|
|
def editions(self):
|
|
|
|
""" Returns a list of :class:`~plexapi.video.Movie` objects
|
|
|
|
for other editions of the same movie.
|
|
|
|
"""
|
|
|
|
filters = {
|
|
|
|
'guid': self.guid,
|
|
|
|
'id!': self.ratingKey
|
|
|
|
}
|
|
|
|
return self.section().search(filters=filters)
|
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-02-13 02:55:55 +00:00
|
|
|
@utils.registerPlexObject
|
2022-02-27 05:40:51 +00:00
|
|
|
class Show(
|
|
|
|
Video,
|
2022-02-27 06:04:18 +00:00
|
|
|
AdvancedSettingsMixin, SplitMergeMixin, UnmatchMatchMixin, ExtrasMixin, HubsMixin, RatingMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
ArtMixin, BannerMixin, PosterMixin, ThemeMixin,
|
|
|
|
ContentRatingMixin, OriginallyAvailableMixin, OriginalTitleMixin, SortTitleMixin, StudioMixin,
|
|
|
|
SummaryMixin, TaglineMixin, TitleMixin,
|
2022-05-18 18:04:18 +00:00
|
|
|
CollectionMixin, GenreMixin, LabelMixin,
|
|
|
|
WatchlistMixin
|
2022-02-27 05:40:51 +00:00
|
|
|
):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Represents a single Show (including all seasons and episodes).
|
|
|
|
|
|
|
|
Attributes:
|
2018-03-02 17:43:31 +00:00
|
|
|
TAG (str): 'Directory'
|
2017-02-13 19:38:40 +00:00
|
|
|
TYPE (str): 'show'
|
2021-03-11 17:19:54 +00:00
|
|
|
audienceRating (float): Audience rating (TMDB or TVDB).
|
|
|
|
audienceRatingImage (str): Key to audience rating image (tmdb://image.rating).
|
|
|
|
autoDeletionItemPolicyUnwatchedLibrary (int): Setting that indicates the number of unplayed
|
|
|
|
episodes to keep for the show (0 = All episodes, 5 = 5 latest episodes, 3 = 3 latest episodes,
|
|
|
|
1 = 1 latest episode, -3 = Episodes added in the past 3 days, -7 = Episodes added in the
|
|
|
|
past 7 days, -30 = Episodes added in the past 30 days).
|
|
|
|
autoDeletionItemPolicyWatchedLibrary (int): Setting that indicates if episodes are deleted
|
|
|
|
after being watched for the show (0 = Never, 1 = After a day, 7 = After a week,
|
|
|
|
100 = On next refresh).
|
2020-12-23 23:53:42 +00:00
|
|
|
banner (str): Key to banner artwork (/library/metadata/<ratingkey>/banner/<bannerid>).
|
2023-03-09 21:18:59 +00:00
|
|
|
childCount (int): Number of seasons (including Specials) in the show.
|
2020-12-23 23:53:42 +00:00
|
|
|
collections (List<:class:`~plexapi.media.Collection`>): List of collection objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
contentRating (str) Content rating (PG-13; NR; TV-G).
|
2020-12-23 23:53:42 +00:00
|
|
|
duration (int): Typical duration of the show episodes in milliseconds.
|
2023-03-09 21:32:17 +00:00
|
|
|
enableCreditsMarkerGeneration (int): Setting that indicates if credits markers detection is enabled.
|
2021-03-11 17:19:54 +00:00
|
|
|
episodeSort (int): Setting that indicates how episodes are sorted for the show
|
|
|
|
(-1 = Library default, 0 = Oldest first, 1 = Newest first).
|
|
|
|
flattenSeasons (int): Setting that indicates if seasons are set to hidden for the show
|
|
|
|
(-1 = Library default, 0 = Hide, 1 = Show).
|
2017-02-13 19:38:40 +00:00
|
|
|
genres (List<:class:`~plexapi.media.Genre`>): List of genre objects.
|
2021-03-11 17:19:54 +00:00
|
|
|
guids (List<:class:`~plexapi.media.Guid`>): List of guid objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
index (int): Plex index number for the show.
|
|
|
|
key (str): API URL (/library/metadata/<ratingkey>).
|
|
|
|
labels (List<:class:`~plexapi.media.Label`>): List of label objects.
|
2022-02-27 03:26:08 +00:00
|
|
|
languageOverride (str): Setting that indicates if a language is used to override metadata
|
2021-03-11 17:19:54 +00:00
|
|
|
(eg. en-CA, None = Library default).
|
2020-12-23 23:53:42 +00:00
|
|
|
leafCount (int): Number of items in the show view.
|
2020-12-24 04:40:08 +00:00
|
|
|
locations (List<str>): List of folder paths where the show is found on disk.
|
2021-03-11 17:19:54 +00:00
|
|
|
network (str): The network that distributed the show.
|
2020-12-23 23:53:42 +00:00
|
|
|
originallyAvailableAt (datetime): Datetime the show was released.
|
2021-02-11 05:05:21 +00:00
|
|
|
originalTitle (str): The original title of the show.
|
2020-12-23 23:53:42 +00:00
|
|
|
rating (float): Show rating (7.9; 9.8; 8.1).
|
2022-12-21 19:43:52 +00:00
|
|
|
ratings (List<:class:`~plexapi.media.Rating`>): List of rating objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
roles (List<:class:`~plexapi.media.Role`>): List of role objects.
|
2023-03-09 21:18:59 +00:00
|
|
|
seasonCount (int): Number of seasons (excluding Specials) in the show.
|
2021-03-11 17:19:54 +00:00
|
|
|
showOrdering (str): Setting that indicates the episode ordering for the show
|
|
|
|
(None = Library default).
|
2018-03-02 17:43:31 +00:00
|
|
|
similar (List<:class:`~plexapi.media.Similar`>): List of Similar objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
studio (str): Studio that created show (Di Bonaventura Pictures; 21 Laps Entertainment).
|
2021-02-27 07:01:00 +00:00
|
|
|
tagline (str): Show tag line.
|
2020-12-23 23:53:42 +00:00
|
|
|
theme (str): URL to theme resource (/library/metadata/<ratingkey>/theme/<themeid>).
|
2021-03-11 17:19:54 +00:00
|
|
|
useOriginalTitle (int): Setting that indicates if the original title is used for the show
|
|
|
|
(-1 = Library default, 0 = No, 1 = Yes).
|
2020-12-23 23:53:42 +00:00
|
|
|
viewedLeafCount (int): Number of items marked as played in the show view.
|
|
|
|
year (int): Year the show was released.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
2017-02-13 02:55:55 +00:00
|
|
|
TAG = 'Directory'
|
2014-12-29 03:21:58 +00:00
|
|
|
TYPE = 'show'
|
2018-09-08 15:25:16 +00:00
|
|
|
METADATA_TYPE = 'episode'
|
2015-02-24 03:42:29 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def _loadData(self, data):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2016-04-07 05:39:04 +00:00
|
|
|
Video._loadData(self, data)
|
2021-03-11 17:19:54 +00:00
|
|
|
self.audienceRating = utils.cast(float, data.attrib.get('audienceRating'))
|
|
|
|
self.audienceRatingImage = data.attrib.get('audienceRatingImage')
|
|
|
|
self.autoDeletionItemPolicyUnwatchedLibrary = utils.cast(
|
|
|
|
int, data.attrib.get('autoDeletionItemPolicyUnwatchedLibrary', '0'))
|
|
|
|
self.autoDeletionItemPolicyWatchedLibrary = utils.cast(
|
|
|
|
int, data.attrib.get('autoDeletionItemPolicyWatchedLibrary', '0'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.banner = data.attrib.get('banner')
|
|
|
|
self.childCount = utils.cast(int, data.attrib.get('childCount'))
|
2019-05-29 06:52:50 +00:00
|
|
|
self.collections = self.findItems(data, media.Collection)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.contentRating = data.attrib.get('contentRating')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.duration = utils.cast(int, data.attrib.get('duration'))
|
2023-03-09 21:32:17 +00:00
|
|
|
self.enableCreditsMarkerGeneration = utils.cast(int, data.attrib.get('enableCreditsMarkerGeneration', '-1'))
|
2021-03-11 17:19:54 +00:00
|
|
|
self.episodeSort = utils.cast(int, data.attrib.get('episodeSort', '-1'))
|
|
|
|
self.flattenSeasons = utils.cast(int, data.attrib.get('flattenSeasons', '-1'))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.genres = self.findItems(data, media.Genre)
|
2021-03-11 17:19:54 +00:00
|
|
|
self.guids = self.findItems(data, media.Guid)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.index = utils.cast(int, data.attrib.get('index'))
|
|
|
|
self.key = self.key.replace('/children', '') # FIX_BUG_50
|
|
|
|
self.labels = self.findItems(data, media.Label)
|
2021-03-11 17:19:54 +00:00
|
|
|
self.languageOverride = data.attrib.get('languageOverride')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.leafCount = utils.cast(int, data.attrib.get('leafCount'))
|
2017-02-13 03:15:47 +00:00
|
|
|
self.locations = self.listAttrs(data, 'path', etag='Location')
|
2021-03-11 17:19:54 +00:00
|
|
|
self.network = data.attrib.get('network')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.originallyAvailableAt = utils.toDatetime(data.attrib.get('originallyAvailableAt'), '%Y-%m-%d')
|
2021-02-11 05:05:21 +00:00
|
|
|
self.originalTitle = data.attrib.get('originalTitle')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.rating = utils.cast(float, data.attrib.get('rating'))
|
2022-12-21 19:43:52 +00:00
|
|
|
self.ratings = self.findItems(data, media.Rating)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.roles = self.findItems(data, media.Role)
|
2023-03-09 21:18:59 +00:00
|
|
|
self.seasonCount = utils.cast(int, data.attrib.get('seasonCount', self.childCount))
|
2021-03-11 17:19:54 +00:00
|
|
|
self.showOrdering = data.attrib.get('showOrdering')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.similar = self.findItems(data, media.Similar)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.studio = data.attrib.get('studio')
|
2021-02-27 07:01:00 +00:00
|
|
|
self.tagline = data.attrib.get('tagline')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.theme = data.attrib.get('theme')
|
2021-03-11 17:19:54 +00:00
|
|
|
self.useOriginalTitle = utils.cast(int, data.attrib.get('useOriginalTitle', '-1'))
|
2017-02-06 04:52:10 +00:00
|
|
|
self.viewedLeafCount = utils.cast(int, data.attrib.get('viewedLeafCount'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.year = utils.cast(int, data.attrib.get('year'))
|
2020-12-23 23:53:42 +00:00
|
|
|
|
|
|
|
def __iter__(self):
|
|
|
|
for season in self.seasons():
|
|
|
|
yield season
|
2016-03-21 04:26:02 +00:00
|
|
|
|
|
|
|
@property
|
|
|
|
def actors(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Alias to self.roles. """
|
2016-03-21 04:26:02 +00:00
|
|
|
return self.roles
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
@property
|
2022-08-26 19:14:24 +00:00
|
|
|
def isPlayed(self):
|
|
|
|
""" Returns True if the show is fully played. """
|
2016-03-21 04:26:02 +00:00
|
|
|
return bool(self.viewedLeafCount == self.leafCount)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2020-05-24 03:30:44 +00:00
|
|
|
def onDeck(self):
|
2021-01-24 20:49:32 +00:00
|
|
|
""" Returns show's On Deck :class:`~plexapi.video.Video` object or `None`.
|
2020-05-25 02:24:32 +00:00
|
|
|
If show is unwatched, return will likely be the first episode.
|
|
|
|
"""
|
2020-05-24 03:30:44 +00:00
|
|
|
data = self._server.query(self._details_key)
|
2021-05-25 00:28:11 +00:00
|
|
|
return next(iter(self.findItems(data, rtag='OnDeck')), None)
|
2020-05-24 03:20:22 +00:00
|
|
|
|
2020-12-24 05:38:48 +00:00
|
|
|
def season(self, title=None, season=None):
|
2017-02-06 04:52:10 +00:00
|
|
|
""" Returns the season with the specified title or number.
|
2017-01-02 21:06:40 +00:00
|
|
|
|
2017-02-06 04:52:10 +00:00
|
|
|
Parameters:
|
2020-12-24 05:38:48 +00:00
|
|
|
title (str): Title of the season to return.
|
|
|
|
season (int): Season number (default: None; required if title not specified).
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
:exc:`~plexapi.exceptions.BadRequest`: If title or season parameter is missing.
|
2017-01-02 21:06:40 +00:00
|
|
|
"""
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/children?excludeAllLeaves=1'
|
2020-12-30 23:35:57 +00:00
|
|
|
if title is not None and not isinstance(title, int):
|
2020-12-24 05:38:48 +00:00
|
|
|
return self.fetchItem(key, Season, title__iexact=title)
|
2020-12-30 23:35:57 +00:00
|
|
|
elif season is not None or isinstance(title, int):
|
2020-12-30 23:49:26 +00:00
|
|
|
if isinstance(title, int):
|
|
|
|
index = title
|
|
|
|
else:
|
|
|
|
index = season
|
|
|
|
return self.fetchItem(key, Season, index=index)
|
2020-12-24 06:00:00 +00:00
|
|
|
raise BadRequest('Missing argument: title or season is required')
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2020-12-24 05:38:48 +00:00
|
|
|
def seasons(self, **kwargs):
|
|
|
|
""" Returns a list of :class:`~plexapi.video.Season` objects in the show. """
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/children?excludeAllLeaves=1'
|
2022-11-08 21:39:53 +00:00
|
|
|
return self.fetchItems(key, Season, container_size=self.childCount, **kwargs)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-01-04 20:38:04 +00:00
|
|
|
def episode(self, title=None, season=None, episode=None):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Find a episode using a title or season and episode.
|
2017-01-05 21:58:43 +00:00
|
|
|
|
2020-11-23 04:43:59 +00:00
|
|
|
Parameters:
|
2017-02-13 19:38:40 +00:00
|
|
|
title (str): Title of the episode to return
|
2020-12-24 05:38:48 +00:00
|
|
|
season (int): Season number (default: None; required if title not specified).
|
|
|
|
episode (int): Episode number (default: None; required if title not specified).
|
2017-01-05 21:58:43 +00:00
|
|
|
|
2020-11-23 04:43:59 +00:00
|
|
|
Raises:
|
2020-12-24 05:38:48 +00:00
|
|
|
:exc:`~plexapi.exceptions.BadRequest`: If title or season and episode parameters are missing.
|
2017-01-05 21:58:43 +00:00
|
|
|
"""
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/allLeaves'
|
2020-12-30 23:49:26 +00:00
|
|
|
if title is not None:
|
2020-12-24 05:38:48 +00:00
|
|
|
return self.fetchItem(key, Episode, title__iexact=title)
|
|
|
|
elif season is not None and episode is not None:
|
|
|
|
return self.fetchItem(key, Episode, parentIndex=season, index=episode)
|
2017-02-14 04:32:27 +00:00
|
|
|
raise BadRequest('Missing argument: title or season and episode are required')
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2020-12-24 05:38:48 +00:00
|
|
|
def episodes(self, **kwargs):
|
|
|
|
""" Returns a list of :class:`~plexapi.video.Episode` objects in the show. """
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/allLeaves'
|
2020-12-24 05:38:48 +00:00
|
|
|
return self.fetchItems(key, Episode, **kwargs)
|
|
|
|
|
|
|
|
def get(self, title=None, season=None, episode=None):
|
|
|
|
""" Alias to :func:`~plexapi.video.Show.episode`. """
|
|
|
|
return self.episode(title, season, episode)
|
|
|
|
|
2015-06-02 02:55:20 +00:00
|
|
|
def watched(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Returns list of watched :class:`~plexapi.video.Episode` objects. """
|
2017-02-09 06:54:38 +00:00
|
|
|
return self.episodes(viewCount__gt=0)
|
2015-06-02 02:55:20 +00:00
|
|
|
|
|
|
|
def unwatched(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Returns list of unwatched :class:`~plexapi.video.Episode` objects. """
|
2017-02-09 06:54:38 +00:00
|
|
|
return self.episodes(viewCount=0)
|
2015-06-02 02:55:20 +00:00
|
|
|
|
2021-11-20 22:16:58 +00:00
|
|
|
def download(self, savepath=None, keep_original_name=False, subfolders=False, **kwargs):
|
|
|
|
""" Download all episodes from the show. See :func:`~plexapi.base.Playable.download` for details.
|
2017-02-18 00:51:06 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
Parameters:
|
|
|
|
savepath (str): Defaults to current working dir.
|
2021-11-20 22:16:58 +00:00
|
|
|
keep_original_name (bool): True to keep the original filename otherwise
|
|
|
|
a friendlier filename is generated.
|
|
|
|
subfolders (bool): True to separate episodes in to season folders.
|
2020-11-23 03:06:30 +00:00
|
|
|
**kwargs: Additional options passed into :func:`~plexapi.base.PlexObject.getStreamURL`.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
2017-02-27 04:59:46 +00:00
|
|
|
filepaths = []
|
|
|
|
for episode in self.episodes():
|
2022-08-28 05:56:01 +00:00
|
|
|
_savepath = os.path.join(savepath, f'Season {str(episode.seasonNumber).zfill(2)}') if subfolders else savepath
|
2021-11-20 22:16:58 +00:00
|
|
|
filepaths += episode.download(_savepath, keep_original_name, **kwargs)
|
2017-02-27 04:59:46 +00:00
|
|
|
return filepaths
|
2015-06-02 02:27:43 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-02-13 02:55:55 +00:00
|
|
|
@utils.registerPlexObject
|
2022-02-27 05:40:51 +00:00
|
|
|
class Season(
|
|
|
|
Video,
|
2022-02-27 06:04:18 +00:00
|
|
|
ExtrasMixin, RatingMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
ArtMixin, PosterMixin, ThemeUrlMixin,
|
|
|
|
SummaryMixin, TitleMixin,
|
|
|
|
CollectionMixin, LabelMixin
|
|
|
|
):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Represents a single Show Season (including all episodes).
|
|
|
|
|
|
|
|
Attributes:
|
2018-03-02 17:43:31 +00:00
|
|
|
TAG (str): 'Directory'
|
2017-02-13 19:38:40 +00:00
|
|
|
TYPE (str): 'season'
|
2021-05-09 19:24:55 +00:00
|
|
|
collections (List<:class:`~plexapi.media.Collection`>): List of collection objects.
|
2021-03-11 17:19:54 +00:00
|
|
|
guids (List<:class:`~plexapi.media.Guid`>): List of guid objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
index (int): Season number.
|
2020-12-23 23:53:42 +00:00
|
|
|
key (str): API URL (/library/metadata/<ratingkey>).
|
2022-02-27 01:32:18 +00:00
|
|
|
labels (List<:class:`~plexapi.media.Label`>): List of label objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
leafCount (int): Number of items in the season view.
|
|
|
|
parentGuid (str): Plex GUID for the show (plex://show/5d9c086fe9d5a1001f4d9fe6).
|
|
|
|
parentIndex (int): Plex index number for the show.
|
|
|
|
parentKey (str): API URL of the show (/library/metadata/<parentRatingKey>).
|
|
|
|
parentRatingKey (int): Unique key identifying the show.
|
2021-05-10 04:17:37 +00:00
|
|
|
parentStudio (str): Studio that created show.
|
2020-12-23 23:53:42 +00:00
|
|
|
parentTheme (str): URL to show theme resource (/library/metadata/<parentRatingkey>/theme/<themeid>).
|
|
|
|
parentThumb (str): URL to show thumbnail image (/library/metadata/<parentRatingKey>/thumb/<thumbid>).
|
|
|
|
parentTitle (str): Name of the show for the season.
|
2022-12-21 19:43:52 +00:00
|
|
|
ratings (List<:class:`~plexapi.media.Rating`>): List of rating objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
viewedLeafCount (int): Number of items marked as played in the season view.
|
2021-05-10 04:17:37 +00:00
|
|
|
year (int): Year the season was released.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
2017-02-13 02:55:55 +00:00
|
|
|
TAG = 'Directory'
|
2014-12-29 03:21:58 +00:00
|
|
|
TYPE = 'season'
|
2018-09-08 15:25:16 +00:00
|
|
|
METADATA_TYPE = 'episode'
|
2014-12-29 03:21:58 +00:00
|
|
|
|
|
|
|
def _loadData(self, data):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2016-04-07 05:39:04 +00:00
|
|
|
Video._loadData(self, data)
|
2021-05-09 19:24:55 +00:00
|
|
|
self.collections = self.findItems(data, media.Collection)
|
2021-03-11 17:19:54 +00:00
|
|
|
self.guids = self.findItems(data, media.Guid)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.index = utils.cast(int, data.attrib.get('index'))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.key = self.key.replace('/children', '') # FIX_BUG_50
|
2022-02-27 01:32:18 +00:00
|
|
|
self.labels = self.findItems(data, media.Label)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.leafCount = utils.cast(int, data.attrib.get('leafCount'))
|
|
|
|
self.parentGuid = data.attrib.get('parentGuid')
|
2021-05-10 04:17:37 +00:00
|
|
|
self.parentIndex = utils.cast(int, data.attrib.get('parentIndex'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.parentKey = data.attrib.get('parentKey')
|
|
|
|
self.parentRatingKey = utils.cast(int, data.attrib.get('parentRatingKey'))
|
2021-05-10 04:17:37 +00:00
|
|
|
self.parentStudio = data.attrib.get('parentStudio')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.parentTheme = data.attrib.get('parentTheme')
|
|
|
|
self.parentThumb = data.attrib.get('parentThumb')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.parentTitle = data.attrib.get('parentTitle')
|
2022-12-21 19:43:52 +00:00
|
|
|
self.ratings = self.findItems(data, media.Rating)
|
2017-02-06 04:52:10 +00:00
|
|
|
self.viewedLeafCount = utils.cast(int, data.attrib.get('viewedLeafCount'))
|
2021-05-10 04:17:37 +00:00
|
|
|
self.year = utils.cast(int, data.attrib.get('year'))
|
2016-12-16 23:38:08 +00:00
|
|
|
|
2020-12-23 23:53:42 +00:00
|
|
|
def __iter__(self):
|
|
|
|
for episode in self.episodes():
|
|
|
|
yield episode
|
|
|
|
|
2017-02-07 06:20:49 +00:00
|
|
|
def __repr__(self):
|
2022-11-08 21:40:18 +00:00
|
|
|
return '<{}>'.format(
|
|
|
|
':'.join([p for p in [
|
|
|
|
self.__class__.__name__,
|
|
|
|
self.key.replace('/library/metadata/', '').replace('/children', ''),
|
|
|
|
f"{self.parentTitle.replace(' ', '-')[:20]}-{self.seasonNumber}",
|
|
|
|
] if p])
|
|
|
|
)
|
2017-02-07 06:20:49 +00:00
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
@property
|
2022-08-26 19:14:24 +00:00
|
|
|
def isPlayed(self):
|
|
|
|
""" Returns True if the season is fully played. """
|
2016-03-21 04:26:02 +00:00
|
|
|
return bool(self.viewedLeafCount == self.leafCount)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2016-05-20 03:42:06 +00:00
|
|
|
@property
|
|
|
|
def seasonNumber(self):
|
2021-05-11 00:56:06 +00:00
|
|
|
""" Returns the season number. """
|
2016-05-20 03:42:06 +00:00
|
|
|
return self.index
|
|
|
|
|
2017-02-09 04:08:25 +00:00
|
|
|
def episodes(self, **kwargs):
|
2020-12-23 23:53:42 +00:00
|
|
|
""" Returns a list of :class:`~plexapi.video.Episode` objects in the season. """
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/children'
|
2020-12-24 05:38:48 +00:00
|
|
|
return self.fetchItems(key, Episode, **kwargs)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
def episode(self, title=None, episode=None):
|
2017-02-07 06:20:49 +00:00
|
|
|
""" Returns the episode with the given title or number.
|
2017-01-02 21:06:40 +00:00
|
|
|
|
2017-02-14 04:32:27 +00:00
|
|
|
Parameters:
|
2017-02-07 06:20:49 +00:00
|
|
|
title (str): Title of the episode to return.
|
2020-12-24 05:38:48 +00:00
|
|
|
episode (int): Episode number (default: None; required if title not specified).
|
|
|
|
|
|
|
|
Raises:
|
|
|
|
:exc:`~plexapi.exceptions.BadRequest`: If title or episode parameter is missing.
|
2016-12-16 23:38:08 +00:00
|
|
|
"""
|
2022-07-21 02:37:48 +00:00
|
|
|
key = f'{self.key}/children'
|
2021-04-24 18:49:36 +00:00
|
|
|
if title is not None and not isinstance(title, int):
|
2020-12-24 05:38:48 +00:00
|
|
|
return self.fetchItem(key, Episode, title__iexact=title)
|
2021-04-24 18:49:36 +00:00
|
|
|
elif episode is not None or isinstance(title, int):
|
|
|
|
if isinstance(title, int):
|
|
|
|
index = title
|
|
|
|
else:
|
|
|
|
index = episode
|
|
|
|
return self.fetchItem(key, Episode, parentIndex=self.index, index=index)
|
2020-12-24 05:38:48 +00:00
|
|
|
raise BadRequest('Missing argument: title or episode is required')
|
2017-01-04 20:38:04 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
def get(self, title=None, episode=None):
|
2020-11-23 03:06:30 +00:00
|
|
|
""" Alias to :func:`~plexapi.video.Season.episode`. """
|
2017-02-13 19:38:40 +00:00
|
|
|
return self.episode(title, episode)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2021-01-24 20:49:32 +00:00
|
|
|
def onDeck(self):
|
|
|
|
""" Returns season's On Deck :class:`~plexapi.video.Video` object or `None`.
|
|
|
|
Will only return a match if the show's On Deck episode is in this season.
|
|
|
|
"""
|
|
|
|
data = self._server.query(self._details_key)
|
2021-05-25 00:28:11 +00:00
|
|
|
return next(iter(self.findItems(data, rtag='OnDeck')), None)
|
2021-01-24 20:49:32 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def show(self):
|
2020-12-23 23:53:42 +00:00
|
|
|
""" Return the season's :class:`~plexapi.video.Show`. """
|
2022-05-30 16:01:55 +00:00
|
|
|
return self.fetchItem(self.parentKey)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2015-06-02 02:55:20 +00:00
|
|
|
def watched(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Returns list of watched :class:`~plexapi.video.Episode` objects. """
|
2021-03-02 01:54:19 +00:00
|
|
|
return self.episodes(viewCount__gt=0)
|
2015-06-02 02:55:20 +00:00
|
|
|
|
|
|
|
def unwatched(self):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Returns list of unwatched :class:`~plexapi.video.Episode` objects. """
|
2021-03-02 01:54:19 +00:00
|
|
|
return self.episodes(viewCount=0)
|
2015-06-02 02:55:20 +00:00
|
|
|
|
2019-01-07 13:04:53 +00:00
|
|
|
def download(self, savepath=None, keep_original_name=False, **kwargs):
|
2021-11-20 22:16:58 +00:00
|
|
|
""" Download all episodes from the season. See :func:`~plexapi.base.Playable.download` for details.
|
2017-02-18 00:51:06 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
Parameters:
|
|
|
|
savepath (str): Defaults to current working dir.
|
2021-11-20 22:16:58 +00:00
|
|
|
keep_original_name (bool): True to keep the original filename otherwise
|
|
|
|
a friendlier filename is generated.
|
2020-11-23 03:06:30 +00:00
|
|
|
**kwargs: Additional options passed into :func:`~plexapi.base.PlexObject.getStreamURL`.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
2017-02-27 04:59:46 +00:00
|
|
|
filepaths = []
|
|
|
|
for episode in self.episodes():
|
2019-01-07 13:04:53 +00:00
|
|
|
filepaths += episode.download(savepath, keep_original_name, **kwargs)
|
2017-02-27 04:59:46 +00:00
|
|
|
return filepaths
|
2017-01-05 21:58:43 +00:00
|
|
|
|
2018-09-08 15:25:16 +00:00
|
|
|
def _defaultSyncTitle(self):
|
|
|
|
""" Returns str, default title for a new syncItem. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f'{self.parentTitle} - {self.title}'
|
2018-09-08 15:25:16 +00:00
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2017-02-13 02:55:55 +00:00
|
|
|
@utils.registerPlexObject
|
2022-02-27 05:40:51 +00:00
|
|
|
class Episode(
|
|
|
|
Video, Playable,
|
2022-02-27 06:04:18 +00:00
|
|
|
ExtrasMixin, RatingMixin,
|
2022-02-27 05:40:51 +00:00
|
|
|
ArtMixin, PosterMixin, ThemeUrlMixin,
|
|
|
|
ContentRatingMixin, OriginallyAvailableMixin, SortTitleMixin, SummaryMixin, TitleMixin,
|
|
|
|
CollectionMixin, DirectorMixin, LabelMixin, WriterMixin
|
|
|
|
):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Represents a single Shows Episode.
|
2017-02-18 00:51:06 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
Attributes:
|
2018-03-02 17:43:31 +00:00
|
|
|
TAG (str): 'Video'
|
2017-02-13 19:38:40 +00:00
|
|
|
TYPE (str): 'episode'
|
2021-03-11 17:19:54 +00:00
|
|
|
audienceRating (float): Audience rating (TMDB or TVDB).
|
|
|
|
audienceRatingImage (str): Key to audience rating image (tmdb://image.rating).
|
2020-12-23 23:53:42 +00:00
|
|
|
chapters (List<:class:`~plexapi.media.Chapter`>): List of Chapter objects.
|
|
|
|
chapterSource (str): Chapter source (agent; media; mixed).
|
2021-05-09 19:24:55 +00:00
|
|
|
collections (List<:class:`~plexapi.media.Collection`>): List of collection objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
contentRating (str) Content rating (PG-13; NR; TV-G).
|
|
|
|
directors (List<:class:`~plexapi.media.Director`>): List of director objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
duration (int): Duration of the episode in milliseconds.
|
|
|
|
grandparentArt (str): URL to show artwork (/library/metadata/<grandparentRatingKey>/art/<artid>).
|
|
|
|
grandparentGuid (str): Plex GUID for the show (plex://show/5d9c086fe9d5a1001f4d9fe6).
|
|
|
|
grandparentKey (str): API URL of the show (/library/metadata/<grandparentRatingKey>).
|
|
|
|
grandparentRatingKey (int): Unique key identifying the show.
|
|
|
|
grandparentTheme (str): URL to show theme resource (/library/metadata/<grandparentRatingkey>/theme/<themeid>).
|
|
|
|
grandparentThumb (str): URL to show thumbnail image (/library/metadata/<grandparentRatingKey>/thumb/<thumbid>).
|
|
|
|
grandparentTitle (str): Name of the show for the episode.
|
2021-03-11 17:19:54 +00:00
|
|
|
guids (List<:class:`~plexapi.media.Guid`>): List of guid objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
index (int): Episode number.
|
2022-02-27 01:32:18 +00:00
|
|
|
labels (List<:class:`~plexapi.media.Label`>): List of label objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
markers (List<:class:`~plexapi.media.Marker`>): List of marker objects.
|
2017-02-13 19:38:40 +00:00
|
|
|
media (List<:class:`~plexapi.media.Media`>): List of media objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
originallyAvailableAt (datetime): Datetime the episode was released.
|
|
|
|
parentGuid (str): Plex GUID for the season (plex://season/5d9c09e42df347001e3c2a72).
|
|
|
|
parentIndex (int): Season number of episode.
|
|
|
|
parentKey (str): API URL of the season (/library/metadata/<parentRatingKey>).
|
|
|
|
parentRatingKey (int): Unique key identifying the season.
|
|
|
|
parentThumb (str): URL to season thumbnail image (/library/metadata/<parentRatingKey>/thumb/<thumbid>).
|
|
|
|
parentTitle (str): Name of the season for the episode.
|
2021-05-10 04:17:37 +00:00
|
|
|
parentYear (int): Year the season was released.
|
2021-07-27 01:36:54 +00:00
|
|
|
producers (List<:class:`~plexapi.media.Producer`>): List of producers objects.
|
2020-12-23 23:53:42 +00:00
|
|
|
rating (float): Episode rating (7.9; 9.8; 8.1).
|
2022-12-21 19:43:52 +00:00
|
|
|
ratings (List<:class:`~plexapi.media.Rating`>): List of rating objects.
|
2021-07-27 01:36:54 +00:00
|
|
|
roles (List<:class:`~plexapi.media.Role`>): List of role objects.
|
2021-02-05 02:56:21 +00:00
|
|
|
skipParent (bool): True if the show's seasons are set to hidden.
|
2020-12-23 23:53:42 +00:00
|
|
|
viewOffset (int): View offset in milliseconds.
|
2017-02-13 19:38:40 +00:00
|
|
|
writers (List<:class:`~plexapi.media.Writer`>): List of writers objects.
|
2021-05-10 04:17:37 +00:00
|
|
|
year (int): Year the episode was released.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
2017-02-13 02:55:55 +00:00
|
|
|
TAG = 'Video'
|
2014-12-29 03:21:58 +00:00
|
|
|
TYPE = 'episode'
|
2018-09-08 15:25:16 +00:00
|
|
|
METADATA_TYPE = 'episode'
|
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def _loadData(self, data):
|
2017-02-13 19:38:40 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2016-04-07 05:39:04 +00:00
|
|
|
Video._loadData(self, data)
|
|
|
|
Playable._loadData(self, data)
|
2017-02-06 04:52:10 +00:00
|
|
|
self._seasonNumber = None # cached season number
|
2021-03-11 17:19:54 +00:00
|
|
|
self.audienceRating = utils.cast(float, data.attrib.get('audienceRating'))
|
|
|
|
self.audienceRatingImage = data.attrib.get('audienceRatingImage')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.chapters = self.findItems(data, media.Chapter)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.chapterSource = data.attrib.get('chapterSource')
|
2021-05-09 19:24:55 +00:00
|
|
|
self.collections = self.findItems(data, media.Collection)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.contentRating = data.attrib.get('contentRating')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.directors = self.findItems(data, media.Director)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.duration = utils.cast(int, data.attrib.get('duration'))
|
|
|
|
self.grandparentArt = data.attrib.get('grandparentArt')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.grandparentGuid = data.attrib.get('grandparentGuid')
|
2017-02-04 17:43:50 +00:00
|
|
|
self.grandparentKey = data.attrib.get('grandparentKey')
|
|
|
|
self.grandparentRatingKey = utils.cast(int, data.attrib.get('grandparentRatingKey'))
|
|
|
|
self.grandparentTheme = data.attrib.get('grandparentTheme')
|
|
|
|
self.grandparentThumb = data.attrib.get('grandparentThumb')
|
|
|
|
self.grandparentTitle = data.attrib.get('grandparentTitle')
|
2021-03-11 17:19:54 +00:00
|
|
|
self.guids = self.findItems(data, media.Guid)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.index = utils.cast(int, data.attrib.get('index'))
|
2022-02-27 01:32:18 +00:00
|
|
|
self.labels = self.findItems(data, media.Label)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.markers = self.findItems(data, media.Marker)
|
|
|
|
self.media = self.findItems(data, media.Media)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.originallyAvailableAt = utils.toDatetime(data.attrib.get('originallyAvailableAt'), '%Y-%m-%d')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.parentGuid = data.attrib.get('parentGuid')
|
|
|
|
self.parentIndex = utils.cast(int, data.attrib.get('parentIndex'))
|
2017-02-04 17:43:50 +00:00
|
|
|
self.parentKey = data.attrib.get('parentKey')
|
|
|
|
self.parentRatingKey = utils.cast(int, data.attrib.get('parentRatingKey'))
|
|
|
|
self.parentThumb = data.attrib.get('parentThumb')
|
2017-09-16 02:06:00 +00:00
|
|
|
self.parentTitle = data.attrib.get('parentTitle')
|
2021-05-10 04:17:37 +00:00
|
|
|
self.parentYear = utils.cast(int, data.attrib.get('parentYear'))
|
2021-07-27 01:36:54 +00:00
|
|
|
self.producers = self.findItems(data, media.Producer)
|
2017-02-04 17:43:50 +00:00
|
|
|
self.rating = utils.cast(float, data.attrib.get('rating'))
|
2022-12-21 19:43:52 +00:00
|
|
|
self.ratings = self.findItems(data, media.Rating)
|
2021-07-27 01:36:54 +00:00
|
|
|
self.roles = self.findItems(data, media.Role)
|
2021-02-05 02:56:21 +00:00
|
|
|
self.skipParent = utils.cast(bool, data.attrib.get('skipParent', '0'))
|
2016-03-17 04:51:20 +00:00
|
|
|
self.viewOffset = utils.cast(int, data.attrib.get('viewOffset', 0))
|
2017-02-13 02:55:55 +00:00
|
|
|
self.writers = self.findItems(data, media.Writer)
|
2020-12-23 23:53:42 +00:00
|
|
|
self.year = utils.cast(int, data.attrib.get('year'))
|
2016-03-21 04:26:02 +00:00
|
|
|
|
2021-02-05 02:56:21 +00:00
|
|
|
# If seasons are hidden, parentKey and parentRatingKey are missing from the XML response.
|
|
|
|
# https://forums.plex.tv/t/parentratingkey-not-in-episode-xml-when-seasons-are-hidden/300553
|
|
|
|
if self.skipParent and not self.parentRatingKey:
|
|
|
|
# Parse the parentRatingKey from the parentThumb
|
2021-03-22 19:35:07 +00:00
|
|
|
if self.parentThumb and self.parentThumb.startswith('/library/metadata/'):
|
2021-02-05 02:56:21 +00:00
|
|
|
self.parentRatingKey = utils.cast(int, self.parentThumb.split('/')[3])
|
|
|
|
# Get the parentRatingKey from the season's ratingKey
|
|
|
|
if not self.parentRatingKey and self.grandparentRatingKey:
|
|
|
|
self.parentRatingKey = self.show().season(season=self.parentIndex).ratingKey
|
|
|
|
if self.parentRatingKey:
|
2022-08-28 05:56:01 +00:00
|
|
|
self.parentKey = f'/library/metadata/{self.parentRatingKey}'
|
2021-02-05 02:56:21 +00:00
|
|
|
|
2017-01-05 21:58:43 +00:00
|
|
|
def __repr__(self):
|
2022-11-08 21:40:18 +00:00
|
|
|
return '<{}>'.format(
|
|
|
|
':'.join([p for p in [
|
|
|
|
self.__class__.__name__,
|
|
|
|
self.key.replace('/library/metadata/', '').replace('/children', ''),
|
|
|
|
f"{self.grandparentTitle.replace(' ', '-')[:20]}-{self.seasonEpisode}",
|
|
|
|
] if p])
|
|
|
|
)
|
2017-01-05 21:58:43 +00:00
|
|
|
|
2017-02-13 19:38:40 +00:00
|
|
|
def _prettyfilename(self):
|
2021-11-20 22:16:58 +00:00
|
|
|
""" Returns a filename for use in download. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f'{self.grandparentTitle} - {self.seasonEpisode} - {self.title}'
|
2017-02-13 19:38:40 +00:00
|
|
|
|
2021-07-27 01:36:54 +00:00
|
|
|
@property
|
|
|
|
def actors(self):
|
|
|
|
""" Alias to self.roles. """
|
|
|
|
return self.roles
|
|
|
|
|
2016-03-21 04:26:02 +00:00
|
|
|
@property
|
2017-02-13 19:38:40 +00:00
|
|
|
def locations(self):
|
|
|
|
""" This does not exist in plex xml response but is added to have a common
|
2020-12-23 23:53:42 +00:00
|
|
|
interface to get the locations of the episode.
|
2020-12-24 04:40:08 +00:00
|
|
|
|
2021-04-14 12:02:04 +00:00
|
|
|
Returns:
|
2020-12-24 04:40:08 +00:00
|
|
|
List<str> of file paths where the episode is found on disk.
|
2017-02-13 19:38:40 +00:00
|
|
|
"""
|
|
|
|
return [part.file for part in self.iterParts() if part]
|
2014-12-29 03:21:58 +00:00
|
|
|
|
2021-05-11 00:56:06 +00:00
|
|
|
@property
|
|
|
|
def episodeNumber(self):
|
|
|
|
""" Returns the episode number. """
|
|
|
|
return self.index
|
|
|
|
|
2016-05-20 03:42:06 +00:00
|
|
|
@property
|
|
|
|
def seasonNumber(self):
|
2021-05-11 00:56:06 +00:00
|
|
|
""" Returns the episode's season number. """
|
2016-05-20 03:42:06 +00:00
|
|
|
if self._seasonNumber is None:
|
2022-05-30 16:01:55 +00:00
|
|
|
self._seasonNumber = self.parentIndex if isinstance(self.parentIndex, int) else self.season().seasonNumber
|
2017-01-04 20:38:04 +00:00
|
|
|
return utils.cast(int, self._seasonNumber)
|
2016-05-20 03:42:06 +00:00
|
|
|
|
2017-08-15 03:40:28 +00:00
|
|
|
@property
|
|
|
|
def seasonEpisode(self):
|
2021-05-11 00:56:06 +00:00
|
|
|
""" Returns the s00e00 string containing the season and episode numbers. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f's{str(self.seasonNumber).zfill(2)}e{str(self.episodeNumber).zfill(2)}'
|
2017-08-15 03:40:28 +00:00
|
|
|
|
2021-07-27 01:36:54 +00:00
|
|
|
@property
|
|
|
|
def hasCommercialMarker(self):
|
2023-03-09 21:32:17 +00:00
|
|
|
""" Returns True if the episode has a commercial marker. """
|
2021-07-27 01:36:54 +00:00
|
|
|
return any(marker.type == 'commercial' for marker in self.markers)
|
|
|
|
|
2020-05-25 02:57:02 +00:00
|
|
|
@property
|
|
|
|
def hasIntroMarker(self):
|
2023-03-09 21:32:17 +00:00
|
|
|
""" Returns True if the episode has an intro marker. """
|
2020-05-27 16:26:54 +00:00
|
|
|
return any(marker.type == 'intro' for marker in self.markers)
|
2020-05-25 02:57:02 +00:00
|
|
|
|
2023-03-09 21:32:17 +00:00
|
|
|
@property
|
|
|
|
def hasCreditsMarker(self):
|
|
|
|
""" Returns True if the episode has a credits marker. """
|
|
|
|
return any(marker.type == 'credits' for marker in self.markers)
|
|
|
|
|
2021-05-11 01:06:50 +00:00
|
|
|
@property
|
|
|
|
def hasPreviewThumbnails(self):
|
|
|
|
""" Returns True if any of the media parts has generated preview (BIF) thumbnails. """
|
|
|
|
return any(part.hasPreviewThumbnails for media in self.media for part in media.parts)
|
|
|
|
|
2014-12-29 03:21:58 +00:00
|
|
|
def season(self):
|
2020-12-23 23:53:42 +00:00
|
|
|
"""" Return the episode's :class:`~plexapi.video.Season`. """
|
2017-02-07 06:20:49 +00:00
|
|
|
return self.fetchItem(self.parentKey)
|
2014-12-29 03:21:58 +00:00
|
|
|
|
|
|
|
def show(self):
|
2020-12-23 23:53:42 +00:00
|
|
|
"""" Return the episode's :class:`~plexapi.video.Show`. """
|
2022-05-30 16:01:55 +00:00
|
|
|
return self.fetchItem(self.grandparentKey)
|
2018-09-08 15:25:16 +00:00
|
|
|
|
|
|
|
def _defaultSyncTitle(self):
|
|
|
|
""" Returns str, default title for a new syncItem. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f'{self.grandparentTitle} - {self.parentTitle} - ({self.seasonEpisode}) {self.title}'
|
2019-12-05 18:02:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
@utils.registerPlexObject
|
2022-02-27 05:40:51 +00:00
|
|
|
class Clip(
|
|
|
|
Video, Playable,
|
|
|
|
ArtUrlMixin, PosterUrlMixin
|
|
|
|
):
|
2021-02-15 04:06:49 +00:00
|
|
|
""" Represents a single Clip.
|
2020-08-20 15:08:47 +00:00
|
|
|
|
2020-12-23 23:53:42 +00:00
|
|
|
Attributes:
|
|
|
|
TAG (str): 'Video'
|
|
|
|
TYPE (str): 'clip'
|
|
|
|
duration (int): Duration of the clip in milliseconds.
|
|
|
|
extraType (int): Unknown.
|
|
|
|
index (int): Plex index number for the clip.
|
|
|
|
media (List<:class:`~plexapi.media.Media`>): List of media objects.
|
|
|
|
originallyAvailableAt (datetime): Datetime the clip was released.
|
|
|
|
skipDetails (int): Unknown.
|
|
|
|
subtype (str): Type of clip (trailer, behindTheScenes, sceneOrSample, etc.).
|
|
|
|
thumbAspectRatio (str): Aspect ratio of the thumbnail image.
|
|
|
|
viewOffset (int): View offset in milliseconds.
|
|
|
|
year (int): Year clip was released.
|
2020-08-20 15:08:47 +00:00
|
|
|
"""
|
2019-12-05 18:02:50 +00:00
|
|
|
TAG = 'Video'
|
|
|
|
TYPE = 'clip'
|
|
|
|
METADATA_TYPE = 'clip'
|
|
|
|
|
|
|
|
def _loadData(self, data):
|
2021-02-15 04:06:49 +00:00
|
|
|
""" Load attribute values from Plex XML response. """
|
2020-08-20 15:08:47 +00:00
|
|
|
Video._loadData(self, data)
|
|
|
|
Playable._loadData(self, data)
|
2020-12-23 23:53:42 +00:00
|
|
|
self._data = data
|
2021-06-06 23:40:25 +00:00
|
|
|
self.addedAt = utils.toDatetime(data.attrib.get('addedAt'))
|
2020-08-20 15:08:47 +00:00
|
|
|
self.duration = utils.cast(int, data.attrib.get('duration'))
|
|
|
|
self.extraType = utils.cast(int, data.attrib.get('extraType'))
|
|
|
|
self.index = utils.cast(int, data.attrib.get('index'))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.media = self.findItems(data, media.Media)
|
2021-06-06 23:40:25 +00:00
|
|
|
self.originallyAvailableAt = utils.toDatetime(
|
|
|
|
data.attrib.get('originallyAvailableAt'), '%Y-%m-%d')
|
2020-12-23 23:53:42 +00:00
|
|
|
self.skipDetails = utils.cast(int, data.attrib.get('skipDetails'))
|
2019-12-05 18:02:50 +00:00
|
|
|
self.subtype = data.attrib.get('subtype')
|
|
|
|
self.thumbAspectRatio = data.attrib.get('thumbAspectRatio')
|
2020-08-30 05:11:26 +00:00
|
|
|
self.viewOffset = utils.cast(int, data.attrib.get('viewOffset', 0))
|
2020-12-23 23:53:42 +00:00
|
|
|
self.year = utils.cast(int, data.attrib.get('year'))
|
2021-06-06 23:40:25 +00:00
|
|
|
|
2020-12-23 23:53:42 +00:00
|
|
|
@property
|
|
|
|
def locations(self):
|
|
|
|
""" This does not exist in plex xml response but is added to have a common
|
|
|
|
interface to get the locations of the clip.
|
2021-04-14 12:02:04 +00:00
|
|
|
|
|
|
|
Returns:
|
2020-12-24 04:40:08 +00:00
|
|
|
List<str> of file paths where the clip is found on disk.
|
2020-12-23 23:53:42 +00:00
|
|
|
"""
|
|
|
|
return [part.file for part in self.iterParts() if part]
|
2020-08-30 05:11:26 +00:00
|
|
|
|
2021-06-07 00:50:35 +00:00
|
|
|
def _prettyfilename(self):
|
2021-11-20 22:16:58 +00:00
|
|
|
""" Returns a filename for use in download. """
|
2021-06-07 00:50:35 +00:00
|
|
|
return self.title
|
|
|
|
|
2020-07-15 18:41:52 +00:00
|
|
|
|
|
|
|
class Extra(Clip):
|
2021-06-06 23:40:25 +00:00
|
|
|
""" Represents a single Extra (trailer, behindTheScenes, etc). """
|
2020-07-15 18:41:52 +00:00
|
|
|
|
|
|
|
def _loadData(self, data):
|
|
|
|
""" Load attribute values from Plex XML response. """
|
2021-06-06 23:40:25 +00:00
|
|
|
super(Extra, self)._loadData(data)
|
|
|
|
parent = self._parent()
|
|
|
|
self.librarySectionID = parent.librarySectionID
|
|
|
|
self.librarySectionKey = parent.librarySectionKey
|
|
|
|
self.librarySectionTitle = parent.librarySectionTitle
|
2021-06-07 00:50:35 +00:00
|
|
|
|
|
|
|
def _prettyfilename(self):
|
2021-11-20 22:16:58 +00:00
|
|
|
""" Returns a filename for use in download. """
|
2022-08-28 05:56:01 +00:00
|
|
|
return f'{self.title} ({self.subtype})'
|
2022-07-21 03:03:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
@utils.registerPlexObject
|
|
|
|
class MovieSession(PlexSession, Movie):
|
|
|
|
""" Represents a single Movie session
|
|
|
|
loaded from :func:`~plexapi.server.PlexServer.sessions`.
|
|
|
|
"""
|
|
|
|
_SESSIONTYPE = True
|
|
|
|
|
|
|
|
def _loadData(self, data):
|
|
|
|
""" Load attribute values from Plex XML response. """
|
|
|
|
Movie._loadData(self, data)
|
|
|
|
PlexSession._loadData(self, data)
|
|
|
|
|
|
|
|
|
|
|
|
@utils.registerPlexObject
|
|
|
|
class EpisodeSession(PlexSession, Episode):
|
|
|
|
""" Represents a single Episode session
|
|
|
|
loaded from :func:`~plexapi.server.PlexServer.sessions`.
|
|
|
|
"""
|
|
|
|
_SESSIONTYPE = True
|
|
|
|
|
|
|
|
def _loadData(self, data):
|
|
|
|
""" Load attribute values from Plex XML response. """
|
|
|
|
Episode._loadData(self, data)
|
|
|
|
PlexSession._loadData(self, data)
|
|
|
|
|
|
|
|
|
|
|
|
@utils.registerPlexObject
|
|
|
|
class ClipSession(PlexSession, Clip):
|
|
|
|
""" Represents a single Clip session
|
|
|
|
loaded from :func:`~plexapi.server.PlexServer.sessions`.
|
|
|
|
"""
|
|
|
|
_SESSIONTYPE = True
|
|
|
|
|
|
|
|
def _loadData(self, data):
|
|
|
|
""" Load attribute values from Plex XML response. """
|
|
|
|
Clip._loadData(self, data)
|
|
|
|
PlexSession._loadData(self, data)
|