o
    ðýðc @  ã                   @   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
mZ ddlmZ e e¡Ze d¡Zd	Zd
d„ ZG dd„ deƒZdS )z7
The httplib2 algorithms ported for use with requests.
é    N)Úparsedate_tz)ÚCaseInsensitiveDicté   )Ú	DictCacheÚSeparateBodyBaseCache)Ú
Serializerz9^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?)é-  é4  c                 C   s0   t  | ¡ ¡ }|d |d |d |d |d fS )zƒParses a URI using the regex given in Appendix B of RFC 3986.

    (scheme, authority, path, query, fragment) = parse_uri(uri)
    r   é   é   é   é   )ÚURIÚmatchÚgroups)Úurir   © r   úP/opt/certbot/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.pyÚ	parse_uri   s   "r   c                   @   sh   e Zd ZdZ	ddd„Zedd„ ƒZedd	„ ƒZd
d„ Zdd„ Z	dd„ Z
ddd„Zddd„Zdd„ ZdS )ÚCacheControllerz4An interface to see if request should cached or not.NTc                 C   s4   |d u rt ƒ n|| _|| _|ptƒ | _|pd| _d S )N)éÈ   éË   i,  r   r	   )r   ÚcacheÚcache_etagsr   Ú
serializerÚcacheable_status_codes)Úselfr   r   r   Ústatus_codesr   r   r   Ú__init__'   s   zCacheController.__init__c           	      C   sh   t |ƒ\}}}}}|r|std| ƒ‚| ¡ }| ¡ }|sd}|r(d ||g¡p)|}|d | | }|S )z4Normalize the URL to create a safe key for the cachez(Only absolute URIs are allowed. uri = %sú/ú?z://)r   Ú	ExceptionÚlowerÚjoin)	Úclsr   ÚschemeÚ	authorityÚpathÚqueryÚfragmentÚrequest_uriÚ
defrag_urir   r   r   Ú_urlnorm/   s   zCacheController._urlnormc                 C   s
   |   |¡S ©N)r,   )r$   r   r   r   r   Ú	cache_urlC   s   
zCacheController.cache_urlc           
      C   s  t dft dft dfddddddddt dfdœ}| d| dd¡¡}i }| d¡D ]c}| ¡ s/q(| d	d
¡}|d  ¡ }z|| \}}	W n tyR   t d|¡ Y q(w |rW|	s[d ||< |r‹z||d
  ¡ ƒ||< W q( tyz   |	rxt d|¡ Y q( tyŠ   t d||j	¡ Y q(w q(|S )NTF)NF)úmax-agez	max-staleú	min-freshúno-cacheúno-storezno-transformzonly-if-cachedzmust-revalidateÚpublicÚprivatezproxy-revalidatezs-maxagezcache-controlzCache-ControlÚ ú,ú=r   r   z,Ignoring unknown cache-control directive: %sz-Missing value for cache-control directive: %sz8Invalid value for cache-control directive %s, must be %s)
ÚintÚgetÚsplitÚstripÚKeyErrorÚloggerÚdebugÚ
IndexErrorÚ
ValueErrorÚ__name__)
r   ÚheadersÚknown_directivesÚ
cc_headersÚretvalÚcc_directiveÚpartsÚ	directiveÚtypÚrequiredr   r   r   Úparse_cache_controlG   s^   óþþ€ýÿ÷z#CacheController.parse_cache_controlc                 C   sL  |   |j¡}t d|¡ |  |j¡}d|v rt d¡ dS d|v r.|d dkr.t d¡ dS | j |¡}|du r?t d	¡ dS t| jt	ƒrL| j 
|¡}nd}| j |||¡}|s_t d
¡ dS t|jƒtv rod}t |¡ |S t|jƒ}|rzd|vrd|vr‰t d¡ | j |¡ t d¡ dS t ¡ }	t t|d ƒ¡}
td|	|
 ƒ}t d|¡ |  |¡}d}d|v rÀ|d }t d|¡ n d|v ràt|d ƒ}|duràt |¡|
 }td|ƒ}t d|¡ d|v rî|d }t d|¡ d|v r|d }||7 }t d|¡ ||krt d¡ t d||¡ |S d|vr$t d¡ | j |¡ dS )ze
        Return a cached response if it exists in the cache, otherwise
        return False.
        zLooking up "%s" in the cacher1   z-Request header has "no-cache", cache bypassedFr/   r   z1Request header has "max_age" as 0, cache bypassedNzNo cache entry availablez1Cache entry deserialization failed, entry ignoredzQReturning cached permanent redirect response (ignoring date and etag information)ÚdateÚetagz(Purging cached response: no date or etagz!Ignoring cached response: no datezCurrent age based on date: %iz#Freshness lifetime from max-age: %iÚexpiresz#Freshness lifetime from expires: %iz+Freshness lifetime from request max-age: %ir0   z'Adjusted current age from min-fresh: %iz2The response is "fresh", returning cached responsez%i > %iz4The cached response is "stale" with no etag, purging)r.   Úurlr=   r>   rK   rB   r   r9   Ú
isinstancer   Úget_bodyr   ÚloadsÚwarningr8   ÚstatusÚPERMANENT_REDIRECT_STATUSESr   ÚdeleteÚtimeÚcalendarÚtimegmr   Úmax)r   Úrequestr.   ÚccÚ
cache_dataÚ	body_fileÚrespÚmsgrB   ÚnowrL   Úcurrent_ageÚresp_ccÚfreshness_lifetimerN   Úexpire_timeÚ	min_freshr   r   r   Úcached_request}   s€   



ÿ





ÿ




zCacheController.cached_requestc                 C   s`   |   |j¡}| j || j |¡¡}i }|r.t|jƒ}d|v r$|d |d< d|v r.|d |d< |S )NrM   ÚETagzIf-None-Matchzlast-modifiedzLast-ModifiedzIf-Modified-Since)r.   rO   r   rR   r   r9   r   rB   )r   r[   r.   r_   Únew_headersrB   r   r   r   Úconditional_headersò   s   
z#CacheController.conditional_headersc                 C   s^   t | jtƒr| jj|| j ||d¡|d | j ||¡ dS | jj|| j |||¡|d dS )z.
        Store the data in the cache.
        ó    )rN   N)rP   r   r   Úsetr   ÚdumpsÚset_body)r   r.   r[   ÚresponseÚbodyÚexpires_timer   r   r   Ú
_cache_set  s   ý
ýzCacheController._cache_setc                 C   s   |p| j }|j|vrt d|j|¡ dS t|jƒ}d|v r't t|d ƒ¡}nd}|durCd|v rC|d  	¡ rCt
|d ƒt|ƒkrCdS |  |j¡}|  |¡}	|  |j¡}
t d|
¡ d}d|	v rgd	}t d
¡ d|v rrd	}t d¡ |r…| j |
¡r…t d¡ | j |
¡ |r‰dS d| dd¡v r˜t d¡ dS | jrÔd|v rÔd}| d¡r·t|d ƒ}|dur·t |¡| }t|dƒ}t d |¡¡ t d¡ |  |
||||¡ dS t
|jƒtv rêt d¡ |  |
||d¡ dS d|v rJt t|d ƒ¡}d|	v r|	d dkrt d¡ |	d }|  |
||||¡ dS d|v rL|d rNt|d ƒ}|dur5t |¡| }nd}t d |¡¡ |  |
||||¡ dS dS dS dS )zc
        Algorithm for caching requests.

        This assumes a requests Response object.
        zStatus code %s not in %sNrL   r   úcontent-lengthz&Updating cache with response from "%s"Fr2   TzResponse header has "no-store"zRequest header has "no-store"z0Purging existing cache entry to honor "no-store"Ú*Úvaryr5   zResponse header has "Vary: *"rM   rN   i u z"etag object cached for {0} secondszCaching due to etagzCaching permanent redirectrk   r/   z'Caching b/c date exists and max-age > 0z5Caching b/c of expires header. expires in {0} seconds)r   rT   r=   r>   r   rB   rX   rY   r   Úisdigitr8   ÚlenrK   r.   rO   r   r9   rV   r   rZ   Úformatrr   rU   )r   r[   ro   rp   r   r   Úresponse_headersrL   Úcc_reqr\   r.   Úno_storerq   rN   r   r   r   Úcache_response  s¨   

ÿ
ÿþ
ýü










û



ÿÿûãzCacheController.cache_responsec                    sl   |   |j¡}| j || j |¡¡}|s|S dg‰ |j t‡ fdd„|j 	¡ D ƒƒ¡ d|_
|  |||¡ |S )zéOn a 304 we will get a new set of headers that we want to
        update our cached value with, assuming we have one.

        This should only ever be called when we've sent an ETag and
        gotten a 304 as the response.
        rs   c                 3   s(    | ]\}}|  ¡ ˆ vr||fV  qd S r-   )r"   )Ú.0ÚkÚv©Úexcluded_headersr   r   Ú	<genexpr>ª  s   € 
ý
ÿz9CacheController.update_cached_response.<locals>.<genexpr>r   )r.   rO   r   rR   r   r9   rB   ÚupdateÚdictÚitemsrT   rr   )r   r[   ro   r.   Úcached_responser   r€   r   Úupdate_cached_response‘  s   	þÿ	z&CacheController.update_cached_response)NTNN)NN)rA   Ú
__module__Ú__qualname__Ú__doc__r   Úclassmethodr,   r.   rK   rg   rj   rr   r|   r‡   r   r   r   r   r   $   s    
ÿ

6u

{r   )rŠ   ÚloggingÚrerX   rW   Úemail.utilsr   Úpip._vendor.requests.structuresr   r   r   r   Ú	serializer   Ú	getLoggerrA   r=   Úcompiler   rU   r   Úobjectr   r   r   r   r   Ú<module>   s   

	