summary refs log tree commit diff
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2016-07-27 23:39:02 +0700
committerSergey M․ <dstftw@gmail.com>2016-07-27 23:39:02 +0700
commit05c8268c8192dcc4f61c869aba659c8e51d040bb (patch)
treea0544c9ae2c86f66af21901a3cc680b35a283b8c
parent289a16b4f3c67faa230d1b05b48f0c224b3472d8 (diff)
downloadyoutube-dl-05c8268c8192dcc4f61c869aba659c8e51d040bb.tar.gz
youtube-dl-05c8268c8192dcc4f61c869aba659c8e51d040bb.tar.xz
youtube-dl-05c8268c8192dcc4f61c869aba659c8e51d040bb.zip
[shared] Modernize and make more robust
-rw-r--r--youtube_dl/extractor/shared.py18
1 files changed, 10 insertions, 8 deletions
diff --git a/youtube_dl/extractor/shared.py b/youtube_dl/extractor/shared.py
index 6757e6ccf..d592dfeb8 100644
--- a/youtube_dl/extractor/shared.py
+++ b/youtube_dl/extractor/shared.py
@@ -6,7 +6,6 @@ from .common import InfoExtractor
 from ..utils import (
     ExtractorError,
     int_or_none,
-    sanitized_Request,
     urlencode_postdata,
 )
 
@@ -46,21 +45,24 @@ class SharedIE(InfoExtractor):
 
         download_form = self._hidden_inputs(webpage)
 
-        request = sanitized_Request(
-            urlh.geturl(), urlencode_postdata(download_form))
-        request.add_header('Content-Type', 'application/x-www-form-urlencoded')
-
         video_page = self._download_webpage(
-            request, video_id, 'Downloading video page')
+            urlh.geturl(), video_id, 'Downloading video page',
+            data=urlencode_postdata(download_form),
+            headers={
+                'Content-Type': 'application/x-www-form-urlencoded',
+                'Referer': urlh.geturl(),
+            })
 
         video_url = self._html_search_regex(
-            r'data-url="([^"]+)"', video_page, 'video URL')
+            r'data-url=(["\'])(?P<url>(?:(?!\1).)+)\1',
+            video_page, 'video URL', group='url')
         title = base64.b64decode(self._html_search_meta(
             'full:title', webpage, 'title').encode('utf-8')).decode('utf-8')
         filesize = int_or_none(self._html_search_meta(
             'full:size', webpage, 'file size', fatal=False))
         thumbnail = self._html_search_regex(
-            r'data-poster="([^"]+)"', video_page, 'thumbnail', default=None)
+            r'data-poster=(["\'])(?P<url>(?:(?!\1).)+)\1',
+            video_page, 'thumbnail', default=None, group='url')
 
         return {
             'id': video_id,