mirror of
https://github.com/LukeHagar/plexpy.git
synced 2025-12-06 04:20:52 +00:00
403 lines
15 KiB
Python
403 lines
15 KiB
Python
"""Code generated by Speakeasy (https://speakeasy.com). DO NOT EDIT."""
|
|
|
|
from .basesdk import BaseSDK
|
|
from plex_api_client import utils
|
|
from plex_api_client._hooks import HookContext
|
|
from plex_api_client.models import errors, operations
|
|
from plex_api_client.types import BaseModel, OptionalNullable, UNSET
|
|
from typing import Any, Optional, Union, cast
|
|
|
|
|
|
class Video(BaseSDK):
|
|
r"""API Calls that perform operations with Plex Media Server Videos"""
|
|
|
|
def get_timeline(
|
|
self,
|
|
*,
|
|
request: Union[
|
|
operations.GetTimelineRequest, operations.GetTimelineRequestTypedDict
|
|
],
|
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
server_url: Optional[str] = None,
|
|
timeout_ms: Optional[int] = None,
|
|
) -> operations.GetTimelineResponse:
|
|
r"""Get the timeline for a media item
|
|
|
|
Get the timeline for a media item
|
|
|
|
:param request: The request object to send.
|
|
:param retries: Override the default retry configuration for this method
|
|
:param server_url: Override the default server URL for this method
|
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
"""
|
|
base_url = None
|
|
url_variables = None
|
|
if timeout_ms is None:
|
|
timeout_ms = self.sdk_configuration.timeout_ms
|
|
|
|
if server_url is not None:
|
|
base_url = server_url
|
|
|
|
if not isinstance(request, BaseModel):
|
|
request = utils.unmarshal(request, operations.GetTimelineRequest)
|
|
request = cast(operations.GetTimelineRequest, request)
|
|
|
|
req = self.build_request(
|
|
method="GET",
|
|
path="/:/timeline",
|
|
base_url=base_url,
|
|
url_variables=url_variables,
|
|
request=request,
|
|
request_body_required=False,
|
|
request_has_path_params=False,
|
|
request_has_query_params=True,
|
|
user_agent_header="user-agent",
|
|
accept_header_value="application/json",
|
|
security=self.sdk_configuration.security,
|
|
timeout_ms=timeout_ms,
|
|
)
|
|
|
|
if retries == UNSET:
|
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
retries = self.sdk_configuration.retry_config
|
|
|
|
retry_config = None
|
|
if isinstance(retries, utils.RetryConfig):
|
|
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
|
|
http_res = self.do_request(
|
|
hook_ctx=HookContext(
|
|
operation_id="getTimeline",
|
|
oauth2_scopes=[],
|
|
security_source=self.sdk_configuration.security,
|
|
),
|
|
request=req,
|
|
error_status_codes=["400", "401", "4XX", "5XX"],
|
|
retry_config=retry_config,
|
|
)
|
|
|
|
data: Any = None
|
|
if utils.match_response(http_res, "200", "*"):
|
|
return operations.GetTimelineResponse(
|
|
status_code=http_res.status_code,
|
|
content_type=http_res.headers.get("Content-Type") or "",
|
|
raw_response=http_res,
|
|
)
|
|
if utils.match_response(http_res, "400", "application/json"):
|
|
data = utils.unmarshal_json(http_res.text, errors.GetTimelineBadRequestData)
|
|
data.raw_response = http_res
|
|
raise errors.GetTimelineBadRequest(data=data)
|
|
if utils.match_response(http_res, "401", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.GetTimelineUnauthorizedData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.GetTimelineUnauthorized(data=data)
|
|
if utils.match_response(http_res, ["4XX", "5XX"], "*"):
|
|
raise errors.SDKError(
|
|
"API error occurred", http_res.status_code, http_res.text, http_res
|
|
)
|
|
|
|
content_type = http_res.headers.get("Content-Type")
|
|
raise errors.SDKError(
|
|
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
http_res.status_code,
|
|
http_res.text,
|
|
http_res,
|
|
)
|
|
|
|
async def get_timeline_async(
|
|
self,
|
|
*,
|
|
request: Union[
|
|
operations.GetTimelineRequest, operations.GetTimelineRequestTypedDict
|
|
],
|
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
server_url: Optional[str] = None,
|
|
timeout_ms: Optional[int] = None,
|
|
) -> operations.GetTimelineResponse:
|
|
r"""Get the timeline for a media item
|
|
|
|
Get the timeline for a media item
|
|
|
|
:param request: The request object to send.
|
|
:param retries: Override the default retry configuration for this method
|
|
:param server_url: Override the default server URL for this method
|
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
"""
|
|
base_url = None
|
|
url_variables = None
|
|
if timeout_ms is None:
|
|
timeout_ms = self.sdk_configuration.timeout_ms
|
|
|
|
if server_url is not None:
|
|
base_url = server_url
|
|
|
|
if not isinstance(request, BaseModel):
|
|
request = utils.unmarshal(request, operations.GetTimelineRequest)
|
|
request = cast(operations.GetTimelineRequest, request)
|
|
|
|
req = self.build_request_async(
|
|
method="GET",
|
|
path="/:/timeline",
|
|
base_url=base_url,
|
|
url_variables=url_variables,
|
|
request=request,
|
|
request_body_required=False,
|
|
request_has_path_params=False,
|
|
request_has_query_params=True,
|
|
user_agent_header="user-agent",
|
|
accept_header_value="application/json",
|
|
security=self.sdk_configuration.security,
|
|
timeout_ms=timeout_ms,
|
|
)
|
|
|
|
if retries == UNSET:
|
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
retries = self.sdk_configuration.retry_config
|
|
|
|
retry_config = None
|
|
if isinstance(retries, utils.RetryConfig):
|
|
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
|
|
http_res = await self.do_request_async(
|
|
hook_ctx=HookContext(
|
|
operation_id="getTimeline",
|
|
oauth2_scopes=[],
|
|
security_source=self.sdk_configuration.security,
|
|
),
|
|
request=req,
|
|
error_status_codes=["400", "401", "4XX", "5XX"],
|
|
retry_config=retry_config,
|
|
)
|
|
|
|
data: Any = None
|
|
if utils.match_response(http_res, "200", "*"):
|
|
return operations.GetTimelineResponse(
|
|
status_code=http_res.status_code,
|
|
content_type=http_res.headers.get("Content-Type") or "",
|
|
raw_response=http_res,
|
|
)
|
|
if utils.match_response(http_res, "400", "application/json"):
|
|
data = utils.unmarshal_json(http_res.text, errors.GetTimelineBadRequestData)
|
|
data.raw_response = http_res
|
|
raise errors.GetTimelineBadRequest(data=data)
|
|
if utils.match_response(http_res, "401", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.GetTimelineUnauthorizedData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.GetTimelineUnauthorized(data=data)
|
|
if utils.match_response(http_res, ["4XX", "5XX"], "*"):
|
|
raise errors.SDKError(
|
|
"API error occurred", http_res.status_code, http_res.text, http_res
|
|
)
|
|
|
|
content_type = http_res.headers.get("Content-Type")
|
|
raise errors.SDKError(
|
|
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
http_res.status_code,
|
|
http_res.text,
|
|
http_res,
|
|
)
|
|
|
|
def start_universal_transcode(
|
|
self,
|
|
*,
|
|
request: Union[
|
|
operations.StartUniversalTranscodeRequest,
|
|
operations.StartUniversalTranscodeRequestTypedDict,
|
|
],
|
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
server_url: Optional[str] = None,
|
|
timeout_ms: Optional[int] = None,
|
|
) -> operations.StartUniversalTranscodeResponse:
|
|
r"""Start Universal Transcode
|
|
|
|
Begin a Universal Transcode Session
|
|
|
|
:param request: The request object to send.
|
|
:param retries: Override the default retry configuration for this method
|
|
:param server_url: Override the default server URL for this method
|
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
"""
|
|
base_url = None
|
|
url_variables = None
|
|
if timeout_ms is None:
|
|
timeout_ms = self.sdk_configuration.timeout_ms
|
|
|
|
if server_url is not None:
|
|
base_url = server_url
|
|
|
|
if not isinstance(request, BaseModel):
|
|
request = utils.unmarshal(
|
|
request, operations.StartUniversalTranscodeRequest
|
|
)
|
|
request = cast(operations.StartUniversalTranscodeRequest, request)
|
|
|
|
req = self.build_request(
|
|
method="GET",
|
|
path="/video/:/transcode/universal/start.mpd",
|
|
base_url=base_url,
|
|
url_variables=url_variables,
|
|
request=request,
|
|
request_body_required=False,
|
|
request_has_path_params=False,
|
|
request_has_query_params=True,
|
|
user_agent_header="user-agent",
|
|
accept_header_value="application/json",
|
|
security=self.sdk_configuration.security,
|
|
timeout_ms=timeout_ms,
|
|
)
|
|
|
|
if retries == UNSET:
|
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
retries = self.sdk_configuration.retry_config
|
|
|
|
retry_config = None
|
|
if isinstance(retries, utils.RetryConfig):
|
|
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
|
|
http_res = self.do_request(
|
|
hook_ctx=HookContext(
|
|
operation_id="startUniversalTranscode",
|
|
oauth2_scopes=[],
|
|
security_source=self.sdk_configuration.security,
|
|
),
|
|
request=req,
|
|
error_status_codes=["400", "401", "4XX", "5XX"],
|
|
retry_config=retry_config,
|
|
)
|
|
|
|
data: Any = None
|
|
if utils.match_response(http_res, "200", "*"):
|
|
return operations.StartUniversalTranscodeResponse(
|
|
status_code=http_res.status_code,
|
|
content_type=http_res.headers.get("Content-Type") or "",
|
|
raw_response=http_res,
|
|
)
|
|
if utils.match_response(http_res, "400", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.StartUniversalTranscodeBadRequestData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.StartUniversalTranscodeBadRequest(data=data)
|
|
if utils.match_response(http_res, "401", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.StartUniversalTranscodeUnauthorizedData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.StartUniversalTranscodeUnauthorized(data=data)
|
|
if utils.match_response(http_res, ["4XX", "5XX"], "*"):
|
|
raise errors.SDKError(
|
|
"API error occurred", http_res.status_code, http_res.text, http_res
|
|
)
|
|
|
|
content_type = http_res.headers.get("Content-Type")
|
|
raise errors.SDKError(
|
|
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
http_res.status_code,
|
|
http_res.text,
|
|
http_res,
|
|
)
|
|
|
|
async def start_universal_transcode_async(
|
|
self,
|
|
*,
|
|
request: Union[
|
|
operations.StartUniversalTranscodeRequest,
|
|
operations.StartUniversalTranscodeRequestTypedDict,
|
|
],
|
|
retries: OptionalNullable[utils.RetryConfig] = UNSET,
|
|
server_url: Optional[str] = None,
|
|
timeout_ms: Optional[int] = None,
|
|
) -> operations.StartUniversalTranscodeResponse:
|
|
r"""Start Universal Transcode
|
|
|
|
Begin a Universal Transcode Session
|
|
|
|
:param request: The request object to send.
|
|
:param retries: Override the default retry configuration for this method
|
|
:param server_url: Override the default server URL for this method
|
|
:param timeout_ms: Override the default request timeout configuration for this method in milliseconds
|
|
"""
|
|
base_url = None
|
|
url_variables = None
|
|
if timeout_ms is None:
|
|
timeout_ms = self.sdk_configuration.timeout_ms
|
|
|
|
if server_url is not None:
|
|
base_url = server_url
|
|
|
|
if not isinstance(request, BaseModel):
|
|
request = utils.unmarshal(
|
|
request, operations.StartUniversalTranscodeRequest
|
|
)
|
|
request = cast(operations.StartUniversalTranscodeRequest, request)
|
|
|
|
req = self.build_request_async(
|
|
method="GET",
|
|
path="/video/:/transcode/universal/start.mpd",
|
|
base_url=base_url,
|
|
url_variables=url_variables,
|
|
request=request,
|
|
request_body_required=False,
|
|
request_has_path_params=False,
|
|
request_has_query_params=True,
|
|
user_agent_header="user-agent",
|
|
accept_header_value="application/json",
|
|
security=self.sdk_configuration.security,
|
|
timeout_ms=timeout_ms,
|
|
)
|
|
|
|
if retries == UNSET:
|
|
if self.sdk_configuration.retry_config is not UNSET:
|
|
retries = self.sdk_configuration.retry_config
|
|
|
|
retry_config = None
|
|
if isinstance(retries, utils.RetryConfig):
|
|
retry_config = (retries, ["429", "500", "502", "503", "504"])
|
|
|
|
http_res = await self.do_request_async(
|
|
hook_ctx=HookContext(
|
|
operation_id="startUniversalTranscode",
|
|
oauth2_scopes=[],
|
|
security_source=self.sdk_configuration.security,
|
|
),
|
|
request=req,
|
|
error_status_codes=["400", "401", "4XX", "5XX"],
|
|
retry_config=retry_config,
|
|
)
|
|
|
|
data: Any = None
|
|
if utils.match_response(http_res, "200", "*"):
|
|
return operations.StartUniversalTranscodeResponse(
|
|
status_code=http_res.status_code,
|
|
content_type=http_res.headers.get("Content-Type") or "",
|
|
raw_response=http_res,
|
|
)
|
|
if utils.match_response(http_res, "400", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.StartUniversalTranscodeBadRequestData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.StartUniversalTranscodeBadRequest(data=data)
|
|
if utils.match_response(http_res, "401", "application/json"):
|
|
data = utils.unmarshal_json(
|
|
http_res.text, errors.StartUniversalTranscodeUnauthorizedData
|
|
)
|
|
data.raw_response = http_res
|
|
raise errors.StartUniversalTranscodeUnauthorized(data=data)
|
|
if utils.match_response(http_res, ["4XX", "5XX"], "*"):
|
|
raise errors.SDKError(
|
|
"API error occurred", http_res.status_code, http_res.text, http_res
|
|
)
|
|
|
|
content_type = http_res.headers.get("Content-Type")
|
|
raise errors.SDKError(
|
|
f"Unexpected response received (code: {http_res.status_code}, type: {content_type})",
|
|
http_res.status_code,
|
|
http_res.text,
|
|
http_res,
|
|
)
|