U
    %FZh!                     @   s   d 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lmZ ddlmZ e
 Zddd	d
ddgZedddgZG dd dZG dd deZG dd deZG dd deZG dd deZdd ZdS )zFirebase credentials module.    N)Credentials)requests)credentials)service_accountz.https://www.googleapis.com/auth/cloud-platformz)https://www.googleapis.com/auth/datastorez5https://www.googleapis.com/auth/devstorage.read_writez(https://www.googleapis.com/auth/firebasez/https://www.googleapis.com/auth/identitytoolkitz.https://www.googleapis.com/auth/userinfo.emailAccessTokenInfoZaccess_tokenexpiryc                   @   s    e Zd ZdZdd Zdd ZdS )Basez>Provides OAuth2 access tokens for accessing Firebase services.c                 C   s    |   }|t t|j|jS )zFetches a Google OAuth2 access token using this credential instance.

        Returns:
          AccessTokenInfo: An access token obtained using the credential.
        )get_credentialrefresh_requestr   tokenr   )selfZgoogle_cred r   a/home/aprabhat/apps/x.techxrdev.in/venv/lib/python3.8/site-packages/firebase_admin/credentials.pyget_access_token0   s    
zBase.get_access_tokenc                 C   s   t dS )z?Returns the Google credential instance used for authentication.N)NotImplementedErrorr   r   r   r   r	   :   s    zBase.get_credentialN)__name__
__module____qualname____doc__r   r	   r   r   r   r   r   -   s   
r   c                       s.   e Zd ZdZed fddZdd Z  ZS )_ExternalCredentialszLA wrapper for google.auth.credentials.Credentials typed credential instances)
credentialc                    s   t t|   || _d S N)superr   __init___g_credential)r   r   	__class__r   r   r   A   s    z_ExternalCredentials.__init__c                 C   s   | j S )zReturns the underlying Google Credential

        Returns:
          google.auth.credentials.Credentials: A Google Auth credential instance.r   r   r   r   r   r	   E   s    z#_ExternalCredentials.get_credential)r   r   r   r   GoogleAuthCredentialsr   r	   __classcell__r   r   r   r   r   >   s   r   c                       sP   e Zd ZdZdZ fddZedd Zedd Zed	d
 Z	dd Z
  ZS )Certificatez9A credential initialized from a JSON certificate keyfile.r   c              
      s   t t|   t|r6t|}t|}W 5 Q R X nt|trF|}nt	d
||d| jkrtt	d
| jztjj|td| _W n0 t	k
r } zt	d
|W 5 d}~X Y nX dS )a]  Initializes a credential from a Google service account certificate.

        Service account certificates can be downloaded as JSON files from the Firebase console.
        To instantiate a credential from a certificate file, either specify the file path or a
        dict representing the parsed contents of the file.

        Args:
          cert: Path to a certificate file or a dict representing the contents of a certificate.

        Raises:
          IOError: If the specified certificate file doesn't exist or cannot be read.
          ValueError: If the specified certificate is invalid.
        z}Invalid certificate argument: "{0}". Certificate argument must be a file path, or a dict containing the parsed file contents.typezZInvalid service account certificate. Certificate must contain a "type" field set to "{0}".Zscopesz?Failed to initialize a certificate credential. Caused by: "{0}"N)r   r"   r   _is_file_pathopenjsonload
isinstancedict
ValueErrorformatget_CREDENTIAL_TYPEr   r   Zfrom_service_account_info_scopesr   )r   cert	json_file	json_dataerrorr   r   r   r   Q   s0    

 zCertificate.__init__c                 C   s   | j jS r   )r   
project_idr   r   r   r   r4   t   s    zCertificate.project_idc                 C   s   | j jS r   )r   signerr   r   r   r   r5   x   s    zCertificate.signerc                 C   s   | j jS r   )r   service_account_emailr   r   r   r   r6   |   s    z!Certificate.service_account_emailc                 C   s   | j S zReturns the underlying Google credential.

        Returns:
          google.auth.credentials.Credentials: A Google Auth credential instance.r   r   r   r   r   r	      s    zCertificate.get_credential)r   r   r   r   r.   r   propertyr4   r5   r6   r	   r!   r   r   r   r   r"   L   s   #


r"   c                       s<   e Zd ZdZ fddZdd Zedd Zdd	 Z  Z	S )
ApplicationDefaultz(A Google Application Default credential.c                    s   t t|   d| _dS )zCreates an instance that will use Application Default credentials.

        The credentials will be lazily initialized when get_credential() or
        project_id() is called. See those methods for possible errors raised.
        N)r   r9   r   r   r   r   r   r   r      s    zApplicationDefault.__init__c                 C   s   |    | jS )a:  Returns the underlying Google credential.

        Raises:
          google.auth.exceptions.DefaultCredentialsError: If Application Default
              credentials cannot be initialized in the current environment.
        Returns:
          google.auth.credentials.Credentials: A Google Auth credential instance.)_load_credentialr   r   r   r   r   r	      s    z!ApplicationDefault.get_credentialc                 C   s   |    | jS )a  Returns the project_id from the underlying Google credential.

        Raises:
          google.auth.exceptions.DefaultCredentialsError: If Application Default
              credentials cannot be initialized in the current environment.
        Returns:
          str: The project id.)r:   _project_idr   r   r   r   r4      s    	zApplicationDefault.project_idc                 C   s    | j stjjtd\| _ | _d S )Nr$   )r   googleauthdefaultr/   r;   r   r   r   r   r:      s    z#ApplicationDefault._load_credential)
r   r   r   r   r   r	   r8   r4   r:   r!   r   r   r   r   r9      s   	
r9   c                       sP   e Zd ZdZdZ fddZedd Zedd Zed	d
 Z	dd Z
  ZS )RefreshTokenz8A credential initialized from an existing refresh token.Zauthorized_userc              	      s   t t|   t|r6t|}t|}W 5 Q R X nt|trF|}nt	d
||d| jkrtt	d
| jtj|t| _dS )a  Initializes a credential from a refresh token JSON file.

        The JSON must consist of client_id, client_secret and refresh_token fields. Refresh
        token files are typically created and managed by the gcloud SDK. To instantiate
        a credential from a refresh token file, either specify the file path or a dict
        representing the parsed contents of the file.

        Args:
          refresh_token: Path to a refresh token file or a dict representing the contents of a
              refresh token file.

        Raises:
          IOError: If the specified file doesn't exist or cannot be read.
          ValueError: If the refresh token configuration is invalid.
        zInvalid refresh token argument: "{0}". Refresh token argument must be a file path, or a dict containing the parsed file contents.r#   zSInvalid refresh token configuration. JSON must contain a "type" field set to "{0}".N)r   r?   r   r%   r&   r'   r(   r)   r*   r+   r,   r-   r.   r   r   Zfrom_authorized_user_infor/   r   )r   refresh_tokenr1   r2   r   r   r   r      s     

zRefreshToken.__init__c                 C   s   | j jS r   )r   	client_idr   r   r   r   rA      s    zRefreshToken.client_idc                 C   s   | j jS r   )r   client_secretr   r   r   r   rB      s    zRefreshToken.client_secretc                 C   s   | j jS r   )r   r@   r   r   r   r   r@      s    zRefreshToken.refresh_tokenc                 C   s   | j S r7   r   r   r   r   r   r	      s    zRefreshToken.get_credential)r   r   r   r   r.   r   r8   rA   rB   r@   r	   r!   r   r   r   r   r?      s    


r?   c                 C   s,   zt |  W dS  tk
r&   Y dS X d S )NTF)pathlibPath	TypeError)pathr   r   r   r%      s
    
r%   )r   collectionsr'   rC   Zgoogle.authr<   Zgoogle.auth.credentialsr   r    Zgoogle.auth.transportr   Zgoogle.oauth2r   r   Requestr   r/   
namedtupler   r   r   r"   r9   r?   r%   r   r   r   r   <module>   s.   	<'9