
    ]h                     d    d Z ddlZddlZddlZddlZddlZddlmZ ddlmZ d	dZ	d Z
d
dZd Zy)z:Internal utilities for interacting with Google API client.    N)
exceptions)_utilsc                 J   t        | t        j                  j                        st	        |       S | j
                  j                         }| j                  j                  }t        j                  ||      \  }}t        |       }d}|r || |||      }|r|S t        | |||      S )au  Constructs a ``FirebaseError`` from the given googleapiclient error.

    This can be used to handle errors returned by Google Cloud Platform (GCP) APIs.

    Args:
        error: An error raised by the googleapiclient while making an HTTP call to a GCP API.
        handle_func: A function that can be used to handle platform errors in a custom way. When
            specified, this function will be called with three arguments. It has the same
            signature as ```_handle_func_googleapiclient``, but may return ``None``.

    Returns:
        FirebaseError: A ``FirebaseError`` that can be raised to the user code.
    N)
isinstancegoogleapiclienterrors	HttpErrorhandle_googleapiclient_errorcontentdecoderespstatusr   _parse_platform_error)_http_response_from_googleapiclient_error_handle_func_googleapiclient)errorhandle_funcr   status_code
error_dictmessagehttp_responseexcs           a/var/www/html/Kila-kolis-project/venv/lib/python3.12/site-packages/firebase_admin/_gapic_utils.py*handle_platform_error_from_googleapiclientr      s     e_33==>+E22mm""$G**##K 66wLJ=eDM
C%*mD3b7w
Tabb    c                 @    |j                  d      }t        | |||      S )a  Constructs a ``FirebaseError`` from the given GCP error.

    Args:
        error: An error raised by the googleapiclient module while making an HTTP call.
        message: A message to be included in the resulting ``FirebaseError``.
        error_dict: Parsed GCP error response.
        http_response: A requests HTTP response object to associate with the exception.

    Returns:
        FirebaseError: A ``FirebaseError`` that can be raised to the user code or None.
    r   )getr
   )r   r   r   r   codes        r   r   r   8   s#     >>(#D'wmLLr   c                    t        | t        j                        s't        | t        j                        r3dt	        |       v r&t        j                  dj                  |       |       S t        | t        j                        r&t        j                  dj                  |       |       S t        | t        j                  j                        s&t        j                  dj                  |       |       S |s)t        j                   | j"                  j$                        }|st	        |       }|st'        |       }t        j(                  |      } ||| |      S )a&  Constructs a ``FirebaseError`` from the given googleapiclient error.

    This method is agnostic of the remote service that produced the error, whether it is a GCP
    service or otherwise. Therefore, this method does not attempt to parse the error response in
    any way.

    Args:
        error: An error raised by the googleapiclient module while making an HTTP call.
        message: A message to be included in the resulting ``FirebaseError`` (optional). If not
            specified the string representation of the ``error`` argument is used as the message.
        code: A GCP error code that will be used to determine the resulting error type (optional).
            If not specified the HTTP status code on the error response is used to determine a
            suitable error code.
        http_response: A requests HTTP response object to associate with the exception (optional).
            If not specified, one will be created from the ``error``.

    Returns:
        FirebaseError: A ``FirebaseError`` that can be raised to the user code.
    z	timed outz'Timed out while making an API call: {0})r   causez%Failed to establish a connection: {0}z5Unknown error while making a remote service call: {0})r   r    r   )r   sockettimeoutr   strr   DeadlineExceededErrorformathttplib2ServerNotFoundErrorUnavailableErrorr   r   r	   UnknownErrorr   _http_status_to_error_coder   r   r   _error_code_to_exception_type)r   r   r   r   err_types        r   r
   r
   H   s   ( %(ufll+s5z0I//=DDUK 	 %556**;BB5I 	 e_33==>&&KRRSXY 	 001B1BCe*A%H33D9HG5NNr   c                     t         j                  j                         }t        j                  | j
                        |_        | j                  j                  |_	        |S )zMCreates a requests HTTP Response object from the given googleapiclient error.)
requestsmodelsResponseioBytesIOr   rawr   r   r   )r   r   s     r   r   r   u   s?    ??##%Dzz%--(DHzz((DKr   )N)NNN)__doc__r1   r!   r   r&   r.   firebase_adminr   r   r   r   r
   r    r   r   <module>r7      s8    A 	     % !c8M *OZr   