File "request.cpython-38.opt-1.pyc"

Full Path: /home/attunedd/public_html/byp/izo/con7ext_sym404/rintoar.txt/opt/alt/python38/lib64/python3.8/urllib/__pycache__/request.cpython-38.opt-1.pyc
File size: 71.03 KB
MIME-type: text/x-bytecode.python
Charset: 8 bit

U

if\!@sdZddlZddlZddlZddlZddlZddlZddlZddl	Z	ddl
Z
ddlZddlZddl
Z
ddlZddlZddlZddlZddlmZmZmZddlmZmZmZmZmZmZmZmZmZm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&m'Z'm(Z(ddl)m*Z*m+Z+zddl,Z,Wne-k
rdZ.YnXdZ.dd	d
ddd
ddddddddddddddddddd d!d"d#d$d%d&d'd(g!Z/d)e
j0dd*Z1da2dej3fddddd+d,dZ4d-d Z5gZ6dd.d%Z7d/d&Z8e
9d0e
j:Z;d1d2Z<Gd3ddZ=Gd4d	d	Z>d5d!Z?Gd6d
d
Z@Gd7dde@ZAGd8dde@ZBGd9dde@ZCd:d;ZDGd<dde@ZEGd=ddZFGd>ddeFZGGd?ddeGZHGd@ddZIGdAddeIe@ZJGdBddeIe@ZKejLZMGdCddZNGdDdde@eNZOGdEdde@eNZPGdFdGdGe@ZQGdHddeQZReSejTdIr*GdJdKdKeQZUe/VdKGdLd
d
e@ZWGdMdde@ZXdNdOZYdPdQZZGdRdde@Z[dSdTZ\GdUdde@Z]GdVdde]Z^GdWdde@Z_dXZ`ejadYkrddZlbmcZcmdZdnd[d#Zcd\d"ZdiZeGd]d'd'ZfGd^d(d(efZgdahd_d`ZidajdadbZkdaldcddZmdandedfZoGdgdhdhZpdidjZqddkdlZrdmdnZsdodpZte
judqkrddrlvmwZwmxZxdsdtZydudvZzdwdxZ{dyd$Z|n6ejadYkrdzd{Z}d|d$Z|d}d~Z~ddxZ{neqZ|erZ{dS)a
An extensible library for opening URLs using a variety of protocols

The simplest way to use this module is to call the urlopen function,
which accepts a string containing a URL or a Request object (described
below).  It opens the URL and returns the results as file-like
object; the returned object has some extra methods described below.

The OpenerDirector manages a collection of Handler objects that do
all the actual work.  Each Handler implements a particular protocol or
option.  The OpenerDirector is a composite object that invokes the
Handlers needed to open the requested URL.  For example, the
HTTPHandler performs HTTP GET and POST requests and deals with
non-error returns.  The HTTPRedirectHandler automatically deals with
HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
deals with digest authentication.

urlopen(url, data=None) -- Basic usage is the same as original
urllib.  pass the url and optionally data to post to an HTTP URL, and
get a file-like object back.  One difference is that you can also pass
a Request instance instead of URL.  Raises a URLError (subclass of
OSError); for HTTP errors, raises an HTTPError, which can also be
treated as a valid response.

build_opener -- Function that creates a new OpenerDirector instance.
Will install the default handlers.  Accepts one or more Handlers as
arguments, either instances or Handler classes that it will
instantiate.  If one of the argument is a subclass of the default
handler, the argument will be installed instead of the default.

install_opener -- Installs a new opener as the default opener.

objects of interest:

OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
the Handler classes, while dealing with requests and responses.

Request -- An object that encapsulates the state of a request.  The
state can be as simple as the URL.  It can also include extra HTTP
headers, e.g. a User-Agent.

BaseHandler --

internals:
BaseHandler and parent
_call_chain conventions

Example usage:

import urllib.request

# set up authentication info
authinfo = urllib.request.HTTPBasicAuthHandler()
authinfo.add_password(realm='PDQ Application',
                      uri='https://mahler:8092/site-updates.py',
                      user='klem',
                      passwd='geheim$parole')

proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})

# build a new opener that adds authentication and caching FTP handlers
opener = urllib.request.build_opener(proxy_support, authinfo,
                                     urllib.request.CacheFTPHandler)

# install it
urllib.request.install_opener(opener)

f = urllib.request.urlopen('http://www.python.org/')
N)URLError	HTTPErrorContentTooShortError)urlparseurlspliturljoinunwrapquoteunquote
_splittype
_splithost
_splitport
_splituser_splitpasswd
_splitattr_splitquery_splitvalue	_splittag	_to_bytesunquote_to_bytes
urlunparse)
addinfourladdclosehookFTRequestOpenerDirectorBaseHandlerHTTPDefaultErrorHandlerHTTPRedirectHandlerHTTPCookieProcessorProxyHandlerHTTPPasswordMgrHTTPPasswordMgrWithDefaultRealmHTTPPasswordMgrWithPriorAuthAbstractBasicAuthHandlerHTTPBasicAuthHandlerProxyBasicAuthHandlerAbstractDigestAuthHandlerHTTPDigestAuthHandlerProxyDigestAuthHandlerHTTPHandlerFileHandler
FTPHandlerCacheFTPHandlerDataHandlerUnknownHandlerHTTPErrorProcessorurlopeninstall_openerbuild_openerpathname2urlurl2pathname
getproxiesurlretrieve
urlcleanup	URLopenerFancyURLopenerz%d.%d)cafilecapath	cadefaultcontextc
Cs|s|s|rfddl}|dtd|dk	r2tdts>tdtjtjj||d}t	|d}t
|}	n0|r~t	|d}t
|}	ntdkrt
a}	nt}	|	|||S)	a$
Open the URL url, which can be either a string or a Request object.

    *data* must be an object specifying additional data to be sent to
    the server, or None if no such data is needed.  See Request for
    details.

    urllib.request module uses HTTP/1.1 and includes a "Connection:close"
    header in its HTTP requests.

    The optional *timeout* parameter specifies a timeout in seconds for
    blocking operations like the connection attempt (if not specified, the
    global default timeout setting will be used). This only works for HTTP,
    HTTPS and FTP connections.

    If *context* is specified, it must be a ssl.SSLContext instance describing
    the various SSL options. See HTTPSConnection for more details.

    The optional *cafile* and *capath* parameters specify a set of trusted CA
    certificates for HTTPS requests. cafile should point to a single file
    containing a bundle of CA certificates, whereas capath should point to a
    directory of hashed certificate files. More information can be found in
    ssl.SSLContext.load_verify_locations().

    The *cadefault* parameter is ignored.

    This function always returns an object which can work as a context
    manager and has methods such as

    * geturl() - return the URL of the resource retrieved, commonly used to
      determine if a redirect was followed

    * info() - return the meta-information of the page, such as headers, in the
      form of an email.message_from_string() instance (see Quick Reference to
      HTTP Headers)

    * getcode() - return the HTTP status code of the response.  Raises URLError
      on errors.

    For HTTP and HTTPS URLs, this function returns a http.client.HTTPResponse
    object slightly modified. In addition to the three new methods above, the
    msg attribute contains the same information as the reason attribute ---
    the reason phrase returned by the server --- instead of the response
    headers as it is specified in the documentation for HTTPResponse.

    For FTP, file, and data URLs and requests explicitly handled by legacy
    URLopener and FancyURLopener classes, this function returns a
    urllib.response.addinfourl object.

    Note that None may be returned if no handler handles the request (though
    the default installed global OpenerDirector uses UnknownHandler to ensure
    this never happens).

    In addition, if proxy settings are detected (for example, when a *_proxy
    environment variable like http_proxy is set), ProxyHandler is default
    installed and makes sure the requests are handled through the proxy.

    rNzJcafile, capath and cadefault are deprecated, use a custom context instead.r:zDYou can't pass both context and any of cafile, capath, and cadefaultzSSL support not available)r;r<)r>)
warningswarnDeprecationWarning
ValueError	_have_sslsslZcreate_default_contextZPurposeZSERVER_AUTHHTTPSHandlerr2_openeropen)
urldatatimeoutr;r<r=r>r?Z
https_handleropenerrL3/opt/alt/python38/lib64/python3.8/urllib/request.pyr0s2<




cCs|adSN)rF)rKrLrLrMr1sc
Cs:t|\}}tt||}|}|dkrN|sNtj||fW5QRS|r^t|d}nt	j
dd}|j}t
||||f}	d}
d}d}d}
d|krt|d	}|r||
|
|||
}|sq|t|7}|||
d
7}
|r||
|
|qW5QRXW5QRX|dkr6||kr6td||f|	|	S)aW
    Retrieve a URL into a temporary location on disk.

    Requires a URL argument. If a filename is passed, it is used as
    the temporary file location. The reporthook argument should be
    a callable that accepts a block number, a read size, and the
    total file size of the URL target. The data argument should be
    valid URL encoded data.

    If a filename is passed and the URL points to a local resource,
    the result is a copy from local file to new file.

    Returns a tuple containing the path to the newly created
    data file as well as the resulting HTTPMessage object.
    filewbF)delete rcontent-lengthContent-Length1retrieval incomplete: got only %i out of %i bytes)r
contextlibclosingr0infoospathnormpathrGtempfileZNamedTemporaryFilename_url_tempfilesappendintreadlenwriter)rHfilename
reporthookrIZurl_typer\fpheaderstfpresultbssizercblocknumblockrLrLrMr6sH


"c	CsDtD](}zt|Wqtk
r*YqXqtdd=tr@dadS)z0Clean up temporary files from urlretrieve calls.N)r`r[unlinkOSErrorrF)Z	temp_filerLrLrMr7$s
z:\d+$cCs<|j}t|d}|dkr&|dd}td|d}|S)zReturn request-host, as defined by RFC 2965.

    Variation from RFC: returned value is lowercased, for convenient
    comparison.

    rVHost)full_urlr
get_header_cut_port_resublower)requestrHhostrLrLrMrequest_host3sr{c@seZdZdidddfddZeddZejddZejddZed	d
Zejdd
Zejdd
Zd
dZ	ddZ
ddZddZddZ
ddZddZddZd#ddZdd Zd!d"ZdS)$rNFc	Csl||_i|_i|_d|_||_d|_|D]\}}|||q,|dkrRt|}||_	||_
|rh||_dSrN)rtriunredirected_hdrs_datarI_tunnel_hostitems
add_headerr{origin_req_hostunverifiablemethod)	selfrHrIrirrrkeyvaluerLrLrM__init__EszRequest.__init__cCs|jrd|j|jS|jS)Nz{}#{})fragmentformat	_full_urlrrLrLrMrtWszRequest.full_urlcCs(t||_t|j\|_|_|dSrN)rrrr_parserrHrLrLrMrt]s
cCsd|_d|_d|_dS)Nrr)rrselectorrrLrLrMrtdscCs|jSrN)r}rrLrLrMrIjszRequest.datacCs(||jkr$||_|dr$|ddS)NContent-length)r}
has_header
remove_header)rrIrLrLrMrIns

cCs
d|_dSrN)rIrrLrLrMrIxscCsNt|j\|_}|jdkr(td|jt|\|_|_|jrJt|j|_dS)Nzunknown url type: %r)	rrtyperBrtrrzrr
)rrestrLrLrMr|s
zRequest._parsecCs|jdk	rdnd}t|d|S)z3Return a string indicating the HTTP request method.NPOSTGETr)rIgetattr)rZdefault_methodrLrLrM
get_methodszRequest.get_methodcCs|jSrN)rtrrLrLrMget_full_urlszRequest.get_full_urlcCs2|jdkr|js|j|_n||_|j|_||_dS)Nhttps)rr~rzrtr)rrzrrLrLrM	set_proxys

zRequest.set_proxycCs|j|jkSrN)rrtrrLrLrM	has_proxyszRequest.has_proxycCs||j|<dSrN)ri
capitalizerrvalrLrLrMrszRequest.add_headercCs||j|<dSrN)r|rrrLrLrMadd_unredirected_headerszRequest.add_unredirected_headercCs||jkp||jkSrN)rir|rheader_namerLrLrMrs
zRequest.has_headercCs|j||j||SrN)rigetr|)rrdefaultrLrLrMruszRequest.get_headercCs |j|d|j|ddSrN)ripopr|rrLrLrMrszRequest.remove_headercCs|j|j}t|SrN)r|rilistr)rhdrsrLrLrMheader_itemsszRequest.header_items)N)__name__
__module____qualname__rpropertyrtsetterdeleterrIrrrrrrrrrurrrLrLrLrMrCs8





	

c@sNeZdZddZddZddZddZd	ejfd
dZ	ddd
Z
ddZd	S)rcCs6dt}d|fg|_g|_i|_i|_i|_i|_dS)NPython-urllib/%sz
User-agent)__version__
addheadershandlershandle_openhandle_errorprocess_responseprocess_request)rZclient_versionrLrLrMrszOpenerDirector.__init__c	CsTt|dstdt|d}t|D]}|dkr6q&|d}|d|}||dd}|dr|d|d}||dd}zt|}Wntk
rYnX|j	|i}	|	|j|<n>|dkr|}|j
}	n*|d	kr|}|j}	n|d
kr&|}|j}	nq&|	
|g}
|
r"t|
|n
|
|d}q&|rPt|j|||dS)N
add_parentz%expected BaseHandler instance, got %rF)redirect_requestdo_open
proxy_open_rVerrorrGresponseryT)hasattr	TypeErrorrdirfind
startswithrbrBrrrrr
setdefaultbisectZinsortrarr)rhandlerZaddedmethiprotocolZ	conditionjkindlookuprrLrLrMadd_handlersL



zOpenerDirector.add_handlercCsdSrNrLrrLrLrMcloseszOpenerDirector.closec	Gs<||d}|D]&}t||}||}|dk	r|SqdS)NrL)rr)	rchainr	meth_nameargsrrfuncrkrLrLrM_call_chains
zOpenerDirector._call_chainNc
Cst|trt||}n|}|dk	r(||_||_|j}|d}|j|gD]}t||}||}qJt	
d|j|j|j|
|||}	|d}|j|gD]}t||}|||	}	q|	S)NZ_requestzurllib.RequestZ	_response)
isinstancestrrrIrJrrrrsysauditrtrir_openr)
rfullurlrIrJreqrrZ	processorrrrLrLrMrGs$



zOpenerDirector.opencCsP||jdd|}|r|S|j}||j||d|}|r>|S||jdd|S)NrZdefault_openrunknownunknown_open)rrr)rrrIrkrrLrLrMrs$

zOpenerDirector._opencGs~|dkr,|jd}|d}d|}d}|}n|j}|d}d}|||f|}|j|}|r^|S|rz|dd	f|}|j|SdS)
Nhttprrr:z
http_error_%srVZ_errorrrhttp_error_default)rr)rprotordictrZhttp_errZ	orig_argsrkrLrLrMr&s 

zOpenerDirector.error)N)rrrrrrrsocket_GLOBAL_DEFAULT_TIMEOUTrGrrrLrLrLrMrs/
c	Gst}ttttttttt	g	}t
tjdr2|
tt}|D]B}|D]8}t|trht||r|||qDt||rD||qDq<|D]}||q|D]}||q|D]}t|tr|}||q|S)a*Create an opener object from a list of handlers.

    The opener will use several default handlers, including support
    for HTTP, FTP and when applicable HTTPS.

    If any of the handlers passed as arguments are subclasses of the
    default handlers, the default handlers will not be used.
    HTTPSConnection)rrr.r)rrr+r*r/r-rrclientrarEsetrr
issubclassaddremover)rrKZdefault_classesskipklassZcheckhrLrLrMr2?s8	




c@s(eZdZdZddZddZddZdS)	rcCs
||_dSrN)parent)rrrLrLrMrfszBaseHandler.add_parentcCsdSrNrLrrLrLrMriszBaseHandler.closecCst|dsdS|j|jkS)N
handler_orderT)rr)rotherrLrLrM__lt__ms
zBaseHandler.__lt__N)rrrrrrrrLrLrLrMrcsc@s eZdZdZdZddZeZdS)r/zProcess HTTP error responses.icCsH|j|j|}}}d|kr,dksDn|jd|||||}|S)N,r)codemsgrZrr)rryrrrrrLrLrM
http_responsezsz HTTPErrorProcessor.http_responseN)rrr__doc__rrhttps_responserLrLrLrMr/vsc@seZdZddZdS)rcCst|j||||dSrN)rrt)rrrhrrrrLrLrMrsz*HTTPDefaultErrorHandler.http_error_defaultN)rrrrrLrLrLrMrsc@s4eZdZdZdZddZddZeZZZ	dZ
dS)	r
c	st|}|dkr|dks:|dkr(|dks:t|j|||||dd}dfdd	|jD}t|||jd
dS)aReturn a Request or None in response to a redirect.

        This is called by the http_error_30x methods when a
        redirection response is received.  If a redirection should
        take place, return a new Request to allow http_error_30x to
        perform the redirect.  Otherwise, raise HTTPError if no-one
        else should try to handle this url.  Return None if you can't
        but another Handler might.
        )-./i3)rZHEAD)rrrr z%20)rTzcontent-typecs"i|]\}}|kr||qSrL)rx.0kvZCONTENT_HEADERSrLrM
<dictcomp>sz8HTTPRedirectHandler.redirect_request.<locals>.<dictcomp>T)rirr)rrrtreplacerirrr)	rrrhrrrinewurlmZ
newheadersrLrrMrs
z$HTTPRedirectHandler.redirect_requestc
CsLd|kr|d}nd|kr$|d}ndSt|}|jdkrRt||d||f|||jsn|jrnt|}d|d<t|}t|dtj	d}t
|j|}|||||||}|dkrdSt
|d	r|j}	|_|	|d
|jkst|	|jkrt|j||j|||ni}	|_|_|	|d
d|	|<|||jj||jdS)
Nlocationurirrftprrz+%s - Redirection to url '%s' is not allowed/r:z
iso-8859-1)encodingsafe
redirect_dictrrVrJ)rschemerr\Znetlocrrr	stringZpunctuationrrtrrr
rmax_repeatsrdmax_redirectionsinf_msgrcrrrGrJ)
rrrhrrrirurlpartsnewZvisitedrLrLrMhttp_error_302sT



z"HTTPRedirectHandler.http_error_302zoThe HTTP server returned a redirect error that would lead to an infinite loop.
The last 30x error message was:
N)rrrrrrrhttp_error_301http_error_303http_error_307rrLrLrLrMrs&<c
Cst|\}}|ds d}|}nZ|ds6td|d|krV|d}|d|}n|dd}|dkrnd}|d|}t|\}}|dk	rt|\}}	nd}}	|||	|fS)aReturn (scheme, user, password, host/port) given a URL or an authority.

    If a URL is supplied, it must have an authority (host:port) component.
    According to RFC 3986, having an authority component means the URL must
    have two slashes after the scheme.
    r
N//zproxy URL with no authority: %r@r:rS)rrrBrrr)
proxyrZr_scheme	authorityZhost_separatorendZuserinfohostportuserpasswordrLrLrM_parse_proxys$


r"c@s"eZdZdZdddZddZdS)rdNcCsP|dkrt}||_|D].\}}|}t|d||||jfddqdS)Nz%s_opencSs||||SrNrL)rrrrrLrLrM<lambda>)sz'ProxyHandler.__init__.<locals>.<lambda>)r5proxiesrrxsetattrr)rr&rrHrLrLrMr!s
zProxyHandler.__init__cCs|j}t|\}}}}|dkr"|}|jr6t|jr6dS|rv|rvdt|t|f}	t|	d}
|	dd|
t|}|
||||ks|dkrdS|jj||j
dSdS)N%s:%sasciiProxy-authorizationBasic rr)rr"rzproxy_bypassr
base64	b64encodeencodedecoderrrrGrJ)rrrrZ	orig_typeZ
proxy_typer r!rZ	user_passZcredsrLrLrMr,s"zProxyHandler.proxy_open)N)rrrrrrrLrLrLrMrs
c@s6eZdZddZddZddZd
dd	Zd
dZdS)r cCs
i|_dSrN)passwdrrLrLrMrJszHTTPPasswordMgr.__init__cs\t|tr|g}|jkr$ij|<dD].tfdd|D}||fj||<q(dS)NTFc3s|]}|VqdSrN)
reduce_uri)rudefault_portrrLrM	<genexpr>Tsz/HTTPPasswordMgr.add_password.<locals>.<genexpr>)rrr1tuple)rrealmrr r1reduced_urirLr5rMadd_passwordMs


zHTTPPasswordMgr.add_passwordc	Cs`|j|i}dD]H}|||}|D].\}}|D] }|||r6|Sq6q*qdS)Nr2NN)r1rr3r	is_suburi)	rr9authuriZdomainsr6reduced_authuriZurisZauthinforrLrLrMfind_user_passwordXsz"HTTPPasswordMgr.find_user_passwordTc
Cst|}|dr.|d}|d}|dp*d}nd}|}d}t|\}}|r~|dkr~|dk	r~ddd|}	|	dk	r~d	||	f}||fS)
z@Accept authority or URI and extract only the authority and path.rVrr:r
NPirz%s:%d)rr
r)
rrr6partsrrr\rzportZdportrLrLrMr3bs$zHTTPPasswordMgr.reduce_uricCsN||krdS|d|dkr dS|d}|dddkr@|d7}|d|S)zcCheck if test is below base in a URI tree

        Both args must be URIs in reduced form.
        TrFrVrSNr
)r)rbasetestprefixrLrLrMr=yszHTTPPasswordMgr.is_suburiN)T)rrrrr;r@r3r=rLrLrLrMr Hs


c@seZdZddZdS)r!cCs0t|||\}}|dk	r"||fSt|d|SrN)r r@)rr9r>r r!rLrLrMr@sz2HTTPPasswordMgrWithDefaultRealm.find_user_passwordN)rrrr@rLrLrLrMr!scs<eZdZfddZd
fdd	ZdddZdd	ZZS)r"csi|_tj||dSrN)
authenticatedsuperrrrkwargs	__class__rLrMrsz%HTTPPasswordMgrWithPriorAuth.__init__Fcs<||||dk	r&td|||t||||dSrN)update_authenticatedrHr;)rr9rr r1is_authenticatedrKrLrMr;sz)HTTPPasswordMgrWithPriorAuth.add_passwordcCs>t|tr|g}dD]$}|D]}|||}||j|<qqdSNr2)rrr3rG)rrrNr6r4r:rLrLrMrMs
z1HTTPPasswordMgrWithPriorAuth.update_authenticatedcCsDdD]:}|||}|jD]"}|||r|j|SqqdSrO)r3rGr=)rr>r6r?rrLrLrMrNs

z-HTTPPasswordMgrWithPriorAuth.is_authenticated)F)F)rrrrr;rMrN
__classcell__rLrLrKrMr"s

c@sTeZdZedejZdddZddZddZ	d	d
Z
ddZd
dZeZ
eZdS)r#z1(?:^|,)[ 	]*([^ 	,]+)[ 	]+realm=(["']?)([^"']*)\2NcCs"|dkrt}||_|jj|_dSrN)r r1r;)rZpassword_mgrrLrLrMrsz!AbstractBasicAuthHandler.__init__ccspd}tj|D]6}|\}}}|dkr8tdtd||fVd}q|sl|r^|d}nd}|dfVdS)NF)"'zBasic Auth Realm was unquotedTrrr)r#rxfinditergroupsr?r@UserWarningsplit)rheaderZfound_challengeZmorr	r9rLrLrM_parse_realms
z%AbstractBasicAuthHandler._parse_realmc	Cs~||}|sdSd}|D]H}||D]8\}}|dkrB|}q(|dk	r(||||Sq(q|dk	rztd|fdS)NbasiczBAbstractBasicAuthHandler does not support the following scheme: %r)Zget_allrZrxretry_http_basic_authrB)	rauthreqrzrriZunsupportedrYrr9rLrLrMhttp_error_auth_reqeds
z.AbstractBasicAuthHandler.http_error_auth_reqedcCs||j||\}}|dk	rtd||f}dt|d}||jd|krTdS||j||j	j
||jdSdSdS)Nr(r+r)r)r1r@r-r.r/r0ruauth_headerrrrGrJ)rrzrr9r pwrawauthrLrLrMr\sz.AbstractBasicAuthHandler.retry_http_basic_authcCstt|jdr|j|js|S|dsp|jd|j\}}d||}t	|
}|dd||S)NrN
Authorizationz{0}:{1}zBasic {})
rr1rNrtrr@rr/r-Zstandard_b64encoder0rstrip)rrr r1ZcredentialsZauth_strrLrLrMhttp_requests
z%AbstractBasicAuthHandler.http_requestcCsLt|jdrHd|jkr"dkr8nn|j|jdn|j|jd|S)NrNrrTF)rr1rrMrt)rrrrLrLrMrs
z&AbstractBasicAuthHandler.http_response)N)rrrrecompileIrTrrZr^r\rer
https_requestrrLrLrLrMr#s

c@seZdZdZddZdS)r$rccCs|j}|d|||}|S)Nwww-authenticate)rtr^)rrrhrrrirHrrLrLrMhttp_error_401$sz#HTTPBasicAuthHandler.http_error_401N)rrrr_rkrLrLrLrMr$ sc@seZdZdZddZdS)r%r*cCs|j}|d|||}|SNproxy-authenticate)rzr^)rrrhrrrirrrLrLrMhttp_error_407/sz$ProxyBasicAuthHandler.http_error_407N)rrrr_rnrLrLrLrMr%+sc@sNeZdZdddZddZddZdd	Zd
dZdd
ZddZ	ddZ
dS)r&NcCs4|dkrt}||_|jj|_d|_d|_d|_dSNr)r r1r;retriednonce_count
last_nonce)rr1rLrLrMrIs
z"AbstractDigestAuthHandler.__init__cCs
d|_dSro)rprrLrLrMreset_retry_countRsz+AbstractDigestAuthHandler.reset_retry_countcCs|||d}|jdkr*t|jdd|dn|jd7_|rx|d}|dkr`|||S|dkrxtd|dS)	Nizdigest auth failedrVrZdigestr[zEAbstractDigestAuthHandler does not support the following scheme: '%s')rrprrtrXrxretry_http_digest_authrB)rr_rzrrir]rrLrLrMr^Us

z/AbstractDigestAuthHandler.http_error_auth_reqedcCsz|dd\}}ttdt|}|||}|rvd|}|j|jd|krRdS||j||j	j
||jd}|SdS)NrrVz	Digest %sr)rXparse_keqv_listfilterparse_http_listget_authorizationrirr_rrrGrJ)rrrbtokenZ	challengechalZauth_valZresprLrLrMruisz0AbstractDigestAuthHandler.retry_http_digest_authcCs@d|j|tf}|dtd}t|}|ddS)Nz	%s:%s:%s:r))rqtimectimer/_randombyteshashlibsha1	hexdigest)rnoncesbdigrLrLrM
get_cnonceusz$AbstractDigestAuthHandler.get_cnoncecCsz6|d}|d}|d}|dd}|dd}Wntk
rLYdSX||\}}	|dkrhdS|j||j\}
}|
dkrdS|jdk	r||j|}nd}d|
||f}
d||j	f}|dkr|	||
d|||f}n~d	|
d
kr\||jkr|jd7_nd|_||_d|j}|
|}d
|||d	||f}|	||
|}ntd|d|
|||j	|f}|r|d|7}|r|d|7}|d|7}|r|d||f7}|S)Nr9rqop	algorithmMD5opaquez%s:%s:%sr(rb,rVz%08xz%s:%s:%s:%s:%szqop '%s' is not supported.z>username="%s", realm="%s", nonce="%s", uri="%s", response="%s"z
, opaque="%s"z
, digest="%s"z, algorithm="%s"z, qop=auth, nc=%s, cnonce="%s")rKeyErrorget_algorithm_implsr1r@rtrIget_entity_digestrrrXrrrqrr)rrr{r9rrrrHKDr r`ZentdigZA1ZA2ZrespdigZncvalueZcnonceZnoncebitrDrLrLrMrys\




z+AbstractDigestAuthHandler.get_authorizationcsD|dkrddn|dkr$ddntd|fdd}|fS)NrcSst|dSNr))rZmd5r/rxrLrLrMr%z?AbstractDigestAuthHandler.get_algorithm_impls.<locals>.<lambda>ZSHAcSst|dSr)rrr/rrrLrLrMr%rz.Unsupported digest authentication algorithm %rcsd||fS)Nr(rL)rdrrLrMr%r)rB)rrrrLrrMrs

z-AbstractDigestAuthHandler.get_algorithm_implscCsdSrNrL)rrIr{rLrLrMrsz+AbstractDigestAuthHandler.get_entity_digest)N)rrrrrsr^rurryrrrLrLrLrMr&>s
	>
c@s eZdZdZdZdZddZdS)r'zAn authentication protocol defined by RFC 2069

    Digest authentication improves on basic authentication because it
    does not transmit passwords in the clear.
    rccCs*t|jd}|d|||}||S)NrVrj)rrtr^rsrrrhrrrirzretryrLrLrMrksz$HTTPDigestAuthHandler.http_error_401N)rrrrr_rrkrLrLrLrMr'sc@seZdZdZdZddZdS)r(Proxy-AuthorizationrcCs"|j}|d|||}||Srl)rzr^rsrrLrLrMrnsz%ProxyDigestAuthHandler.http_error_407N)rrrr_rrnrLrLrLrMr(sc@s6eZdZd
ddZddZddZdd	Zd
dZdS)AbstractHTTPHandlerrcCs
||_dSrN_debuglevel)r
debuglevelrLrLrMrszAbstractHTTPHandler.__init__cCs
||_dSrNr)rlevelrLrLrMset_http_debuglevelsz'AbstractHTTPHandler.set_http_debuglevelcCstjj|j|SrN)rrHTTPConnection_get_content_lengthrIrrryrLrLrMrsz'AbstractHTTPHandler._get_content_lengthcCs|j}|std|jdk	r|j}t|tr8d}t||dsN|dd|ds|ds||}|dk	r|dt|n|dd|}|	rt
|j\}}t|\}}	|ds|d||j
jD]&\}
}|
}
||
s||
|q|S)	N
no host givenz\POST data should be bytes, an iterable of bytes, or a file object. It cannot be of type str.zContent-type!application/x-www-form-urlencodedrTransfer-encodingZchunkedrs)rzrrIrrrrrrrrrrrrr)rryrzrIrZcontent_lengthZsel_hostrZselZsel_pathr_rrLrLrMdo_request_sJ






zAbstractHTTPHandler.do_request_c

sT|j}|std||fd|ji|}||jt|jfdd|j	Ddd<dd	D|j
ri}d}|kr|||<|=|j|j
|d	z`z&|j|
|j|j|d
dWn,tk
r}zt|W5d}~XYnX|}	Wn|YnX|jr>|jd|_||	_|	j|	_|	S)
zReturn an HTTPResponse object for the request, using http_class.

        http_class must implement the HTTPConnection API from http.client.
        rrJcsi|]\}}|kr||qSrLrLrrirLrMr/sz/AbstractHTTPHandler.do_open.<locals>.<dictcomp>r
ConnectioncSsi|]\}}||qSrL)title)rr_rrLrLrMr<srrr)Zencode_chunkedN)rzrrJZset_debuglevelrrr|updaterirr~Z
set_tunnelryrrrIrrqgetresponserZsockrrHreasonr)
rZ
http_classrZhttp_conn_argsrzrZtunnel_headersZproxy_auth_hdrerrr$rLrrMr!sB



zAbstractHTTPHandler.do_openN)r)rrrrrrrrrLrLrLrMrs

&rc@seZdZddZejZdS)r)cCs|tjj|SrN)rrrrrrrLrLrM	http_openfszHTTPHandler.http_openN)rrrrrrrerLrLrLrMr)dsrc@s$eZdZdddZddZejZdS)rErNcCst||||_||_dSrN)rr_context_check_hostname)rrr>check_hostnamerLrLrMroszHTTPSHandler.__init__cCs|jtjj||j|jdS)N)r>r)rrrrrrrrLrLrM
https_opentszHTTPSHandler.https_open)rNN)rrrrrrrrirLrLrLrMrEms
rEc@s.eZdZdddZddZddZeZeZdS)	rNcCs$ddl}|dkr|j}||_dSro)Zhttp.cookiejar	cookiejarZ	CookieJar)rrrrLrLrMr}s
zHTTPCookieProcessor.__init__cCs|j||SrN)rZadd_cookie_headerrrLrLrMresz HTTPCookieProcessor.http_requestcCs|j|||SrN)rZextract_cookies)rryrrLrLrMrsz!HTTPCookieProcessor.http_response)N)rrrrrerrirrLrLrLrMr|s

c@seZdZddZdS)r.cCs|j}td|dS)Nzunknown url type: %s)rr)rrrrLrLrMrszUnknownHandler.unknown_openN)rrrrrLrLrLrMr.scCsNi}|D]@}|dd\}}|ddkr@|ddkr@|dd}|||<q|S)z>Parse list of key=value strings where keys are not duplicated.=rVrrQrS)rX)lZparsedZeltrrrLrLrMrvs
rvcCsg}d}d}}|D]l}|r*||7}d}q|rT|dkr>d}qn|dkrJd}||7}q|dkrl||d}q|dkrxd}||7}q|r||dd|DS)	apParse lists as described by RFC 2068 Section 2.

    In particular, parse comma-separated lists where the elements of
    the list may include quoted-strings.  A quoted-string could
    contain a comma.  A non-quoted string could have quotes in the
    middle.  Neither commas nor quotes count if they are escaped.
    Only double-quotes count, not single-quotes.
    rrF\TrQrcSsg|]}|qSrL)rd)rpartrLrLrM
<listcomp>sz#parse_http_list.<locals>.<listcomp>)ra)rresrescaper	ZcurrLrLrMrxs4	


rxc@s(eZdZddZdZddZddZdS)r*cCs\|j}|dddkrN|dddkrN|jrN|jdkrN|j|krXtdn
||SdS)Nr:rrSr
	localhost-file:// scheme is supported only on localhost)rrz	get_namesropen_local_file)rrrHrLrLrM	file_opens&
zFileHandler.file_openNcCs`tjdkrZz*ttddttdt_Wn$tjk
rXtdft_YnXtjS)Nrr:)r*namesr8rgethostbyname_exgethostnamegaierror
gethostbynamerrLrLrMrs

zFileHandler.get_namesc
Csddl}ddl}|j}|j}t|}zt|}|j}|jj	|j
dd}	||d}
|d|
pbd||	f}|r~t
|\}}|r|st||kr|rd||}
nd|}
tt|d||
WSWn*tk
r}zt|W5d}~XYnXtddS)	NrTZusegmtz6Content-type: %s
Content-length: %d
Last-modified: %s

text/plainfile://rbzfile not on local host)email.utils	mimetypesrzrr4r[statst_sizeutils
formatdatest_mtime
guess_typemessage_from_stringr
_safe_gethostbynamerrrGrqr)rremailrrzrfZ	localfilestatsrmmodifiedmtyperirCZorigurlexprLrLrMrs:
zFileHandler.open_local_file)rrrrrrrrLrLrLrMr*s
cCs*zt|WStjk
r$YdSXdSrN)rrr)rzrLrLrMrsrc@seZdZddZddZdS)r+c
Cs*ddl}ddl}|j}|s"tdt|\}}|dkr>|j}nt|}t|\}}|rdt|\}}nd}t	|}|pvd}|p~d}zt
|}Wn*tk
r}zt|W5d}~XYnXt
|j\}	}
|	d}ttt	|}|dd|d}}|r|ds|dd}z|||||||j}
|r6dp8d}|
D]2}t|\}}|d	kr>|d
kr>|}q>|
||\}}d}||jd}|r|d|7}|dk	r|dkr|d|7}t|}t|||jWS|jk
r$}z"td
|}|t dW5d}~XYnXdS)Nrftp error: no host givenrrr
rSrVrhDraArrhrrzContent-type: %s
zContent-length: %d

ftp error: %rr:)!ftplibrrzrr
FTP_PORTrbrrr
rrrqrrrXrmapconnect_ftprJrrxupperretrfilerrtrrr
all_errorswith_tracebackrexc_info)rrrrrzrCr r1rr\attrsdirsrOfwrattrrrhretrlenrirrexcrLrLrMftp_opens^

zFTPHandler.ftp_openc	Cst||||||ddS)NF)
persistent)
ftpwrapper)rr r1rzrCrrJrLrLrMr7szFTPHandler.connect_ftpN)rrrrrrLrLrLrMr+s5c@s<eZdZddZddZddZddZd	d
ZddZd
S)r,cCs"i|_i|_d|_d|_d|_dS)Nr<r})cacherJsoonestdelay	max_connsrrLrLrMr>s
zCacheFTPHandler.__init__cCs
||_dSrN)r)rtrLrLrM
setTimeoutEszCacheFTPHandler.setTimeoutcCs
||_dSrN)r)rrrLrLrMsetMaxConnsHszCacheFTPHandler.setMaxConnscCsr|||d||f}||jkr4t|j|j|<n,t|||||||j|<t|j|j|<||j|S)Nr
)joinrr~rrJrcheck_cache)rr r1rzrCrrJrrLrLrMrKs


zCacheFTPHandler.connect_ftpcCst}|j|krPt|jD].\}}||kr |j||j|=|j|=q tt|j|_t	|j|j
krt|jD]&\}}||jkr|j|=|j|=qqtt|j|_dSrN)r~rrrJrrrminvaluesrdr)rrrrrLrLrMrVs


zCacheFTPHandler.check_cachecCs0|jD]}|q
|j|jdSrN)rrrclearrJ)rconnrLrLrMclear_cachejs

zCacheFTPHandler.clear_cacheN)	rrrrrrrrrrLrLrLrMr,;sc@seZdZddZdS)r-cCs~|j}|dd\}}|dd\}}t|}|drNt|}|dd}|sVd}td|t|f}t	t
|||S)N:rVrz;base64itext/plain;charset=US-ASCIIz$Content-type: %s
Content-length: %d
)rtrXrendswithr-decodebytesrrrdrioBytesIO)rrrHrrIZ	mediatyperirLrLrM	data_openqs



zDataHandler.data_openN)rrrr	rLrLrLrMr-psrnt)r4r3cCst|S)zOS-specific conversion from a relative URL of the 'file' scheme
        to a file system path; not recommended for general use.)r
pathnamerLrLrMr4scCst|S)zOS-specific conversion from a file system path to a relative URL
        of the 'file' scheme; not recommended for general use.)r	rrLrLrMr3sc@seZdZdZdZdeZd*ddZddZdd	Z	d
dZ
dd
Zd+ddZd,ddZ
d-ddZd.ddZddZd/ddZd0ddZddZerddZd1d d!Zd"d#Zd$d%Zd&d'Zd2d(d)ZdS)3r8a,Class to open URLs.
    This is a class rather than just a subroutine because we may need
    more than one set of global protocol-specific options.
    Note -- this is a base class for those who don't want the
    automatic handling of errors type 302 (relocated) and 401
    (authorization needed).NrcKszdd|jji}tj|tdd|dkr.t}||_|d|_|d|_	d|j
fdg|_g|_t
j|_d|_t|_dS)	NzW%(class)s style of invoking requests is deprecated. Use newer urlopen functions/methodsclassrS)
stacklevelkey_file	cert_filez
User-Agent)ZAcceptz*/*)rLrr?r@rAr5r&rrrversionr_URLopener__tempfilesr[rp_URLopener__unlink	tempcacheftpcache)rr&Zx509rrLrLrMrs
zURLopener.__init__cCs|dSrN)rrrLrLrM__del__szURLopener.__del__cCs|dSrN)cleanuprrLrLrMrszURLopener.closec	CsV|jrB|jD](}z||Wqtk
r2YqXq|jdd=|jrR|jdSrN)rrrqrr)rrOrLrLrMrs
zURLopener.cleanupcGs|j|dS)zdAdd a header to be used by the HTTP interface only
        e.g. u.addheader('Accept', 'sound/basic')N)rra)rrrLrLrM	addheaderszURLopener.addheaderc
Csptt|}t|dd}|jrL||jkrL|j|\}}t|d}t|||St|\}}|s`d}||jkr|j|}t|\}}	t|	\}
}|
|f}nd}d|}||_	|
dd}t||r|d	kr|r||||S|
||Sz0|dkrt|||WSt||||WSWnVttfk
r0Yn<tk
rj}
ztd
|
tdW5d}
~
XYnXdS)z6Use URLopener().open(file) instead of open(file, 'r').z%/:=&?~#+!$,;'@()*[]|rrrONZopen_-rrzsocket errorr:)rrr	rrGrrr&rrrropen_unknown_proxyopen_unknownrrrrqrrr)rrrIrfrirhurltyperHr	proxyhostrzrr_rrLrLrMrGs<




zURLopener.opencCst|\}}tdd|dS)/Overridable interface to open unknown URL type.	url errorzunknown url typeNrrq)rrrIrrHrLrLrMr
szURLopener.open_unknowncCs t|\}}tdd||dS)rr zinvalid proxy for %sNr!)rrrrIrrHrLrLrMrszURLopener.open_unknown_proxyc
Cstt|}|jr&||jkr&|j|St|\}}|dkr|rF|dkrz0||}|}|tt|d|fWSt	k
r}	zW5d}	~	XYnX|
||}z<|}
|rt
|d}nrt|\}}
t|
pd\}}
t|
pd\}
}t|
pd\}
}t
j|
d}t|\}}|j|t
|d}z||
f}|jdk	rT||j|<d}d}d}d}d	|
krzt|
d
}|r||||||}|sq|t|7}|||d7}|r||||qW5|XW5|X|dkr||krtd||f||S)ztretrieve(url) returns (filename, headers) for a local object
        or (tempfilename, headers) for a remote object.NrOrVrPrrrRrSrrTrUrW)rrrrrrZrr4rrqrGrrr[r\splitextr^Zmkstemprrafdopenrbrcrdrer)rrHrfrgrIrZurl1rhrrrirjZgarbager\suffixfdrkrlrmrcrnrorLrLrMretrievesn






zURLopener.retrievecCs$d}d}t|tr<t|\}}|r6t|\}}t|}|}nt|\}}t|\}}t|\}	}
|
}d}|	dkrvd}n:t|
\}}
|rt|\}}|rd|	||
f}t|r|}|stdd|rt|}t	
|d}nd}|rt|}t	
|d}nd}||}
i}|r*d||d<|r<d||d	<|rJ||d
<d|d<|j
D]\}}|||<qX|dk	rd
|d<|
d|||n|
jd||dz|
}Wn"tjjk
rtdYnXd|jkrdkrnnt||jd||jS|||j|j|j|j|SdS)aMake an HTTP connection using connection_class.

        This is an internal method that should be called from
        open_http() or open_https().

        Arguments:
        - connection_factory should take a host name and return an
          HTTPConnection instance.
        - url is the url to retrieval or a host, relative-path pair.
        - data is payload for a POST request or None.
        Nrz	%s://%s%sz
http errorrr)zBasic %srrcrsrrrzContent-Typerrrz$http protocol error: bad status linerrhttp:)rrrrr
rrxr,rqr-r.r/r0rryrrrZ
BadStatusLinerZstatusrr
http_errorrhr)rZconnection_factoryrHrIZuser_passwdZproxy_passwdrzrZrealhostrrZ
proxy_authrbZ	http_connrirYrrrLrLrM_open_generic_httpVs~



zURLopener._open_generic_httpcCs|tjj||S)zUse HTTP protocol.)r)rrrrrHrIrLrLrM	open_httpszURLopener.open_httpc
Csbd|}t||rPt||}|dkr6||||||}	n|||||||}	|	rP|	S||||||S)zHandle http errors.

        Derived class can override this, or provide specific handlers
        named http_error_DDD where DDD is the 3-digit error code.z
http_error_%dN)rrr)
rrHrherrcodeerrmsgrirIr_rrkrLrLrMr(s

zURLopener.http_errorcCs|t||||ddS)z>Default error handler: close the connection and raise OSError.N)rrrrHrhr,r-rirLrLrMrszURLopener.http_error_defaultcCstjj||j|jdS)N)rr)rrrrr)rrzrLrLrM_https_connectionszURLopener._https_connectioncCs||j||S)zUse HTTPS protocol.)r)r/r*rLrLrM
open_httpsszURLopener.open_httpscCs^t|tstd|dddkrP|dddkrP|dddkrPtd	n
||SdS)
z/Use local file or FTP depending on form of URL.zEfile error: proxy support for file protocol currently not implementedNr:rrSr
z
localhost/r)rrrrxrBrrrLrLrM	open_files

4
zURLopener.open_filec
Cs\ddl}ddl}t|\}}t|}zt|}Wn0tk
rb}zt|j|j	W5d}~XYnX|j
}	|jj|j
dd}
||d}|d|pd|	|
f}|s|}
|dddkrd	|}
tt|d
||
St|\}}|sPt|tftkrP|}
|dddkr d	|}
n|dddkr>td
|tt|d
||
StddS)zUse local file.rNTrz6Content-Type: %s
Content-Length: %d
Last-modified: %s
rrVr
rrr:z./zAlocal file url may start with / or file:. Unknown url of type: %sz#local file error: not on local host)rrrr4r[rrqrstrerrorrfrrrrrrrrGr
rrrthishostrB)rrHrrrzrOZ	localnamerermrrriZurlfilerCrLrLrMrs@ 
zURLopener.open_local_filec
Cst|tstdddl}t|\}}|s2tdt|\}}t|\}}|r\t|\}}nd}t|}t|ppd}t|p|d}t	
|}|sddl}|j}nt
|}t|\}}	t|}|d}
|
dd|
d}
}|
r|
ds|
dd}
|
r
|
ds
d|
d<|||d|
f}t|jtkrbt|jD]*}
|
|kr6|j|
}|j|
=|q6z||jkrt|||||
|j|<|sd	}nd
}|	D]2}t|\}}|dkr|dkr|}q|j|||\}}|d
|d}d}|r|d|7}|dk	r,|dkr,|d|7}t|}t||d
|WStk
r}ztd| t!"dW5d}~XYnXdS)zUse FTP protocol.zCftp error: proxy support for ftp protocol currently not implementedrNrrrr
rSrVrrhrrzftp:zContent-Type: %s
zContent-Length: %d
zftp error %rr:)#rrrrrr
rrr
rrrrrbrrXrrdrMAXFTPCACHErrrrrxrrrrrr	ftperrorsrrr)rrHrrzr\rCr r1rrrrOrrrrrrrhrrrirrLrLrMopen_ftpst





zURLopener.open_ftpc	
Cs<t|tstdz|dd\}}Wntk
rDtddYnX|sNd}|d}|dkrd	||d
kr||dd
}|d
|}nd}g}|dt	d
t
t|d||dkrt|
dd}nt|}|dt||d||d|}t|}t|}t|||S)zUse "data" URL.zEdata error: proxy support for data protocol currently not implementedrrVz
data errorzbad data URLr;rrNrrzDate: %sz%a, %d %b %Y %H:%M:%S GMTzContent-type: %sr-r)zlatin-1zContent-Length: %d
)rrrrXrBrqrfindrar~strftimegmtimer-rr/r0r
rdrrrrStringIOr)	rrHrIrZsemirrrifrLrLrM	open_data8s8






zURLopener.open_data)N)N)N)N)NNN)N)N)N)N)rrrrrrrrrrrrrGrrr&r)r+r(rrCr/r0r2rr8r@rLrLrLrMr8s.

$


A\


	 :c@seZdZdZddZddZd#ddZd	d
Zd$ddZd%d
dZ	d&ddZ
d'ddZd(ddZd)ddZ
d*ddZd+ddZd,ddZd-dd Zd!d"ZdS).r9z?Derived class with handlers for errors we can handle (perhaps).cOs(tj|f||i|_d|_d|_dS)Nrr)r8r
auth_cachetriesmaxtriesrIrLrLrMreszFancyURLopener.__init__cCst||d||S)z3Default error handling -- don't raise an exception.r')rr.rLrLrMrksz!FancyURLopener.http_error_defaultNc	Csv|jd7_zZ|jrN|j|jkrNt|dr4|j}n|j}|||dd|WS|||||||}|WSd|_XdS)z%Error 302 -- relocated (temporarily).rVrhttp_error_500rz)Internal Server Error: Redirect RecursionN)rBrCrrDrredirect_internal)	rrHrhr,r-rirIrrkrLrLrMros 
zFancyURLopener.http_error_302c	Csxd|kr|d}nd|kr$|d}ndS|t|jd||}t|}|jdkrnt|||d|||||S)Nrrrrz( Redirection to url '%s' is not allowed.)rrrrrrrG)	rrHrhr,r-rirIrrrLrLrMrEs"


z FancyURLopener.redirect_internalcCs|||||||S)z*Error 301 -- also relocated (permanently).rrrHrhr,r-rirIrLrLrMrszFancyURLopener.http_error_301cCs|||||||S)z;Error 303 -- also relocated (essentially identical to 302).rFrGrLrLrMrszFancyURLopener.http_error_303cCs2|dkr|||||||S||||||SdS)z1Error 307 -- relocated, but turn POST into error.N)rrrGrLrLrMrszFancyURLopener.http_error_307Fc
Csd|krt|||||||d}td|}	|	sHt|||||||	\}
}|
dkrtt|||||||st||||||d|jd}|dkrt||||St|||||SdS)z_Error 401 -- authentication required.
        This function supports Basic authentication only.rj![ 	]*([^ 	]+)[ 	]+realm="([^"]*)"r[Zretry__basic_authNr8rrfmatchrVrxrr
rrHrhr,r-rirIrZstuffrKrr9r_rLrLrMrks:


zFancyURLopener.http_error_401c
Csd|krt|||||||d}td|}	|	sHt|||||||	\}
}|
dkrtt|||||||st||||||d|jd}|dkrt||||St|||||SdS)zeError 407 -- proxy authentication required.
        This function supports Basic authentication only.rmrHr[Zretry_proxy_rINrJrLrLrLrMrns:


zFancyURLopener.http_error_407cCst|\}}d||}|jd}t|\}}	t|	\}	}
|	dd}|	|d}	||	||\}}
|sr|
srdSdt|ddt|
dd|	f}	d|	|
|jd<|dkr||S|||SdS)Nhttp://rrrV%s:%s@%srrrrr&rrget_user_passwdr	rGrrHr9rIrzrrrrrZ
proxyselectorrr r1rLrLrMretry_proxy_http_basic_auths$


z*FancyURLopener.retry_proxy_http_basic_authcCst|\}}d||}|jd}t|\}}	t|	\}	}
|	dd}|	|d}	||	||\}}
|sr|
srdSdt|ddt|
dd|	f}	d|	|
|jd<|dkr||S|||SdS)Nhttps://rrrVrNrrrrOrQrLrLrMretry_proxy_https_basic_auths$


z+FancyURLopener.retry_proxy_https_basic_authc
Cst|\}}|dd}||d}||||\}}|sD|sDdSdt|ddt|dd|f}d||}	|dkr||	S||	|SdS)NrrVrNrrrrMrrrPr	rG
rrHr9rIrzrrr r1rrLrLrMr\	s

z$FancyURLopener.retry_http_basic_authc
Cst|\}}|dd}||d}||||\}}|sD|sDdSdt|ddt|dd|f}d||}	|dkr||	S||	|SdS)NrrVrNrrrrSrUrVrLrLrMretry_https_basic_auth	s

z%FancyURLopener.retry_https_basic_authrcCs`|d|}||jkr2|r(|j|=n
|j|S|||\}}|sJ|rX||f|j|<||fS)Nr)rxrAprompt_user_passwd)rrzr9rrr r1rLrLrMrP	s


zFancyURLopener.get_user_passwdcCsXddl}z.td||f}|d|||f}||fWStk
rRtYdSXdS)z#Override this in a GUI environment!rNzEnter username for %s at %s: z#Enter password for %s in %s at %s: r<)getpassinputKeyboardInterruptprint)rrzr9rYr r1rLrLrMrX)	s
z!FancyURLopener.prompt_user_passwd)N)N)N)N)NF)NF)N)N)N)N)r)rrrrrrrrErrrrkrnrRrTr\rWrPrXrLrLrLrMr9bs(










cCstdkrtdatS)z8Return the IP address of the magic hostname 'localhost'.Nr)
_localhostrrrLrLrLrMr9	s
rcCsPtdkrLztttdaWn(tjk
rJttddaYnXtS)z,Return the IP addresses of the current host.Nr:r)	_thishostr8rrrrrLrLrLrMr4A	sr4cCstdkrddl}|jatS)z1Return the set of errors raised by the FTP class.Nr)
_ftperrorsrr)rrLrLrMr7L	sr7cCstdkrtdatS)z%Return an empty email Message object.Nrr)
_noheadersrrrLrLrLrM	noheadersU	s
rac@sJeZdZdZdddZddZdd	Zd
dZdd
ZddZ	ddZ
dS)rz;Class used by open_ftp() for cache of open FTP connections.NTcCsX||_||_||_||_||_||_d|_||_z|Wn|	YnXdSro)
r r1rzrCrrJrefcount	keepaliveinitr)rr r1rzrCrrJrrLrLrMrb	szftpwrapper.__init__cCs\ddl}d|_||_|j|j|j|j|j|j	|j
d|j}|j
|dS)Nrr
)rbusyZFTPr	ZconnectrzrCrJZloginr r1rrcwd)rrZ_targetrLrLrMrdr	s
zftpwrapper.initc
Csddl}||dkr"d}d}nd|}d}z|j|Wn*|jk
rh||j|YnXd}|r|szd|}|j|\}}WnR|jk
r}z2t|dddkrt	d	|
td
W5d}~XYnX|s|jd|rl|j
}	zJz|j|Wn4|jk
rN}zt	d	||W5d}~XYnXW5|j|	Xd|}nd}|j|\}}d|_t|d
|j}
|jd7_||
|fS)Nr)rrzTYPE ArVzTYPE zRETR rSZ550rr:zLIST ZLISTr)rendtransferr	ZvoidcmdrrdZntransfercmdZ
error_permrrrrrpwdrfrerZmakefile
file_closerbr)rrOrrcmdisdirrrrrhZftpobjrLrLrMr{	sP

$
zftpwrapper.retrfilecCs
d|_dSro)rerrLrLrMrg	szftpwrapper.endtransfercCsd|_|jdkr|dS)NFr)rcrb
real_closerrLrLrMr	s
zftpwrapper.closecCs2||jd8_|jdkr.|js.|dS)NrVr)rgrbrcrlrrLrLrMri	szftpwrapper.file_closecCs2|z|jWntk
r,YnXdSrN)rgr	rr7rrLrLrMrl	s
zftpwrapper.real_close)NT)rrrrrrdrrgrrirlrLrLrLrMr_	s
	-rcCsi}tjD]4\}}|}|r|dddkr|||dd<qdtjkrZ|ddtjD]J\}}|dddkrd|}|r|||dd<qd||dddqd|S)aReturn a dictionary of scheme -> proxy server URL mappings.

    Scan the environment for variables named <scheme>_proxy;
    this seems to be the standard convention.  If you need a
    different way, you can pass a proxies dictionary to the
    [Fancy]URLopener constructor.

    iN_proxyZREQUEST_METHODr)r[environrrxr)r&r_rrLrLrMgetproxies_environment	s	
rocCs|dkrt}z|d}Wntk
r0YdSX|dkr>dS|}t|\}}|dD]Z}|}|r\|d}|}||ks||krdSd|}||s||r\dSq\dS)zTest if proxies should not be used for a particular host.

    Checks the proxy dict for the value of no_proxy, which should
    be a list of comma separated DNS suffixes, or '*' for all hosts.

    NZnoF*Tr.)rorrxr
rXrdlstripr)rzr&Zno_proxyhostonlyrCr_rLrLrMproxy_bypass_environment	s*
rtc
Cs:ddlm}ddlm}m}t|\}}dd}d|krD|drDdSd	}zt||}Wn|k
rlYnX|d
dD]}	|	sqztd|	}
|
d	k	r$|d	k	r$||
	d
}|
	d}|d	krd|
	d

dd
}nt|d
d	}|dksz|dkrqzd|}||?||?kr4dSqz|||	rzdSqzdS)aj
    Return True iff this host shouldn't be accessed using a proxy

    This function uses the MacOSX framework SystemConfiguration
    to fetch the proxy information.

    proxy_settings come from _scproxy._get_proxy_settings or get mocked ie:
    { 'exclude_simple': bool,
      'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16']
    }
    rfnmatch)AddressValueErrorIPv4AddresscSsh|d}ttt|}t|dkr<|ddddgdd}|dd>|dd>B|dd>B|d	BS)
NrqrrrVr}r:r|rS)rXrrrbrd)ZipAddrrBrLrLrMip2num
s

z,_proxy_bypass_macosx_sysconf.<locals>.ip2numrqZexclude_simpleTN
exceptionsrLz(\d+(?:\.\d+)*)(/\d+)?rVr:r| F)rvZ	ipaddressrwrxr
rbrrfrKgroupcount)
rzproxy_settingsrvrwrxrsrCrzZhostIPrrrDmaskrLrLrM_proxy_bypass_macosx_sysconf
s<

rcCs`ddlm}t|\}}|d}|D]4}|}|dkrJd|krZdSq&|||r&dSq&dS)a
Return True if the host should bypass the proxy server.

    The proxy override list is obtained from the Windows
    Internet settings proxy override registry value.

    An example of a proxy override value is:
    "www.example.com;*.example.net; 192.168.0.1"
    rrur9z<local>rqTF)rvr
rXrd)rzoverridervrZproxy_overriderErLrLrM_proxy_bypass_winreg_overrideB
s	

rdarwin)_get_proxy_settings_get_proxiescCst}t||SrN)rr)rzrrLrLrMproxy_bypass_macosx_sysconf]
srcCstS)zReturn a dictionary of scheme -> proxy server URL mappings.

        This function uses the MacOSX framework SystemConfiguration
        to fetch the proxy information.
        )rrLrLrLrMgetproxies_macosx_sysconfa
srcCs t}|rt||St|SdS)zReturn True, if host should be bypassed.

        Checks proxy settings gathered from the environment, if specified,
        or from the MacOSX framework SystemConfiguration.

        N)rortrrzr&rLrLrMr,k
s
r,cCstp
tSrN)rorrLrLrLrMr5x
sc
Csi}zddl}Wntk
r(|YSXz||jd}||dd}|rt||dd}d|kr|dD]4}|dd\}}td	|sd
||f}|||<qtn>|dddkr||d
<n$d||d
<d||d<d||d<|	Wnt
ttfk
rYnX|S)zxReturn a dictionary of scheme -> proxy server URL mappings.

        Win32 uses the registry to store proxies.

        rN;Software\Microsoft\Windows\CurrentVersion\Internet SettingsProxyEnableZProxyServerrr9rVz
(?:[^/:]+)://z%s://%srtr'rz	http://%sz
https://%srzftp://%sr	)
winregImportErrorOpenKeyHKEY_CURRENT_USERQueryValueExrrXrfrKZCloserqrBr)r&rinternetSettingsproxyEnableZproxyServerprZaddressrLrLrMgetproxies_registry}
sF

rcCstp
tS)zReturn a dictionary of scheme -> proxy server URL mappings.

        Returns settings gathered from the environment, if specified,
        or the registry.

        )rorrLrLrLrMr5
scCszddl}Wntk
r"YdSXz6||jd}||dd}t||dd}Wntk
rpYdSX|rz|s~dSt||S)NrFrrZ
ProxyOverride)rrrrrrrqr)rzrrrZ
proxyOverriderLrLrMproxy_bypass_registry
s.
rcCs t}|rt||St|SdS)zReturn True, if host should be bypassed.

        Checks proxy settings gathered from the environment, if specified,
        or the registry.

        N)rortrrrLrLrMr,
s
)NNN)N)rr-rrrZhttp.clientrrr[	posixpathrfrrrr~r^rXr?Zurllib.errorrrrZurllib.parserrrrr	r
rrr
rrrrrrrrrZurllib.responserrrDrrC__all__version_inforrFrr0r1r`r6r7rgASCIIrvr{rrr2rr/rrr"rr r!r"r#r$r%urandomrr&r'r(rr)rrrErarr.rvrxr*rr+r,r-r6r_Z
nturl2pathr4r3rr8r9r]rr^r4r_r7r`rarrortrrplatformZ_scproxyrrrrr,r5rrrLrLrLrM<module>s"SP
U
?m$q!+@
ov

+3:5!@W

_
%@

-