Warning: session_start(): Session cannot be started after headers have already been sent in /home/tvrreohg/public_html/manga.php on line 13
3 ÝPfŠã@sªddlmZddlZddlZddlZddlZddlmZm Z ddlZddl m Z m Z mZmZmZmZmZmZmZmZmZmZmZddlmZddlmZddlmZdd lm Z m!Z!m"Z"m#Z#m$Z$m%Z%m&Z&dd l'm(Z(dd l)m*Z*dd l+m,Z,dd l-m.Z.ddl/m0Z0ddl1m2Z2ddl3m4Z4ddl5m6Z6m7Z7ej8�rƒZ?e@ƒZAGdd„de@ƒZBeCejDejEgƒZFGdd„deBe(ƒZGGdd„deGƒZHdd„ZIdd„ZJdS)é)Úabsolute_importN)ÚerrorÚtimeouté) ÚClosedPoolErrorÚ ProtocolErrorÚEmptyPoolErrorÚHeaderParsingErrorÚHostChangedErrorÚLocationValueErrorÚ MaxRetryErrorÚ ProxyErrorÚReadTimeoutErrorÚSSLErrorÚ TimeoutErrorÚInsecureRequestWarningÚNewConnectionError)ÚCertificateError)Úsix)Úqueue)Úport_by_schemeÚDummyConnectionÚHTTPConnectionÚHTTPSConnectionÚVerifiedHTTPSConnectionÚ HTTPExceptionÚ BaseSSLError)ÚRequestMethods)Ú HTTPResponse)Úis_connection_dropped)Úset_file_position)Úassert_header_parsing)ÚRetry)ÚTimeout)Úget_hostÚUrlc@sDeZdZdZdZejZd dd„Zdd„Z dd„Z d d „Z d d „Z dS)ÚConnectionPoolzz Base class for all connection pools, such as :class:`.HTTPConnectionPool` and :class:`.HTTPSConnectionPool`. NcCs.|s tdƒ‚t|ƒjƒ|_|jƒ|_||_dS)NzNo host specified.)r Ú _ipv6_hostÚlowerÚhostÚ _proxy_hostÚport)Úselfr)r+©r-ú$/usr/lib/python3.6/connectionpool.pyÚ__init__Cs  zConnectionPool.__init__cCsdt|ƒj|j|jfS)Nz%s(host=%r, port=%r))ÚtypeÚ__name__r)r+)r,r-r-r.Ú__str__Ks zConnectionPool.__str__cCs|S)Nr-)r,r-r-r.Ú __enter__OszConnectionPool.__enter__cCs |jƒdS)NF)Úclose)r,Úexc_typeZexc_valZexc_tbr-r-r.Ú__exit__RszConnectionPool.__exit__cCsdS)zD Close all pooled connections and disable the pool. Nr-)r,r-r-r.r4WszConnectionPool.close)N) r1Ú __module__Ú __qualname__Ú__doc__ÚschemerZ LifoQueueÚQueueClsr/r2r3r6r4r-r-r-r.r&:s r&c @s¸eZdZdZdZeZeZdde j ddddddf dd„Z dd „Z d!d d „Z d d „Zdd„Zdd„Zdd„Zdd„Zedfdd„Zdd„Zdd„Zdd„Zdddddeddddf dd „ZdS)"ÚHTTPConnectionPoolaN Thread-safe connection pool for one host. :param host: Host used for this HTTP Connection (e.g. "localhost"), passed into :class:`httplib.HTTPConnection`. :param port: Port used for this HTTP Connection (None is equivalent to 80), passed into :class:`httplib.HTTPConnection`. :param strict: Causes BadStatusLine to be raised if the status line can't be parsed as a valid HTTP/1.0 or 1.1 status line, passed into :class:`httplib.HTTPConnection`. .. note:: Only works in Python 2. This parameter is ignored in Python 3. :param timeout: Socket timeout in seconds for each individual connection. This can be a float or integer, which sets the timeout for the HTTP request, or an instance of :class:`urllib3.util.Timeout` which gives you more fine-grained control over request timeouts. After the constructor has been parsed, this is always a `urllib3.util.Timeout` object. :param maxsize: Number of connections to save that can be reused. More than 1 is useful in multithreaded situations. If ``block`` is set to False, more connections will be created but they will not be saved once they've been used. :param block: If set to True, no more than ``maxsize`` connections will be used at a time. When no free connections are available, the call will block until a connection has been released. This is a useful side effect for particular multithreaded situations where one does not want to use more than maxsize connections per host to prevent flooding. :param headers: Headers to include with all requests, unless other headers are given explicitly. :param retries: Retry configuration to use by default with requests in this pool. :param _proxy: Parsed proxy URL, should not be used directly, instead, see :class:`urllib3.connectionpool.ProxyManager`" :param _proxy_headers: A dictionary with proxy headers, should not be used directly, instead, see :class:`urllib3.connectionpool.ProxyManager`" :param \**conn_kw: Additional parameters are used to create fresh :class:`urllib3.connection.HTTPConnection`, :class:`urllib3.connection.HTTPSConnection` instances. ÚhttpNFrc Ks¸tj|||ƒtj||ƒ||_t|tƒs4tj|ƒ}|dkrBtj}||_ ||_ |j |ƒ|_ ||_ | |_| pli|_xt|ƒD]} |j jdƒqzWd|_d|_| |_|jr´|jjdgƒdS)NrZsocket_options)r&r/rÚstrictÚ isinstancer#Ú from_floatr"ZDEFAULTrÚretriesr;ÚpoolÚblockÚproxyÚ proxy_headersÚxrangeÚputÚnum_connectionsÚ num_requestsÚconn_kwÚ setdefault) r,r)r+r>rÚmaxsizerCÚheadersrAÚ_proxyÚ_proxy_headersrJÚ_r-r-r.r/¢s(     zHTTPConnectionPool.__init__cCsJ|jd7_tjd|j|jƒ|jf|j|j|jj|jdœ|j —Ž}|S)z9 Return a fresh :class:`HTTPConnection`. rz%Starting new HTTP connection (%d): %s)r)r+rr>) rHÚlogÚdebugr)Ú ConnectionClsr+rÚconnect_timeoutr>rJ)r,Úconnr-r-r.Ú _new_connÊs zHTTPConnectionPool._new_connc Cs d}y|jj|j|d�}WnBtk r8t|dƒ‚Yn&tjk r\|jrXt|dƒ‚YnX|r”t|ƒr”t j d|j ƒ|j ƒt |ddƒdkr”d}|pž|jƒS) a™ Get a connection. Will return a pooled connection if one is available. If no connections are available and :prop:`.block` is ``False``, then a fresh connection is returned. :param timeout: Seconds to wait before giving up and raising :class:`urllib3.exceptions.EmptyPoolError` if the pool is empty and :prop:`.block` is ``True``. N)rCrzPool is closed.z>Pool reached maximum size and no more connections are allowed.z Resetting dropped connection: %sZ auto_openrr)rBÚgetrCÚAttributeErrorrrÚEmptyrrrQrRr)r4ÚgetattrrV)r,rrUr-r-r.Ú _get_conn×s  zHTTPConnectionPool._get_connc Cs\y|jj|dd�dStk r(Yn$tjk rJtjd|jƒYnX|rX|jƒdS)aä Put a connection back into the pool. :param conn: Connection object for the current host and port as returned by :meth:`._new_conn` or :meth:`._get_conn`. If the pool is already full, the connection is closed and discarded because we exceeded maxsize. If connections are discarded frequently, then maxsize should be increased. If the pool is closed, then the connection will be closed and discarded. F)rCNz2Connection pool is full, discarding connection: %s) rBrGrXrZFullrQÚwarningr)r4)r,rUr-r-r.Ú _put_connýszHTTPConnectionPool._put_conncCsdS)zU Called right before a request is made, after the socket is created. Nr-)r,rUr-r-r.Ú_validate_connsz!HTTPConnectionPool._validate_conncCsdS)Nr-)r,rUr-r-r.Ú_prepare_proxy!sz!HTTPConnectionPool._prepare_proxycCs2|tkr|jjƒSt|tƒr$|jƒStj|ƒSdS)z< Helper that always returns a :class:`urllib3.util.Timeout` N)Ú_DefaultrZcloner?r#r@)r,rr-r-r.Ú _get_timeout%s   zHTTPConnectionPool._get_timeoutcCsjt|tƒrt||d|ƒ‚t|dƒr>|jtkr>t||d|ƒ‚dt|ƒksVdt|ƒkrft||d|ƒ‚dS)zAIs the error actually a timeout? Will raise a ReadTimeout or passz!Read timed out. (read timeout=%s)Úerrnoz timed outzdid not complete (read)N)r?Ú SocketTimeoutrÚhasattrrbÚ_blocking_errnosÚstr)r,ÚerrÚurlÚ timeout_valuer-r-r.Ú_raise_timeout1s  z!HTTPConnectionPool._raise_timeoutc :Ks|jd7_|j|ƒ}|jƒ|j|_y|j|ƒWn:ttfk rp}z|j|||jd�‚WYdd}~XnX|rˆ|j ||f|Žn|j ||f|Ž|j } t |ddƒrê| dkrÂt ||d| ƒ‚| tjkrÞ|jjtjƒƒn |jj| ƒyjy|jdd�} WnTtk �rPy |jƒ} Wn0tk �rJ}ztj|dƒWYdd}~XnXYnXWn<tttfk �r�}z|j||| d�‚WYdd}~XnXt |d d ƒ} tjd |j|j|j||| | j| j ƒ yt!| j"ƒWn@t#tfk �r} ztj$d |j%|ƒ| dd �WYdd} ~ XnX| S)a Perform a request on a given urllib connection object taken from our pool. :param conn: a connection from one of our connection pools :param timeout: Socket timeout in seconds for the request. This can be a float or integer, which will set the same timeout value for the socket connect and the socket read, or an instance of :class:`urllib3.util.Timeout`, which gives you more fine-grained control over your timeouts. r)rgrhriNÚsockrz!Read timed out. (read timeout=%s)T)Ú bufferingZ _http_vsn_strzHTTP/?z%s://%s:%s "%s %s %s" %s %sz$Failed to parse headers (url=%s): %s)Úexc_info)&rIraZ start_connectrTrr^rcrrjZrequest_chunkedÚrequestÚ read_timeoutrZrr#ÚDEFAULT_TIMEOUTrkZ settimeoutÚsocketZgetdefaulttimeoutZ getresponseÚ TypeErrorÚ ExceptionrZ raise_fromÚ SocketErrorrQrRr:r)r+ÚstatusZlengthr!Úmsgr r\Ú _absolute_url) r,rUÚmethodrhrÚchunkedZhttplib_request_kwÚ timeout_objÚeroÚhttplib_responseZ http_versionZhper-r-r.Ú _make_requestBsT     (  $z HTTPConnectionPool._make_requestcCst|j|j|j|d�jS)N)r:r)r+Úpath)r%r:r)r+rh)r,r~r-r-r.rw—sz HTTPConnectionPool._absolute_urlc CsL|jd}|_y"x|jdd�}|r|jƒqWWntjk rFYnXdS)zD Close all pooled connections and disable the pool. NF)rC)rBrWr4rrY)r,Zold_poolrUr-r-r.r4šs zHTTPConnectionPool.closecCst|jdƒrdSt|ƒ\}}}t|ƒjƒ}|jr@| r@tj|ƒ}n|j rZ|tj|ƒkrZd}|||f|j|j|jfkS)zj Check if the given ``url`` is a member of the same host as this connection pool. ú/TN) Ú startswithr$r'r(r+rrWr:r))r,rhr:r)r+r-r-r.Ú is_same_hostªs    zHTTPConnectionPool.is_same_hostTc .KsÎ|dkr|j}t|tƒs*tj|||jd�}| dkr>| jddƒ} |rZ|j|ƒ rZt|||ƒ‚d}| }|jdkr€|j ƒ}|j |j ƒd}d}t || ƒ} �zry–|j |ƒ}|j| d�}|j|_|jdk oÌt|ddƒ }|rÜ|j|ƒ|j||||||| d �}| �sþ|nd}|| d <|jj|f|||d œ| —Ž}d}WnÖtjk �rNt|d ƒ‚Yn¶ttttttt fk �r}zŠd}t|tt fƒ�rŒt|ƒ}n>t|tt!fƒ�r°|j�r°t"d |ƒ}nt|ttfƒ�rÊtd|ƒ}|j#||||t$j%ƒdd�}|j&ƒ|}WYdd}~XnXWd|�s |�o|j'ƒ}d}|�r0|j(|ƒX|�spt)j*d|||ƒ|j+|||||||f|| | | dœ| —ŽSdd„}|�o„|j,ƒ}|�r$|j-dk�rœd}y|j#||||d�}Wn(t.k �rÚ|j/�rÖ||ƒ‚|SX||ƒ|j0|ƒt)j1d||ƒ|j+||||f||||| | | dœ| —ŽSt2|j3dƒƒ}|j4||j-|ƒ�rÊy|j#||||d�}Wn(t.k �r‚|j5�r~||ƒ‚|SX||ƒ|j&|ƒt)j1d|ƒ|j+||||f||||| | | dœ| —ŽS|S)aá Get a connection from the pool and perform an HTTP request. This is the lowest level call for making a request, so you'll need to specify all the raw details. .. note:: More commonly, it's appropriate to use a convenience method provided by :class:`.RequestMethods`, such as :meth:`request`. .. note:: `release_conn` will only behave as expected if `preload_content=False` because we want to make `preload_content=False` the default behaviour someday soon without breaking backwards compatibility. :param method: HTTP request method (such as GET, POST, PUT, etc.) :param body: Data to send in the request body (useful for creating POST requests, see HTTPConnectionPool.post_url for more convenience). :param headers: Dictionary of custom headers to send, such as User-Agent, If-None-Match, etc. If None, pool headers are used. If provided, these headers completely replace any pool-specific headers. :param retries: Configure the number of retries to allow before raising a :class:`~urllib3.exceptions.MaxRetryError` exception. Pass ``None`` to retry until you receive a response. Pass a :class:`~urllib3.util.retry.Retry` object for fine-grained control over different types of retries. Pass an integer number to retry connection errors that many times, but no other types of errors. Pass zero to never retry. If ``False``, then retries are disabled and any exception is raised immediately. Also, instead of raising a MaxRetryError on redirects, the redirect response will be returned. :type retries: :class:`~urllib3.util.retry.Retry`, False, or an int. :param redirect: If True, automatically handle redirects (status codes 301, 302, 303, 307, 308). Each redirect counts as a retry. Disabling retries will disable redirect, too. :param assert_same_host: If ``True``, will make sure that the host of the pool requests is consistent else will raise HostChangedError. When False, you can use the pool on an HTTP proxy and request foreign hosts. :param timeout: If specified, overrides the default timeout for this one request. It may be a float (in seconds) or an instance of :class:`urllib3.util.Timeout`. :param pool_timeout: If set and the pool is set to block=True, then this method will block for ``pool_timeout`` seconds and raise EmptyPoolError if no connection is available within the time period. :param release_conn: If False, then the urlopen call will not release the connection back into the pool once a response is received (but will release if you read the entire contents of the response such as when `preload_content=True`). This is useful if you're not preloading the response's content immediately. You will need to call ``r.release_conn()`` on the response ``r`` to return the connection back into the pool. If None, it takes the value of ``response_kw.get('preload_content', True)``. :param chunked: If True, urllib3 will send the body using chunked transfer encoding. Otherwise, urllib3 will send the body using the standard content-length form. Defaults to False. :param int body_pos: Position to seek to in file-like body in the event of a retry or redirect. Typically this won't need to be set because urllib3 will auto-populate the value when needed. :param \**response_kw: Additional parameters are passed to :meth:`urllib3.response.HTTPResponse.from_httplib` N)ÚredirectÚdefaultZpreload_contentTr=F)rrk)rÚbodyrMryZrequest_method)rBÚ connectionrAz"No pool connections are available.zCannot connect to proxy.zConnection aborted.é)rÚ_poolZ _stacktracez1Retrying (%r) after connection broken by '%r': %s)rÚ pool_timeoutÚ release_connÚbody_poscSs@y |jƒWn.ttttttfk r:}zWYdd}~XnXdS)N)Úreadrrrtrrr)Úresponser{r-r-r.Údrain_and_release_connžs   z:HTTPConnectionPool.urlopen..drain_and_release_conni/ZGET)rŒr‡zRedirecting %s -> %s)rAr‚Úassert_same_hostrrˆr‰rŠz Retry-Afterz Retry: %s)6rMr?r"Zfrom_intrArWr�r r:ÚcopyÚupdaterEr rar[rTrrDrZr_r}Ú ResponseClsZ from_httplibrrYrrrrtrrrrrr Z incrementÚsysrmZsleepr4r]rQr\ÚurlopenZget_redirect_locationrur Zraise_on_redirectZsleep_for_retryrRÚboolZ getheaderZis_retryZraise_on_status)r,rxrhr„rMrAr‚rŽrrˆr‰ryrŠZ response_kwrUZrelease_this_connrgZ clean_exitrzZis_new_proxy_connr|Z response_connrŒr{r�Zredirect_locationZhas_retry_afterr-r-r.r“¿sÒ^                          zHTTPConnectionPool.urlopen)N)r1r7r8r9r:rrSrr‘r#rpr/rVr[r]r^r_rarjr`r}rwr4r�r“r-r-r-r.r<bs.:% & Ur<csneZdZdZdZeZddejddddddddddddddfdd„Z dd „Z d d „Z d d „Z ‡fdd„Z ‡ZS)ÚHTTPSConnectionPoolaÍ Same as :class:`.HTTPConnectionPool`, but HTTPS. When Python is compiled with the :mod:`ssl` module, then :class:`.VerifiedHTTPSConnection` is used, which *can* verify certificates, instead of :class:`.HTTPSConnection`. :class:`.VerifiedHTTPSConnection` uses one of ``assert_fingerprint``, ``assert_hostname`` and ``host`` in this order to verify connections. If ``assert_hostname`` is False, no verification is done. The ``key_file``, ``cert_file``, ``cert_reqs``, ``ca_certs``, ``ca_cert_dir``, and ``ssl_version`` are only used if :mod:`ssl` is available and are fed into :meth:`urllib3.util.ssl_wrap_socket` to upgrade the connection socket into an SSL socket. ÚhttpsNFrc Ksftj|||||||||| | f |Ž|r2| dkr2d} | |_| |_| |_||_||_||_||_||_ dS)NZ CERT_REQUIRED) r<r/Úkey_fileÚ cert_fileÚ cert_reqsÚca_certsÚ ca_cert_dirÚ ssl_versionÚassert_hostnameÚassert_fingerprint)r,r)r+r>rrLrCrMrArNrOr—r˜r™ršrœr�ržr›rJr-r-r.r/ös   zHTTPSConnectionPool.__init__c Cs<t|tƒr8|j|j|j|j|j|j|j|j d�|j |_ |S)zˆ Prepare the ``connection`` for :meth:`urllib3.util.ssl_wrap_socket` and establish the tunnel if proxy is used. )r—r˜r™ršr›r�rž) r?rZset_certr—r˜r™ršr›r�ržrœ)r,rUr-r-r.Ú _prepare_conns  z!HTTPSConnectionPool._prepare_connc Csfy |j}Wntk r$|j}YnXtjdkrH|j rH||j|jƒn||j|j|jƒ|jƒdS)zŒ Establish tunnel connection early, because otherwise httplib would improperly set Host: header to proxy's IP:port. r†ééN)r†r r¡) Ú set_tunnelrXZ _set_tunnelr’Ú version_inforEr*r+Úconnect)r,rUr¢r-r-r.r_ s  z"HTTPSConnectionPool._prepare_proxycCsŒ|jd7_tjd|j|jƒ|j s2|jtkr:tdƒ‚|j}|j}|jdk r`|jj}|jj}|jf|||j j |j dœ|j —Ž}|j |ƒS)zB Return a fresh :class:`httplib.HTTPSConnection`. rz&Starting new HTTPS connection (%d): %szCCan't connect to HTTPS URL because the SSL module is not available.N)r)r+rr>)rHrQrRr)rSrrr+rDrrTr>rJrŸ)r,Z actual_hostZ actual_portrUr-r-r.rV2s   zHTTPSConnectionPool._new_conncs:tt|ƒj|ƒt|ddƒs$|jƒ|js6tjdtƒdS)zU Called right before a request is made, after the socket is created. rkNz«Unverified HTTPS request is being made. Adding certificate verification is strongly advised. See: https://urllib3.readthedocs.io/en/latest/advanced-usage.html#ssl-warnings) Úsuperr•r^rZr¤Z is_verifiedÚwarningsÚwarnr)r,rU)Ú __class__r-r.r^Js z"HTTPSConnectionPool._validate_conn)r1r7r8r9r:rrSr#rpr/rŸr_rVr^Ú __classcell__r-r-)r¨r.r•ás r•cKsRt|ƒ\}}}|ptj|dƒ}|dkr:t|fd|i|—ŽSt|fd|i|—ŽSdS)a€ Given a url, return an :class:`.ConnectionPool` instance of its host. This is a shortcut for not having to parse out the scheme, host, and port of the url before creating an :class:`.ConnectionPool` instance. :param url: Absolute URL string that must include the scheme. Port is optional. :param \**kw: Passes additional parameters to the constructor of the appropriate :class:`.ConnectionPool`. Useful for specifying things like timeout, maxsize, headers, etc. Example:: >>> conn = connection_from_url('http://google.com/') >>> r = conn.request('GET', '/') éPr–r+N)r$rrWr•r<)rhÚkwr:r)r+r-r-r.Úconnection_from_url]s r¬cCs*|jdƒr&|jdƒr&|jddƒjdƒ}|S)z' Process IPv6 address literals ú[ú]z%25ú%z[])r€ÚendswithÚreplaceÚstrip)r)r-r-r.r'ysr')KZ __future__rrbZloggingr’r¦rqrrtrrcÚ exceptionsrrrr r r r r rrrrrZpackages.ssl_match_hostnamerZpackagesrZpackages.six.movesrr…rrrrrrrrnrrŒrZutil.connectionrZ util.requestr Z util.responser!Z util.retryr"Z util.timeoutr#Zutil.urlr$r%ZPY2ZQueueZ_unused_module_QueueZmovesrFZ getLoggerr1rQÚobjectr`r&ÚsetZEAGAINZ EWOULDBLOCKrer<r•r¬r'r-r-r-r.ÚsF <   $        %|