o
    c:                     @   s   d dl Z d dlZd dlmZmZmZ d dlmZmZ dZdddZ	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S )    N)
formatdate	parsedateparsedate_tz)datetime	timedeltaz%a, %d %b %Y %H:%M:%S GMTc                 C   s   |pt  }||  S N)r   utcnow)deltadate r   P/opt/certbot/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.pyexpire_after   s   r   c                 C   s   t t|  S r   )r   calendartimegm	timetuple)dtr   r   r   datetime_to_header   s   r   c                   @   s$   e Zd Zdd Zdd Zdd ZdS )BaseHeuristicc                 C   s   dS )a!  
        Return a valid 1xx warning header value describing the cache
        adjustments.

        The response is provided too allow warnings like 113
        http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need
        to explicitly say response is over 24 hours old.
        z110 - "Response is Stale"r   selfresponser   r   r   warning   s   	zBaseHeuristic.warningc                 C   s   i S )zUpdate the response headers with any new headers.

        NOTE: This SHOULD always include some Warning header to
              signify that the response was cached by the client, not
              by way of the provided headers.
        r   r   r   r   r   update_headers%   s   zBaseHeuristic.update_headersc                 C   s@   |  |}|r|j| | |}|d ur|jd|i |S )NWarning)r   headersupdater   )r   r   updated_headerswarning_header_valuer   r   r   apply.   s   

zBaseHeuristic.applyN)__name__
__module____qualname__r   r   r   r   r   r   r   r      s    	r   c                   @   s   e Zd ZdZdd ZdS )OneDayCachezM
    Cache the response by providing an expires 1 day in the
    future.
    c                 C   sR   i }d|j vr't|j d }ttddt|d d  d}t||d< d|d< |S )	Nexpiresr
      )days   )r
   publiccache-control)r   r   r   r   r   r   )r   r   r   r
   r#   r   r   r   r   @   s   
zOneDayCache.update_headersN)r   r    r!   __doc__r   r   r   r   r   r"   :   s    r"   c                   @   s(   e Zd ZdZdd Zdd Zdd ZdS )	ExpiresAfterz;
    Cache **all** requests for a defined time period.
    c                 K   s   t di || _d S )Nr   )r   r	   )r   kwr   r   r   __init__P   s   zExpiresAfter.__init__c                 C   s   t | j}t|ddS )Nr'   )r#   r(   )r   r	   r   )r   r   r#   r   r   r   r   S   s   
zExpiresAfter.update_headersc                 C   s   d}|| j  S )Nz:110 - Automatically cached for %s. Response might be stale)r	   )r   r   tmplr   r   r   r   W   s   
zExpiresAfter.warningN)r   r    r!   r)   r,   r   r   r   r   r   r   r*   K   s
    r*   c                   @   s(   e Zd ZdZh dZdd Zdd ZdS )LastModifieda  
    If there is no Expires header already, fall back on Last-Modified
    using the heuristic from
    http://tools.ietf.org/html/rfc7234#section-4.2.2
    to calculate a reasonable value.

    Firefox also does something like this per
    https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ
    http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397
    Unlike mozilla we limit this to 24-hr.
    >   ,  -                        c           
      C   s   |j }d|v r	i S d|v r|d dkri S |j| jvri S d|vs%d|vr'i S tt|d }t|d }|d u s>|d u r@i S t }td|| }|t| }tdt	|d d}||krbi S || }	dt
tt|	iS )	Nr#   r(   r'   r
   zlast-modifiedr   
   iQ )r   statuscacheable_by_default_statusesr   r   r   r   timemaxminstrftimeTIME_FMTgmtime)
r   respr   r
   last_modifiednowcurrent_ager	   freshness_lifetimer#   r   r   r   r   l   s*   zLastModified.update_headersc                 C   s   d S r   r   )r   rC   r   r   r   r      s   zLastModified.warningN)r   r    r!   r)   r<   r   r   r   r   r   r   r.   \   s
    r.   r   )r   r=   email.utilsr   r   r   r   r   rA   r   r   objectr   r"   r*   r.   r   r   r   r   <module>   s   
"