o
    ˷e&                     @   sP   d dl mZ d dlmZ d dlmZ d dlmZ d dlmZ G dd de	Z
dS )	    )NotFound)_rfc3339_nanos_to_datetime)_DEFAULT_TIMEOUT)DEFAULT_RETRY)DEFAULT_RETRY_IF_ETAG_IN_JSONc                   @   s  e Zd ZdZdZ	 dZ	 dZ	 eefZd)ddZdd	 Z	d
d Z
edd Zedd Zedd Zedd Zedd Zedd Zejdd Zedd Zedd Zedd Zedd  Zeefd!d"Zeefd#d$Zeefd%d&Zeefd'd(ZdS )*HMACKeyMetadataa   Metadata about an HMAC service account key withn Cloud Storage.

    :type client: :class:`~google.cloud.stoage.client.Client`
    :param client: client associated with the key metadata.

    :type access_id: str
    :param access_id: (Optional) Unique ID of an existing key.

    :type project_id: str
    :param project_id: (Optional) Project ID of an existing key.
        Defaults to client's project.

    :type user_project: str
    :param user_project: (Optional) This parameter is currently ignored.
    ACTIVEINACTIVEDELETEDNc                 C   s:   || _ i | _|d ur|| jd< |d ur|| jd< || _d S )NaccessId	projectId)_client_properties_user_project)selfclient	access_id
project_iduser_project r   T/var/www/ideatree/venv/lib/python3.10/site-packages/google/cloud/storage/hmac_key.py__init__4   s   


zHMACKeyMetadata.__init__c                 C   s(   t || jstS | j|jko| j|jkS N)
isinstance	__class__NotImplementedr   r   )r   otherr   r   r   __eq__@   s   zHMACKeyMetadata.__eq__c                 C   s   t | jt | j S r   )hashr   r   r   r   r   r   __hash__F   s   zHMACKeyMetadata.__hash__c                 C      | j dS )z|Access ID of the key.

        :rtype: str or None
        :returns: unique identifier of the key within a project.
        r   r   getr   r   r   r   r   I      zHMACKeyMetadata.access_idc                 C   r!   )zETag identifying the version of the key metadata.

        :rtype: str or None
        :returns: ETag for the version of the key's metadata.
        etagr"   r   r   r   r   r%   R   r$   zHMACKeyMetadata.etagc                 C   r!   )zID of the key, including the Project ID and the Access ID.

        :rtype: str or None
        :returns: ID of the key.
        idr"   r   r   r   r   r&   [   r$   zHMACKeyMetadata.idc                 C   r!   )zzProject ID associated with the key.

        :rtype: str or None
        :returns: project identfier for the key.
        r   r"   r   r   r   r   projectd   r$   zHMACKeyMetadata.projectc                 C   r!   )zService account e-mail address associated with the key.

        :rtype: str or None
        :returns: e-mail address for the service account which created the key.
        serviceAccountEmailr"   r   r   r   r   service_account_emailm   r$   z%HMACKeyMetadata.service_account_emailc                 C   r!   )zGet / set key's state.

        One of:
            - ``ACTIVE``
            - ``INACTIVE``
            - ``DELETED``

        :rtype: str or None
        :returns: key's current state.
        stater"   r   r   r   r   r*   v   s   zHMACKeyMetadata.statec                 C   s.   || j vrtdd| j  || jd< d S )Nz!State may only be set to one of: z, r*   )_SETTABLE_STATES
ValueErrorjoinr   r   valuer   r   r   r*      s
   
c                 C       | j d}|durt|S dS )3  Retrieve the timestamp at which the HMAC key was created.

        :rtype: :class:`datetime.datetime` or ``NoneType``
        :returns: Datetime object parsed from RFC3339 valid timestamp, or
                  ``None`` if the bucket's resource has not been loaded
                  from the server.
        timeCreatedNr   r#   r   r.   r   r   r   time_created      	zHMACKeyMetadata.time_createdc                 C   r0   )r1   updatedNr3   r.   r   r   r   r6      r5   zHMACKeyMetadata.updatedc                 C   s:   | j du r	td| j}|du r| jj}d| d| j  S )z%Resource path for the metadata's key.NzNo 'access_id' set.z
/projects/z
/hmacKeys/)r   r,   r'   r   )r   r'   r   r   r   path   s   
zHMACKeyMetadata.pathc                 C   s   | j S )zProject ID to be billed for API requests made via this bucket.

        This property is currently ignored by the server.

        :rtype: str
        )r   r   r   r   r   r      s   zHMACKeyMetadata.user_projectc                 C   sJ   zi }| j dur| j |d< | jj| j|||d W dS  ty$   Y dS w )a#  Determine whether or not the key for this metadata exists.

        :type timeout: float or tuple
        :param timeout:
            (Optional) The amount of time, in seconds, to wait
            for the server response.  See: :ref:`configuring_timeouts`

        :type retry: google.api_core.retry.Retry or google.cloud.storage.retry.ConditionalRetryPolicy
        :param retry:
            (Optional) How to retry the RPC. See: :ref:`configuring_retries`

        :rtype: bool
        :returns: True if the key exists in Cloud Storage.
        NuserProjectquery_paramstimeoutretryFT)r   r   _get_resourcer7   r   r   r;   r<   	qs_paramsr   r   r   exists   s   

	zHMACKeyMetadata.existsc                 C   s4   i }| j dur| j |d< | jj| j|||d| _dS )a4  Reload properties from Cloud Storage.

        :type timeout: float or tuple
        :param timeout:
            (Optional) The amount of time, in seconds, to wait
            for the server response.  See: :ref:`configuring_timeouts`

        :type retry: google.api_core.retry.Retry or google.cloud.storage.retry.ConditionalRetryPolicy
        :param retry:
            (Optional) How to retry the RPC. See: :ref:`configuring_retries`

        :raises :class:`~google.api_core.exceptions.NotFound`:
            if the key does not exist on the back-end.
        Nr8   r9   )r   r   r=   r7   r   r>   r   r   r   reload   s   

zHMACKeyMetadata.reloadc                 C   s@   i }| j dur| j |d< d| ji}| jj| j||||d| _dS )a9  Save writable properties to Cloud Storage.

        :type timeout: float or tuple
        :param timeout:
            (Optional) The amount of time, in seconds, to wait
            for the server response.  See: :ref:`configuring_timeouts`

        :type retry: google.api_core.retry.Retry or google.cloud.storage.retry.ConditionalRetryPolicy
        :param retry:
            (Optional) How to retry the RPC. See: :ref:`configuring_retries`

        :raises :class:`~google.api_core.exceptions.NotFound`:
            if the key does not exist on the back-end.
        Nr8   r*   r9   )r   r*   r   _put_resourcer7   r   )r   r;   r<   r?   payloadr   r   r   update   s   


zHMACKeyMetadata.updatec                 C   sF   | j | jkr
tdi }| jdur| j|d< | jj| j|||d dS )a1  Delete the key from Cloud Storage.

        :type timeout: float or tuple
        :param timeout:
            (Optional) The amount of time, in seconds, to wait
            for the server response.  See: :ref:`configuring_timeouts`

        :type retry: google.api_core.retry.Retry or google.cloud.storage.retry.ConditionalRetryPolicy
        :param retry:
            (Optional) How to retry the RPC. See: :ref:`configuring_retries`

        :raises :class:`~google.api_core.exceptions.NotFound`:
            if the key does not exist on the back-end.
        z-Cannot delete key if not in 'INACTIVE' state.Nr8   r9   )r*   INACTIVE_STATEr,   r   r   _delete_resourcer7   r>   r   r   r   delete  s   


zHMACKeyMetadata.delete)NNN)__name__
__module____qualname____doc__ACTIVE_STATErE   DELETED_STATEr+   r   r   r    propertyr   r%   r&   r'   r)   r*   setterr4   r6   r7   r   r   r   r@   rA   r   rD   rG   r   r   r   r   r      sL    











	 r   N)google.cloud.exceptionsr   google.cloud._helpersr   google.cloud.storage.constantsr   google.cloud.storage.retryr   r   objectr   r   r   r   r   <module>   s   