subscription.py 3.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. from dataclasses import field
  2. from typing import TYPE_CHECKING, List, Optional
  3. from yandex_music import YandexMusicModel
  4. from yandex_music.utils import model
  5. if TYPE_CHECKING:
  6. from yandex_music import AutoRenewable, ClientType, JSONType, NonAutoRenewable, Operator, RenewableRemainder
  7. @model
  8. class Subscription(YandexMusicModel):
  9. """Класс, представляющий информацию о подписках пользователя.
  10. Attributes:
  11. non_auto_renewable_remainder (:obj:`yandex_music.RenewableRemainder`): Напоминание о продлении.
  12. auto_renewable (:obj:`list` из :obj:`yandex_music.AutoRenewable`, optional): Автопродление.
  13. family_auto_renewable (:obj:`list` из :obj:`yandex_music.AutoRenewable`): Автопродление семейной подписки.
  14. operator (:obj:`list` из :obj:`yandex_music.Operator`, optional): Услуги сотового оператора.
  15. non_auto_renewable (:obj:`yandex_music.NonAutoRenewable`, optional): Отключённое автопродление.
  16. can_start_trial (:obj:`bool`, optional): Есть ли возможность начать пробный период.
  17. mcdonalds (:obj:`bool`, optional): mcdonalds TODO.
  18. end (:obj:`str`, optional): Дата окончания.
  19. had_any_subscription (:obj:'bool'): Наличие какой-либо подписки в прошлом.
  20. client (:obj:`yandex_music.Client`, optional): Клиент Yandex Music.
  21. """
  22. non_auto_renewable_remainder: 'RenewableRemainder'
  23. auto_renewable: List['AutoRenewable']
  24. family_auto_renewable: List['AutoRenewable']
  25. had_any_subscription: bool
  26. operator: List['Operator'] = field(default_factory=list)
  27. non_auto_renewable: Optional['NonAutoRenewable'] = None
  28. can_start_trial: Optional[bool] = None
  29. mcdonalds: Optional[bool] = None
  30. end: Optional[str] = None
  31. client: Optional['ClientType'] = None
  32. def __post_init__(self) -> None:
  33. self._id_attrs = (self.non_auto_renewable_remainder, self.auto_renewable, self.family_auto_renewable)
  34. @classmethod
  35. def de_json(cls, data: 'JSONType', client: 'ClientType') -> Optional['Subscription']:
  36. """Десериализация объекта.
  37. Args:
  38. data (:obj:`dict`): Поля и значения десериализуемого объекта.
  39. client (:obj:`yandex_music.Client`, optional): Клиент Yandex Music.
  40. Returns:
  41. :obj:`yandex_music.Subscription`: Информация о подписках пользователя.
  42. """
  43. if not cls.is_dict_model_data(data):
  44. return None
  45. cls_data = cls.cleanup_data(data, client)
  46. from yandex_music import AutoRenewable, NonAutoRenewable, Operator, RenewableRemainder
  47. cls_data['auto_renewable'] = AutoRenewable.de_list(data.get('auto_renewable'), client)
  48. cls_data['family_auto_renewable'] = AutoRenewable.de_list(data.get('family_auto_renewable'), client)
  49. cls_data['non_auto_renewable_remainder'] = RenewableRemainder.de_json(
  50. data.get('non_auto_renewable_remainder'), client
  51. )
  52. cls_data['non_auto_renewable'] = NonAutoRenewable.de_json(data.get('non_auto_renewable'), client)
  53. cls_data['operator'] = Operator.de_list(data.get('operator'), client)
  54. return cls(client=client, **cls_data) # type: ignore