o
    pkjt;                  
   @   s(  d Z ddlmZ ddlZddlZddlmZ ddlmZ ddlm	Z	 ddl
mZ zddlZW n ey? Z zededZ[ww eed	dZeeervg Zed
D ]Zz	eee W qR eyg   Y  nw erveedk rvede eeZG dd dejZ		dddZ G dd dZ!dS )zAuthorization support for gRPC.    )absolute_importN)
exceptions)_mtls_helper)mtls)service_accountzWgRPC is not installed from please install the grpcio package to use the gRPC transport.__version__.)   S   r   a`  grpcio < 1.83.0 does not support Post-Quantum Cryptography (PQC). Support for non-PQC environments is deprecated. In October 2026, google-auth will raise its minimum requirements to enforce grpcio >= 1.83.0. For more details on Google Cloud's post-quantum security migration, visit: https://cloud.google.com/security/resources/post-quantum-cryptographyc                       s:   e Zd ZdZ	ddd fddZdd Zd	d
 Z  ZS )AuthMetadataPlugina  A `gRPC AuthMetadataPlugin`_ that inserts the credentials into each
    request.

    .. _gRPC AuthMetadataPlugin:
        http://www.grpc.io/grpc/python/grpc.html#grpc.AuthMetadataPlugin

    Args:
        credentials (google.auth.credentials.Credentials): The credentials to
            add to requests.
        request (google.auth.transport.Request): A HTTP transport request
            object used to refresh credentials as needed.
        default_host (Optional[str]): A host like "pubsub.googleapis.com".
            This is used when a self-signed JWT is created from service
            account credentials.
        suppress_metrics_header (bool): When enabled, ``x-goog-api-client``
            will be stripped from authorization headers.
    NF)suppress_metrics_headerc                   s*   t t|   || _|| _|| _|| _d S N)superr   __init___credentials_request_default_host_suppress_metrics_header)selfcredentialsrequestdefault_hostr   	__class__ X/home/djax/ivt_ai_plugin/venv/lib/python3.10/site-packages/google/auth/transport/grpc.pyr   L   s
   
zAuthMetadataPlugin.__init__c                 C   sh   i }t | jtjr| j| jrd| jnd | j| j|j	|j
| | jr.d|v r.|d= t| S )zGets the authorization headers for a request.

        Returns:
            Sequence[Tuple[str, str]]: A list of request headers (key, value)
                to add to the request.
        zhttps://{}/Nzx-goog-api-client)
isinstancer   r   Credentials_create_self_signed_jwtr   formatbefore_requestr   method_nameservice_urlr   listitems)r   contextheadersr   r   r   _get_authorization_headersX   s   z-AuthMetadataPlugin._get_authorization_headersc                 C   s   ||  |d dS )a   Passes authorization metadata into the given callback.

        Args:
            context (grpc.AuthMetadataContext): The RPC context.
            callback (grpc.AuthMetadataPluginCallback): The callback that will
                be invoked to pass in the authorization metadata.
        N)r'   )r   r%   callbackr   r   r   __call__s   s   zAuthMetadataPlugin.__call__r   )__name__
__module____qualname____doc__r   r'   r)   __classcell__r   r   r   r   r   9   s    r   c                 K   s   t | |}t|}|r|rtd|s7t }|r*|r*| \}	}
tj|	|
d}n|r3t }|j	}nt }t
||}tj||fi |S )au  Creates a secure authorized gRPC channel.

    This creates a channel with SSL and :class:`AuthMetadataPlugin`. This
    channel can be used to create a stub that can make authorized requests.
    Users can configure client certificate or rely on device certificates to
    establish a mutual TLS channel, if the `GOOGLE_API_USE_CLIENT_CERTIFICATE`
    variable is explicitly set to `true`.

    Example::

        import google.auth
        import google.auth.transport.grpc
        import google.auth.transport.requests
        from google.cloud.speech.v1 import cloud_speech_pb2

        # Get credentials.
        credentials, _ = google.auth.default()

        # Get an HTTP request function to refresh credentials.
        request = google.auth.transport.requests.Request()

        # Create a channel.
        channel = google.auth.transport.grpc.secure_authorized_channel(
            credentials, regular_endpoint, request,
            ssl_credentials=grpc.ssl_channel_credentials())

        # Use the channel to create a stub.
        cloud_speech.create_Speech_stub(channel)

    Usage:

    There are actually a couple of options to create a channel, depending on if
    you want to create a regular or mutual TLS channel.

    First let's list the endpoints (regular vs mutual TLS) to choose from::

        regular_endpoint = 'speech.googleapis.com:443'
        mtls_endpoint = 'speech.mtls.googleapis.com:443'

    Option 1: create a regular (non-mutual) TLS channel by explicitly setting
    the ssl_credentials::

        regular_ssl_credentials = grpc.ssl_channel_credentials()

        channel = google.auth.transport.grpc.secure_authorized_channel(
            credentials, request, regular_endpoint,
            ssl_credentials=regular_ssl_credentials)

    Option 2: create a mutual TLS channel by calling a callback which returns
    the client side certificate and the key (Note that
    `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable must be explicitly
    set to `true`)::

        def my_client_cert_callback():
            code_to_load_client_cert_and_key()
            if loaded:
                return (pem_cert_bytes, pem_key_bytes)
            raise MyClientCertFailureException()

        try:
            channel = google.auth.transport.grpc.secure_authorized_channel(
                credentials, request, mtls_endpoint,
                client_cert_callback=my_client_cert_callback)
        except MyClientCertFailureException:
            # handle the exception

    Option 3: use application default SSL credentials. It searches and uses
    the command in a context aware metadata file, which is available on devices
    with endpoint verification support (Note that
    `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable must be explicitly
    set to `true`).
    See https://cloud.google.com/endpoint-verification/docs/overview::

        try:
            default_ssl_credentials = SslCredentials()
        except:
            # Exception can be raised if the context aware metadata is malformed.
            # See :class:`SslCredentials` for the possible exceptions.

        # Choose the endpoint based on the SSL credentials type.
        if default_ssl_credentials.is_mtls:
            endpoint_to_use = mtls_endpoint
        else:
            endpoint_to_use = regular_endpoint
        channel = google.auth.transport.grpc.secure_authorized_channel(
            credentials, request, endpoint_to_use,
            ssl_credentials=default_ssl_credentials)

    Option 4: not setting ssl_credentials and client_cert_callback. For devices
    without endpoint verification support or `GOOGLE_API_USE_CLIENT_CERTIFICATE`
    environment variable is not `true`, a regular TLS channel is created;
    otherwise, a mutual TLS channel is created, however, the call should be
    wrapped in a try/except block in case of malformed context aware metadata.

    The following code uses regular_endpoint, it works the same no matter the
    created channle is regular or mutual TLS. Regular endpoint ignores client
    certificate and key::

        channel = google.auth.transport.grpc.secure_authorized_channel(
            credentials, request, regular_endpoint)

    The following code uses mtls_endpoint, if the created channle is regular,
    and API mtls_endpoint is confgured to require client SSL credentials, API
    calls using this channel will be rejected::

        channel = google.auth.transport.grpc.secure_authorized_channel(
            credentials, request, mtls_endpoint)

    Args:
        credentials (google.auth.credentials.Credentials): The credentials to
            add to requests.
        request (google.auth.transport.Request): A HTTP transport request
            object used to refresh credentials as needed. Even though gRPC
            is a separate transport, there's no way to refresh the credentials
            without using a standard http transport.
        target (str): The host and port of the service.
        ssl_credentials (grpc.ChannelCredentials): Optional SSL channel
            credentials. This can be used to specify different certificates.
            This argument is mutually exclusive with client_cert_callback;
            providing both will raise an exception.
            If ssl_credentials and client_cert_callback are None, application
            default SSL credentials are used if `GOOGLE_API_USE_CLIENT_CERTIFICATE`
            environment variable is explicitly set to `true`, otherwise one way TLS
            SSL credentials are used.
        client_cert_callback (Callable[[], (bytes, bytes)]): Optional
            callback function to obtain client certicate and key for mutual TLS
            connection. This argument is mutually exclusive with
            ssl_credentials; providing both will raise an exception.
            This argument does nothing unless `GOOGLE_API_USE_CLIENT_CERTIFICATE`
            environment variable is explicitly set to `true`.
        kwargs: Additional arguments to pass to :func:`grpc.secure_channel`.

    Returns:
        grpc.Channel: The created gRPC channel.

    Raises:
        google.auth.exceptions.MutualTLSChannelError: If mutual TLS channel
            creation failed for any reason.
    zUReceived both ssl_credentials and client_cert_callback; these are mutually exclusive.certificate_chainprivate_key)r   grpcmetadata_call_credentialsr   MalformedErrorr   check_use_client_certssl_channel_credentialsSslCredentialsssl_credentialscomposite_channel_credentialssecure_channel)r   r   targetr8   client_cert_callbackkwargsmetadata_plugingoogle_auth_credentialsuse_client_certcertkeyadc_ssl_credentilscomposite_credentialsr   r   r   secure_authorized_channel~   s,    


rE   c                   @   s0   e Zd ZdZdd Zedd Zedd ZdS )	r7   a*  Class for application default SSL credentials.

    Mutual TLS (mTLS) is enabled if either:

    1. The `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is explicitly
       set to `"true"`.
    2. The `GOOGLE_API_USE_CLIENT_CERTIFICATE` environment variable is unset or empty,
       but a valid workload certificate configuration is found (e.g., via the
       `GOOGLE_API_CERTIFICATE_CONFIG` environment variable or the default gcloud config path).

    See https://google.aip.dev/auth/4114 for client certificate discovery details.

    If client certificate usage is enabled, then for devices with endpoint
    verification support, a device certificate will be automatically loaded and
    mutual TLS will be established.
    See https://cloud.google.com/endpoint-verification/docs/overview.
    c                 C   s$   t  }|sd| _d S t | _d S )NF)r   r5   _is_mtlsr   has_default_client_cert_source)r   r@   r   r   r   r   H  s   
zSslCredentials.__init__c              
   C   s   | j r>z#t \}}}}|rtj||d| _nt | _d| _ W | jS W | jS  tjtfy= } zt	|}||d}~ww t | _| jS )a  Get the created SSL channel credentials.

        For devices with endpoint verification support, if the device certificate
        loading has any problems, corresponding exceptions will be raised. For
        a device without endpoint verification support, no exceptions will be
        raised.

        Returns:
            grpc.ChannelCredentials: The created grpc channel credentials.

        Raises:
            google.auth.exceptions.MutualTLSChannelError: If mutual TLS channel
                creation failed for any reason.
        r/   FN)
rF   r   get_client_ssl_credentialsr2   r6   _ssl_credentialsr   ClientCertErrorOSErrorMutualTLSChannelError)r   has_certrA   rB   _
caught_excnew_excr   r   r   r8   O  s&   



zSslCredentials.ssl_credentialsc                 C   s   | j S )z?Indicates if the created SSL channel credentials is mutual TLS.)rF   )r   r   r   r   is_mtlsq  s   zSslCredentials.is_mtlsN)r*   r+   r,   r-   r   propertyr8   rQ   r   r   r   r   r7   5  s    
!r7   )NN)"r-   
__future__r   loggingwarningsgoogle.authr   google.auth.transportr   r   google.oauth2r   r2   ImportErrorrO   getattr_grpc_ver_strr   str_partssplit_partappendint
ValueErrortuplewarnFutureWarning	getLoggerr*   _LOGGERr   rE   r7   r   r   r   r   <module>   sN   


I
 8