diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2015-03-03 13:57:29 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2015-03-03 13:57:29 +0100 |
commit | 938c3f65b6c1c1f5b8f7eb731a3eef00a06b6128 (patch) | |
tree | f57ce8894e85902d654ef7c009572f26fb60f3cb /youtube_dl/utils.py | |
parent | 499bfcbfd09e85f053d7e8943a8d47fed9349b0e (diff) | |
parent | 2461f79d2ad9eee44644f6187e366125a29aa70f (diff) |
Merge branch 'cn-verification-proxy'
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r-- | youtube_dl/utils.py | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py index 1d3401bc2..7426e2a1f 100644 --- a/youtube_dl/utils.py +++ b/youtube_dl/utils.py @@ -1768,3 +1768,24 @@ def match_filter_func(filter_str): video_title = info_dict.get('title', info_dict.get('id', 'video')) return '%s does not pass filter %s, skipping ..' % (video_title, filter_str) return _match_func + + +class PerRequestProxyHandler(compat_urllib_request.ProxyHandler): + def __init__(self, proxies=None): + # Set default handlers + for type in ('http', 'https'): + setattr(self, '%s_open' % type, + lambda r, proxy='__noproxy__', type=type, meth=self.proxy_open: + meth(r, proxy, type)) + return compat_urllib_request.ProxyHandler.__init__(self, proxies) + + def proxy_open(self, req, proxy, type): + req_proxy = req.headers.get('Ytdl-request-proxy') + if req_proxy is not None: + proxy = req_proxy + del req.headers['Ytdl-request-proxy'] + + if proxy == '__noproxy__': + return None # No Proxy + return compat_urllib_request.ProxyHandler.proxy_open( + self, req, proxy, type) |