B /WbH@sdZddlZddlZddlZddlmZddlmZmZm Z m Z m Z y ddl Z Wne k rlddlZ YnXGdddZGdd d Zd d Zd d ZdddZGdddeZGddde jeZddZddZddZd 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)MorselMutableMapping cookieliburlparse urlunparsec@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|_dS)N)_r _new_headersrurlschemetype)selfrequestr7/tmp/pip-target-ju3w756n/lib/python/requests/cookies.py__init__#szMockRequest.__init__cCs|jS)N)r)rrrrget_type(szMockRequest.get_typecCst|jjjS)N)rr r netloc)rrrrget_host+szMockRequest.get_hostcCs|S)N)r)rrrrget_origin_req_host.szMockRequest.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_url1s zMockRequest.get_full_urlcCsdS)NTr)rrrris_unverifiableEszMockRequest.is_unverifiablecCs||jjkp||jkS)N)r rr )rnamerrr has_headerHszMockRequest.has_headerNcCs|jj||j||S)N)r rrr )rr$defaultrrr get_headerKszMockRequest.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_headerNszMockRequest.add_headercCs||j|<dS)N)r )rr$valuerrradd_unredirected_headerTsz#MockRequest.add_unredirected_headercCs|jS)N)r )rrrrget_new_headersWszMockRequest.get_new_headerscCs|S)N)r#)rrrr unverifiableZszMockRequest.unverifiablecCs|S)N)r)rrrrorigin_req_host^szMockRequest.origin_req_hostcCs|S)N)r)rrrrr bszMockRequest.host)N)__name__ __module__ __qualname____doc__rrrrr"r#r%r'r+r-r.propertyr/r0r rrrrr s    r c@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)rrrrrrnszMockResponse.__init__cCs|jS)N)r7)rrrrinfouszMockResponse.infocCs|j|dS)N)r7 getheaders)rr$rrrr9xszMockResponse.getheadersN)r1r2r3r4rr8r9rrrrr6gsr6cCs8t|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)hasattrr:r r6msgextract_cookies)jarrresponsereqresrrrextract_cookies_to_jar|s  rBcCs t|}|||dS)zj Produce an appropriate Cookie header string to be sent with `request`, or None. :rtype: str Cookie)r add_cookie_headerr.r)r>rrrrrget_cookie_headers rFcCsg}xV|D]N}|j|krq |dk r.||jkr.q |dk rB||jkrBq ||j|j|jfq Wx |D]\}}}||||qbWdS)zkUnsets a cookie by name, by default over all domains and paths. Wraps CookieJar.clear(), is O(n). N)r$domainrappendclear) cookiejarr$rGr clearablescookierrrremove_cookie_by_names  rMc@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)r1r2r3r4rrrrrNsrNcseZdZdZd3ddZddZddZd d Zd d Zd dZ ddZ ddZ ddZ ddZ ddZd4ddZfddZddZdd Zd!d"Zfd#d$Zfd%d&Zd5d'd(Zd6d)d*Zd+d,Zd-d.Zd/d0Zd1d2ZZS)7RequestsCookieJaraCompatibility 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(y||||Stk r"|SXdS)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&rGrrrrrszRequestsCookieJar.getcKsX|dkr(t|||d|dddSt|trg}x4t|D](}|jdk r*|j|kr*dS||jqWdS)zvReturns True if there are multiple domains in the jar. Returns False otherwise. :rtype: bool NTF)rYrGrH)rrarLrrrmultiple_domains%s z"RequestsCookieJar.multiple_domainscCsJi}x@t|D]4}|dks$|j|kr|dks6|j|kr|j||j<qW|S)zTakes as an argument an optional domain and path and returns a plain old Python dict of name-value pairs of cookies that meet the requirements. :rtype: dict N)rYrGrr,r$)rrGr dictionaryrLrrrget_dict2s zRequestsCookieJar.get_dictcs&y t|Stk r dSXdS)NT)super __contains__rN)rr$) __class__rrriAs zRequestsCookieJar.__contains__cCs ||S)zDict-like __getitem__() for compatibility with client code. Throws exception if there are more than one cookie with name. In that case, use the more explicit get() method instead. .. warning:: operation is O(n), not O(1). )rP)rr$rrr __getitem__GszRequestsCookieJar.__getitem__cCs|||dS)zDict-like __setitem__ for compatibility with client code. Throws exception if there is already a cookie of that name in the jar. In that case, use the more explicit set() method instead. N)rX)rr$r,rrr __setitem__PszRequestsCookieJar.__setitem__cCst||dS)zlDeletes a cookie given a name. Wraps ``cookielib.CookieJar``'s ``remove_cookie_by_name()``. N)rM)rr$rrr __delitem__WszRequestsCookieJar.__delitem__csHt|jdr4|jdr4|jdr4|jdd|_tj|f||S)N startswith"z\")r;r,rnendswithreplacerhrU)rrLargsrV)rjrrrU]s    zRequestsCookieJar.set_cookiecs<t|tjr,x*|D]}|t|qWn t|dS)zAUpdates this jar with cookies from another CookieJar or dict-likeN)rRr CookieJarrUcopyrhupdate)rotherrL)rjrrrvfs  zRequestsCookieJar.updatecCsdxDt|D]8}|j|kr |dks*|j|kr |dks<|j|kr |jSq Wtd|d|d|dS)aRequests uses this method internally to get cookie values. If there are conflicting cookies, _find arbitrarily chooses one. See _find_no_duplicates if you want an exception thrown if there are conflicting cookies. :param name: a string containing name of cookie :param domain: (optional) string containing domain of cookie :param path: (optional) string containing path of cookie :return: cookie.value Nzname=z , domain=z, path=)rYr$rGrr,rQ)rr$rGrrLrrr_findns   zRequestsCookieJar._findcCsd}xZt|D]N}|j|kr|dks.|j|kr|dks@|j|kr|dk rVtd||j}qW|rh|Std|d|d|dS)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, zname=z , domain=z, path=)rYr$rGrrNr,rQ)rr$rGrtoReturnrLrrrrPs    z%RequestsCookieJar._find_no_duplicatescCs|j}|d|S)z4Unlike a normal CookieJar, this class is pickleable. _cookies_lock)__dict__rupop)rstaterrr __getstate__s  zRequestsCookieJar.__getstate__cCs$|j|d|jkr t|_dS)z4Unlike a normal CookieJar, this class is pickleable.rzN)r{rv threadingRLockrz)rr}rrr __setstate__s  zRequestsCookieJar.__setstate__cCs"t}|||||S)z(Return a copy of this RequestsCookieJar.)rO set_policy get_policyrv)rnew_cjrrrrus zRequestsCookieJar.copycCs|jS)z&Return the CookiePolicy instance used.)_policy)rrrrrszRequestsCookieJar.get_policy)NNN)NN)NN)NN)r1r2r3r4rrXrZr\r]r^r_r`rbrdrergrirkrlrmrUrvrxrPr~rrur __classcell__rr)rjrrOs2           rOcCsR|dkr dSt|dr|St|}|x|D]}|t|q6W|S)Nru)r;rurIrU)r>new_jarrLrrr_copy_cookie_jars   rcKsd||ddddddddddidd }t|t|}|rJtd t|||t|d |d <t|d |d <|d d|d<t|d|d<tjf|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"). rNrp/FTHttpOnly) versionr$r,portrGrsecureexpiresdiscardcomment comment_urlrestrfc2109z2create_cookie() got unexpected keyword arguments: rport_specifiedrGdomain_specified.domain_initial_dotrpath_specified)rX TypeErrorr[rvboolrnrrC)r$r,rVresultbadargsrrrrTs. rTcCsd}|drTyttt|d}Wqvtk rPtd|ddYqvXn"|drvd}tt|d|}t|dt|dd|d ||j |d dd |d idt|d |j |dpdd S)zBConvert a Morsel object into a Cookie containing the one k/v pair.Nzmax-agez max-age: z must be integerrz%a, %d-%b-%Y %H:%M:%S GMTrFrGrrhttponlyrrr) rrrrGrr$rrrrrr,r) inttime ValueErrorrcalendartimegmstrptimerTrr)r,)morselr time_templaterrrrSs.   rSTcCsV|dkrt}|dk rRdd|D}x,|D]$}|s:||kr*|t|||q*W|S)aCReturns 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. :rtype: CookieJar NcSsg|] }|jqSr)r$).0rLrrr sz'cookiejar_from_dict..)rOrUrT) cookie_dictrJ overwritenames_from_jarr$rrrcookiejar_from_dict s   rcCszt|tjstdt|tr.t||dd}nHt|tjrvy||Wn,tk rtx|D]}||q^WYnX|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. :rtype: CookieJar z!You can only merge into CookieJarF)rJr) rRrrtrdictrrvAttributeErrorrU)rJcookies cookie_in_jarrrr merge_cookiess    r)NN)NT)r4rrur_internal_utilsrcompatrrrrrr ImportErrorZdummy_threadingr r6rBrFrM RuntimeErrorrNrtrOrrTrSrrrrrrs.  P  %