0f25ebc26d
* plex integration * The big one - Full Music Source page rework + Playlist importing + Full Plex Integration + Discovery Options + More Like This/Surprise Me/Instant Mix + More... * Music source track page - Play all / shuffle fixes * lint * format * fix type checks * format
119 lines
2.5 KiB
Python
119 lines
2.5 KiB
Python
from typing import Any
|
|
|
|
|
|
class MusicseerrException(Exception):
|
|
def __init__(self, message: str, details: Any = None):
|
|
self.message = message
|
|
self.details = details
|
|
super().__init__(message)
|
|
|
|
def __str__(self) -> str:
|
|
if self.details:
|
|
return f"{self.message}: {self.details}"
|
|
return self.message
|
|
|
|
|
|
class ExternalServiceError(MusicseerrException):
|
|
pass
|
|
|
|
|
|
class RateLimitedError(ExternalServiceError):
|
|
def __init__(
|
|
self,
|
|
message: str,
|
|
details: Any = None,
|
|
retry_after_seconds: float | None = None,
|
|
):
|
|
super().__init__(message, details)
|
|
self.retry_after_seconds = retry_after_seconds
|
|
|
|
|
|
class ResourceNotFoundError(MusicseerrException):
|
|
pass
|
|
|
|
|
|
class ValidationError(MusicseerrException):
|
|
pass
|
|
|
|
|
|
class PlaylistNotFoundError(ResourceNotFoundError):
|
|
pass
|
|
|
|
|
|
class InvalidPlaylistDataError(ValidationError):
|
|
pass
|
|
|
|
|
|
class SourceResolutionError(ValidationError):
|
|
pass
|
|
|
|
|
|
class ConfigurationError(MusicseerrException):
|
|
pass
|
|
|
|
|
|
class CacheError(MusicseerrException):
|
|
pass
|
|
|
|
|
|
class PlaybackNotAllowedError(ExternalServiceError):
|
|
pass
|
|
|
|
|
|
class TokenNotAuthorizedError(ExternalServiceError):
|
|
pass
|
|
|
|
|
|
class PlexApiError(ExternalServiceError):
|
|
def __init__(
|
|
self,
|
|
message: str,
|
|
details: Any = None,
|
|
code: int | None = None,
|
|
):
|
|
super().__init__(message, details)
|
|
self.code = code
|
|
|
|
|
|
class PlexAuthError(PlexApiError):
|
|
pass
|
|
|
|
|
|
class NavidromeApiError(ExternalServiceError):
|
|
def __init__(
|
|
self,
|
|
message: str,
|
|
details: Any = None,
|
|
code: int | None = None,
|
|
):
|
|
super().__init__(message, details)
|
|
self.code = code
|
|
|
|
|
|
class NavidromeAuthError(NavidromeApiError):
|
|
pass
|
|
|
|
|
|
class NavidromeSubsonicError(ExternalServiceError):
|
|
"""Non-auth error from a valid Subsonic API envelope.
|
|
|
|
Raised when Navidrome returns a well-formed ``subsonic-response`` with
|
|
a non-OK status and an error code that is *not* an authentication
|
|
failure (codes 40/41). These are potentially transient (e.g. "Library
|
|
not found or empty" during a rescan) and should be retried but must
|
|
**not** trip the circuit breaker.
|
|
"""
|
|
|
|
def __init__(
|
|
self,
|
|
message: str,
|
|
details: Any = None,
|
|
code: int | None = None,
|
|
):
|
|
super().__init__(message, details)
|
|
self.code = code
|
|
|
|
|
|
class ClientDisconnectedError(MusicseerrException):
|
|
pass
|