Browse Source

[youtube] Fix login (Fixes #1681)

Philipp Hagemeister 12 years ago
parent
commit
795f28f871
1 changed files with 2 additions and 9 deletions
  1. 2 9
      youtube_dl/extractor/youtube.py

+ 2 - 9
youtube_dl/extractor/youtube.py

@@ -74,14 +74,8 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
             self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
             self._downloader.report_warning(u'unable to fetch login page: %s' % compat_str(err))
             return False
             return False
 
 
-        galx = None
-        dsh = None
-        match = re.search(re.compile(r'<input.+?name="GALX".+?value="(.+?)"', re.DOTALL), login_page)
-        if match:
-          galx = match.group(1)
-        match = re.search(re.compile(r'<input.+?name="dsh".+?value="(.+?)"', re.DOTALL), login_page)
-        if match:
-          dsh = match.group(1)
+        galx = self._search_regex(r'(?s)<input.+?name="GALX".+?value="(.+?)"',
+                                  login_page, u'Login GALX parameter')
 
 
         # Log in
         # Log in
         login_form_strs = {
         login_form_strs = {
@@ -95,7 +89,6 @@ class YoutubeBaseInfoExtractor(InfoExtractor):
                 u'checkConnection': u'',
                 u'checkConnection': u'',
                 u'checkedDomains': u'youtube',
                 u'checkedDomains': u'youtube',
                 u'dnConn': u'',
                 u'dnConn': u'',
-                u'dsh': dsh,
                 u'pstMsg': u'0',
                 u'pstMsg': u'0',
                 u'rmShown': u'1',
                 u'rmShown': u'1',
                 u'secTok': u'',
                 u'secTok': u'',