a Y G@sdZddlZddlZddlZddlZddlmZddlmZm Z m Z m Z z ddl Z Wne ynddlZ Yn0GdddeZGdd d eZd d Zd d ZdddZGdddeZGdddejejZddZddZddZd ddZddZdS)!z requests.cookies ~~~~~~~~~~~~~~~~ Compatibility code to be able to use `cookielib.CookieJar` with requests. requests.utils imports from here, so be careful with imports. N)to_native_string) cookieliburlparse urlunparseMorselc@seZdZdZddZddZddZdd Zd d Zd d Z ddZ dddZ ddZ ddZ ddZeddZeddZeddZdS) MockRequestaWraps a `requests.Request` to mimic a `urllib2.Request`. The code in `cookielib.CookieJar` expects this interface in order to correctly manage cookie policies, i.e., determine whether a cookie can be set, given the domains of the request and the cookie. The original request object is read-only. The client is responsible for collecting the new headers via `get_new_headers()` and interpreting them appropriately. You probably want `get_cookie_header`, defined below. cCs ||_i|_t|jjj|_dSN)_r _new_headersrurlschemetype)selfrequestr7/Users/ymaher/Downloads/lambdas_org/requests/cookies.py__init__&szMockRequest.__init__cCs|jSr )rrrrrget_type+szMockRequest.get_typecCst|jjjSr )rr r netlocrrrrget_host.szMockRequest.get_hostcCs|Sr rrrrrget_origin_req_host1szMockRequest.get_origin_req_hostcCsT|jjds|jjSt|jjddd}t|jj}t|j||j|j |j |j gS)NHostzutf-8)encoding) r headersgetr rrrr pathparamsqueryfragment)rhostparsedrrr get_full_url4s zMockRequest.get_full_urlcCsdSNTrrrrris_unverifiableBszMockRequest.is_unverifiablecCs||jjvp||jvSr )r rr rnamerrr has_headerEszMockRequest.has_headerNcCs|jj||j||Sr )r rrr )rr(defaultrrr get_headerHszMockRequest.get_headercCs tddS)zMcookielib has no legitimate use for this method; add it back if you find one.z=Cookie headers should be added with add_unredirected_header()N)NotImplementedError)rkeyvalrrr add_headerKszMockRequest.add_headercCs||j|<dSr r rr(valuerrradd_unredirected_headerOsz#MockRequest.add_unredirected_headercCs|jSr r0rrrrget_new_headersRszMockRequest.get_new_headerscCs|Sr )r&rrrr unverifiableUszMockRequest.unverifiablecCs|Sr )rrrrrorigin_req_hostYszMockRequest.origin_req_hostcCs|Sr rrrrrr"]szMockRequest.host)N)__name__ __module__ __qualname____doc__rrrrr$r&r)r+r/r3r4propertyr5r6r"rrrrrs$    rc@s(eZdZdZddZddZddZdS) MockResponsezWraps a `httplib.HTTPMessage` to mimic a `urllib.addinfourl`. ...what? Basically, expose the parsed HTTP headers from the server response the way `cookielib` expects to see them. cCs ||_dS)zMake a MockResponse for `cookielib` to read. :param headers: a httplib.HTTPMessage or analogous carrying the headers N_headers)rrrrrriszMockResponse.__init__cCs|jSr r=rrrrinfopszMockResponse.infocCs|j|dSr )r> getheadersr'rrrr@sszMockResponse.getheadersN)r7r8r9r:rr?r@rrrrr<bsr<cCs8t|dr|jsdSt|}t|jj}|||dS)zExtract the cookies from the response into a CookieJar. :param jar: cookielib.CookieJar (not necessarily a RequestsCookieJar) :param request: our own requests.Request object :param response: urllib3.HTTPResponse object _original_responseN)hasattrrArr<msgextract_cookies)jarrresponsereqresrrrextract_cookies_to_jarws  rIcCs t|}|||dS)zj Produce an appropriate Cookie header string to be sent with `request`, or None. :rtype: str Cookie)radd_cookie_headerr4r)rErrrrrget_cookie_headers rMcCszg}|D]N}|j|krq|dur,||jkr,q|dur@||jkr@q||j|j|jfq|D]\}}}||||q\dS)zkUnsets a cookie by name, by default over all domains and paths. Wraps CookieJar.clear(), is O(n). N)r(domainrappendclear) cookiejarr(rNrZ clearablescookierrrremove_cookie_by_names rSc@seZdZdZdS)CookieConflictErrorzThere are two cookies that meet the criteria specified in the cookie jar. Use .get and .set and include domain and path args in order to be more specific. N)r7r8r9r:rrrrrTsrTcseZdZdZd1ddZddZddZd d Zd d Zd dZ ddZ ddZ ddZ ddZ ddZd2ddZfddZddZdd Zd!d"Zfd#d$Zfd%d&Zd3d'd(Zd4d)d*Zd+d,Zd-d.Zd/d0ZZS)5RequestsCookieJaraCompatibility class; is a cookielib.CookieJar, but exposes a dict interface. This is the CookieJar we create by default for requests and sessions that don't specify one, since some clients may expect response.cookies and session.cookies to support dict operations. Requests does not use the dict interface internally; it's just for compatibility with external client code. All requests code should work out of the box with externally provided instances of ``CookieJar``, e.g. ``LWPCookieJar`` and ``FileCookieJar``. Unlike a regular CookieJar, this class is pickleable. .. warning:: dictionary operations that are normally O(1) may be O(n). NcCs,z||||WSty&|YS0dS)zDict-like get() that also supports optional domain and path args in order to resolve naming collisions from using one cookie jar over multiple domains. .. warning:: operation is O(n), not O(1). N)_find_no_duplicatesKeyError)rr(r*rNrrrrrs zRequestsCookieJar.getcKs\|dur(t|||d|dddSt|tr|j|kr |durRtd||j}q |rb|Std|||fdS)aBoth ``__get_item__`` and ``get`` call this function: it's never used elsewhere in Requests. :param name: a string containing name of cookie :param domain: (optional) string containing domain of cookie :param path: (optional) string containing path of cookie :raises KeyError: if cookie is not found :raises CookieConflictError: if there are multiple cookies that match name and optionally domain and path :return: cookie.value Nz(There are multiple cookies with name, %rr)r_r(rNrrTr2rW)rr(rNrZtoReturnrRrrrrVws    z%RequestsCookieJar._find_no_duplicatescCs|j}|d|S)4Unlike a normal CookieJar, this class is pickleable. _cookies_lock)__dict__rpoprstaterrr __getstate__s  zRequestsCookieJar.__getstate__cCs$|j|d|jvr t|_dS)rrN)rr threadingRLockrrrrr __setstate__s  zRequestsCookieJar.__setstate__cCst}|||S)z(Return a copy of this RequestsCookieJar.)rUr)rZnew_cjrrrrs zRequestsCookieJar.copy)NNN)NN)NN)NN)r7r8r9r:rr^rarcrdrerfrgrkrmrnrprrrurvrwr[rrrVrrr __classcell__rrrsrrUs0            rUcCsN|dur dSt|dr|St|}||D]}|t|q4|S)Nr)rBrrPr[)rEZnew_jarrRrrr_copy_cookie_jars  rcKstd||ddddddddddidd }t|t|}|rNd }t|t|||t|d |d <t|d |d <|d d|d<t|d|d<tjfi|S)zMake a cookie from underspecified parameters. By default, the pair of `name` and `value` will be set for the domain '' and sent on every request (this is sometimes called a "supercookie"). rNrz/FTHttpOnly) versionr(r2portrNrsecureexpiresdiscardcomment comment_urlrestrfc2109z4create_cookie() got unexpected keyword arguments: %srport_specifiedrNdomain_specified.domain_initial_dotrpath_specified) dictr^ TypeErrorrbrboolrxrrJ)r(r2r\resultZbadargserrrrrrZs2 rZcCsd}|drNzttt|d}WqptyJtd|dYqp0n"|drpd}tt|d|}t|dt|dd|d||j |d dd |d idt|d |j |d pdd S)zBConvert a Morsel object into a Cookie containing the one k/v pair.Nzmax-agezmax-age: %s must be integerrz%a, %d-%b-%Y %H:%M:%S GMTrFrNrrhttponlyrrr) rrrrNrr(rrrrrr2r) inttime ValueErrorrcalendartimegmstrptimerZrr-r2)morselrZ time_templaterrrrYs4     rYTcCsR|durt}|durNdd|D}|D]$}|s8||vr(|t|||q(|S)a-Returns a CookieJar from a key/value dictionary. :param cookie_dict: Dict of key/values to insert into CookieJar. :param cookiejar: (optional) A cookiejar to add the cookies to. :param overwrite: (optional) If False, will not replace cookies already in the jar with new ones. NcSsg|] }|jqSr)r().0rRrrr z'cookiejar_from_dict..)rUr[rZ) cookie_dictrQ overwriteZnames_from_jarr(rrrcookiejar_from_dicts rcCstt|tjstdt|tr.t||dd}nBt|tjrpz||Wn&tyn|D]}||qZYn0|S)zAdd cookies to cookiejar and returns a merged CookieJar. :param cookiejar: CookieJar object to add the cookies to. :param cookies: Dictionary or CookieJar object to be added. z!You can only merge into CookieJarF)rQr) rXrr~rrrrAttributeErrorr[)rQcookiesZ cookie_in_jarrrr merge_cookies s    r)NN)NT)r:rrr collections_internal_utilsrcompatrrrrr ImportErrorZdummy_threadingobjectrr<rIrMrS RuntimeErrorrTr~MutableMappingrUrrZrYrrrrrrs.    H y#