Source code for azure.communication.chat.aio._chat_client_async

# -------------------------------------------------------------------------
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for
# license information.
# --------------------------------------------------------------------------
try:
    from urllib.parse import urlparse
except ImportError:
    from urlparse import urlparse # type: ignore

# pylint: disable=unused-import,ungrouped-imports
from typing import Any, Callable, Dict, Generic, List, Optional, TypeVar, Union
from datetime import datetime
from uuid import uuid4

import six
from azure.core.tracing.decorator import distributed_trace
from azure.core.tracing.decorator_async import distributed_trace_async
from azure.core.pipeline.policies import AsyncBearerTokenCredentialPolicy
from azure.core.exceptions import HttpResponseError
from azure.core.async_paging import AsyncItemPaged

from ._chat_thread_client_async import ChatThreadClient
from .._shared.user_credential_async import CommunicationTokenCredential
from .._generated.aio import AzureCommunicationChatService
from .._generated.models import (
    CreateChatThreadRequest,
    ChatThreadItem
)
from .._models import (
    ChatThreadProperties,
    ChatParticipant,
    CreateChatThreadResult
)
from .._utils import ( # pylint: disable=unused-import
    _to_utc_datetime,
    return_response,
    CommunicationErrorResponseConverter
)
from .._version import SDK_MONIKER


[docs]class ChatClient(object): """A client to interact with the AzureCommunicationService Chat gateway. This client provides operations to create chat thread, delete chat thread, get chat thread client by thread id, list chat threads. :param str endpoint: The endpoint of the Azure Communication resource. :param CommunicationTokenCredential credential: The credentials with which to authenticate. .. admonition:: Example: .. literalinclude:: ../samples/chat_client_sample_async.py :start-after: [START create_chat_client] :end-before: [END create_chat_client] :language: python :dedent: 8 :caption: Creating the ChatClient from a URL and token. """ def __init__( self, endpoint: str, credential: CommunicationTokenCredential, **kwargs: Any ) -> None: # type: (...) -> None if not credential: raise ValueError("credential can not be None") try: if not endpoint.lower().startswith('http'): endpoint = "https://" + endpoint except AttributeError: raise ValueError("Host URL must be a string") parsed_url = urlparse(endpoint.rstrip('/')) if not parsed_url.netloc: raise ValueError("Invalid URL: {}".format(endpoint)) self._endpoint = endpoint self._credential = credential self._client = AzureCommunicationChatService( self._endpoint, authentication_policy=AsyncBearerTokenCredentialPolicy(self._credential), sdk_moniker=SDK_MONIKER, **kwargs)
[docs] @distributed_trace def get_chat_thread_client( self, thread_id: str, **kwargs: Any ) -> ChatThreadClient: # type: (...) -> ChatThreadClient """ Get ChatThreadClient by providing a thread_id. :param thread_id: Required. The thread id. :type thread_id: str :return: ChatThreadClient :rtype: ~azure.communication.chat.aio.ChatThreadClient :raises: ~azure.core.exceptions.HttpResponseError, ValueError .. admonition:: Example: .. literalinclude:: ../samples/chat_client_sample_async.py :start-after: [START get_chat_thread_client] :end-before: [END get_chat_thread_client] :language: python :dedent: 8 :caption: Retrieving the ChatThreadClient from an existing chat thread id. """ if not thread_id: raise ValueError("thread_id cannot be None.") return ChatThreadClient( endpoint=self._endpoint, credential=self._credential, thread_id=thread_id, **kwargs )
[docs] @distributed_trace_async async def create_chat_thread( self, topic: str, **kwargs ) -> CreateChatThreadResult: # type: (...) -> CreateChatThreadResult """Creates a chat thread. :param topic: Required. The thread topic. :type topic: str :keyword thread_participants: Optional. Participants to be added to the thread. :paramtype thread_participants: List[~azure.communication.chat.ChatParticipant] :keyword idempotency_token: Optional. If specified, the client directs that the request is repeatable; that is, the client can make the request multiple times with the same Idempotency_Token and get back an appropriate response without the server executing the request multiple times. The value of the Idempotency_Token is an opaque string representing a client-generated, globally unique for all time, identifier for the request. If not specified, a new unique id would be generated. :paramtype idempotency_token: str :return: CreateChatThreadResult :rtype: ~azure.communication.chat.CreateChatThreadResult :raises: ~azure.core.exceptions.HttpResponseError, ValueError .. admonition:: Example: .. literalinclude:: ../samples/chat_client_sample_async.py :start-after: [START create_thread] :end-before: [END create_thread] :language: python :dedent: 12 :caption: Creating a new chat thread. """ if not topic: raise ValueError("topic cannot be None.") idempotency_token = kwargs.pop('idempotency_token', None) if idempotency_token is None: idempotency_token = str(uuid4()) thread_participants = kwargs.pop('thread_participants', None) participants = [] if thread_participants is not None: participants = [m._to_generated() for m in thread_participants] # pylint:disable=protected-access create_thread_request = \ CreateChatThreadRequest(topic=topic, participants=participants) create_chat_thread_result = await self._client.chat.create_chat_thread( create_chat_thread_request=create_thread_request, repeatability_request_id=idempotency_token, **kwargs) errors = None if hasattr(create_chat_thread_result, 'errors') and \ create_chat_thread_result.errors is not None: errors = CommunicationErrorResponseConverter._convert( # pylint:disable=protected-access participants=[thread_participants], chat_errors=create_chat_thread_result.invalid_participants ) chat_thread = ChatThreadProperties._from_generated( # pylint:disable=protected-access create_chat_thread_result.chat_thread) create_chat_thread_result = CreateChatThreadResult( chat_thread=chat_thread, errors=errors ) return create_chat_thread_result
[docs] @distributed_trace def list_chat_threads( self, **kwargs: Any ): # type: (...) -> AsyncItemPaged[ChatThreadItem] """Gets the list of chat threads of a user. :keyword int results_per_page: The maximum number of chat threads to be returned per page. :keyword ~datetime.datetime start_time: The earliest point in time to get chat threads up to. :return: An iterator like instance of ChatThreadItem :rtype: ~azure.core.async_paging.AsyncItemPaged[~azure.communication.chat.ChatThreadItem] :raises: ~azure.core.exceptions.HttpResponseError, ValueError .. admonition:: Example: .. literalinclude:: ../samples/chat_client_sample_async.py :start-after: [START list_threads] :end-before: [END list_threads] :language: python :dedent: 12 :caption: Listing chat threads. """ results_per_page = kwargs.pop("results_per_page", None) start_time = kwargs.pop("start_time", None) return self._client.chat.list_chat_threads( max_page_size=results_per_page, start_time=start_time, **kwargs)
[docs] @distributed_trace_async async def delete_chat_thread( self, thread_id: str, **kwargs ) -> None: """Deletes a chat thread. :param thread_id: Required. Thread id to delete. :type thread_id: str :return: None :rtype: None :raises: ~azure.core.exceptions.HttpResponseError, ValueError .. admonition:: Example: .. literalinclude:: ../samples/chat_client_sample_async.py :start-after: [START delete_thread] :end-before: [END delete_thread] :language: python :dedent: 12 :caption: Deleting a chat thread. """ if not thread_id: raise ValueError("thread_id cannot be None.") return await self._client.chat.delete_chat_thread(thread_id, **kwargs)
[docs] async def close(self) -> None: await self._client.close()
async def __aenter__(self) -> "ChatClient": await self._client.__aenter__() return self async def __aexit__(self, *args) -> None: await self._client.__aexit__(*args)