"""Subscription information.""" from __future__ import annotations import asyncio import logging from hass_nabucasa import ( Cloud, MigratePaypalAgreementInfo, PaymentsApiError, SubscriptionInfo, ) from .client import CloudClient from .const import REQUEST_TIMEOUT _LOGGER = logging.getLogger(__name__) async def async_subscription_info(cloud: Cloud[CloudClient]) -> SubscriptionInfo | None: """Fetch the subscription info.""" try: async with asyncio.timeout(REQUEST_TIMEOUT): return await cloud.payments.subscription_info() except PaymentsApiError as exception: _LOGGER.error("Failed to fetch subscription information - %s", exception) except TimeoutError: _LOGGER.error( "A timeout of %s was reached while trying to fetch subscription information", REQUEST_TIMEOUT, ) return None async def async_migrate_paypal_agreement( cloud: Cloud[CloudClient], ) -> MigratePaypalAgreementInfo | None: """Migrate a paypal agreement from legacy.""" try: async with asyncio.timeout(REQUEST_TIMEOUT): return await cloud.payments.migrate_paypal_agreement() except TimeoutError: _LOGGER.error( "A timeout of %s was reached while trying to start agreement migration", REQUEST_TIMEOUT, ) except PaymentsApiError as exception: _LOGGER.error("Failed to start agreement migration - %s", exception) return None