B /g^nc@s2dZddlZedZd ddZGdddZdS) zManage HTTP Response Headers Much of this module is red-handedly pilfered from email.message in the stdlib, so portions are Copyright (C) 2001,2002 Python Software Foundation, and were written by Barry Warsaw. Nz[ \(\)<>@,;:\\"/\[\]\?=]cCsX|dk rPt|dkrP|s"t|rB|dddd}d||fSd||fSn|SdS) z~Convenience function to format and return a key=value pair. This will quote the value if needed or if quote is true. Nrz\z\\z"z\"z%s="%s"z%s=%s)len tspecialsZsearchreplace)ZparamvalueZquoter'/usr/lib64/python3.7/wsgiref/headers.py _formatparam s  rc@seZdZdZd%ddZddZddZd d Zd d Zd dZ ddZ ddZ d&ddZ ddZ ddZddZddZddZdd Zd!d"Zd#d$ZdS)'Headersz,Manage a collection of HTTP response headersNcCs.|dk r |ng}t|tk r$td||_dS)Nz+Headers must be a list of name/value tuples)typeZlistZ TypeError_headers)selfZheadersrrr__init__s  zHeaders.__init__cCs&t|tkr|Stdt|dS)zConvert/check value type.z1Header names/values must be of type str (got {0})N)r strZAssertionErrorZformatZrepr)r rrrr_convert_string_type)s zHeaders._convert_string_typecCs t|jS)z9Return the total number of headers, including duplicates.)rr r rrr__len__0zHeaders.__len__cCs&||=|j||||fdS)zSet the value of a header.N)r appendr)r nameZvalrrr __setitem__4szHeaders.__setitem__cs0|fdd|jD|jdd<dS)zyDelete all occurrences of a header, if present. Does *not* raise an exception if the header is missing. cs g|]}|dkr|qS)rlower.0Zkvrrr @z'Headers.__delitem__..Nrrr r rrrr __delitem__:szHeaders.__delitem__cCs ||S)aHGet the first header value for 'name' Return None if the header is missing instead of raising an exception. Note that if the header appeared multiple times, the first exactly which occurrence gets returned is undefined. Use getall() to get all the values matching a header field name. getrrrr __getitem__Bs zHeaders.__getitem__cCs||dk S)z/Return true if the message contains the header.Nr rrrr __contains__MrzHeaders.__contains__cs"|fdd|jDS)aqReturn a list of all the values for the named field. These will be sorted in the order they appeared in the original header list or were added to this instance, and may contain duplicates. Any fields deleted and re-inserted are always appended to the header list. If no fields exist with the given name, returns an empty list. cs$g|]}|dkr|dqS)rrrrrrrrz#Headers.get_all..rrrrrget_allRszHeaders.get_allcCs6||}x"|jD]\}}||kr|SqW|S)z:Get the first header value for 'name', or return 'default'r)r rZdefaultkvrrrr!^s  z Headers.getcCdd|jDS)a*Return a list of all the header field names. These will be sorted in the order they appeared in the original header list, or were added to this instance, and may contain duplicates. Any fields deleted and re-inserted are always appended to the header list. cSsg|] \}}|qSrrrr%r&rrrrorz Headers.keys..r rrrrkeysgz Headers.keyscCr')a!Return a list of all header values. These will be sorted in the order they appeared in the original header list, or were added to this instance, and may contain duplicates. Any fields deleted and re-inserted are always appended to the header list. cSsg|] \}}|qSrrr(rrrryrz"Headers.values..r)rrrrvaluesqr+zHeaders.valuescCs|jddS)aGet all the header fields and values. These will be sorted in the order they were in the original header list, or were added to this instance, and may contain duplicates. Any fields deleted and re-inserted are always appended to the header list. Nr)rrrritems{r+z Headers.itemscCsd|jj|jfS)Nz%s(%r))Z __class____name__r rrrr__repr__zHeaders.__repr__cCsddd|jDddgS)zkstr() returns the formatted headers, complete with end line, suitable for direct HTTP transmission.z cSsg|] }d|qS)z%s: %srrrrrrrz#Headers.__str__..Z)joinr rrrr__str__szHeaders.__str__cCst|dS)Nz iso-8859-1)rZencoderrrr __bytes__r0zHeaders.__bytes__cCs:||}|dkr2|j||||f|S|SdS)zReturn first matching header value for 'name', or 'value' If there is no header named 'name', add a new header with name 'name' and value 'value'.N)r!r rr)r rrZresultrrr setdefaults  zHeaders.setdefaultcKsg}|dk r ||}||x\|D]P\}}||}|dkrX||ddq*||}|t|dd|q*W|j||d|fdS)afExtended header setting. _name is the header field to add. keyword arguments can be used to set additional parameters for the header field, with underscores converted to dashes. Normally the parameter will be added as key="value" unless value is None, in which case only the key will be added. Example: h.add_header('content-disposition', 'attachment', filename='bud.gif') Note that unlike the corresponding 'email.message' method, this does *not* handle '(charset, language, value)' tuples: all values must be strings or None. NZ_z-z; )rrr-rrr r1)r Z_nameZ_valueZ_paramsZpartsr%r&rrr add_headers    zHeaders.add_headerNr6)r.Z __module__Z __qualname____doc__r rrrrr"r#r$r!r*r,r-r/r2r3r4r5rrrrr s$       r )Nr)r7ZreZcompilerrr rrrrZs