Add login support to Crunchyroll extractor
authorAdam <oneplusme@users.noreply.github.com>
Fri, 29 Aug 2014 21:32:03 +0000 (22:32 +0100)
committerAdam <oneplusme@users.noreply.github.com>
Fri, 29 Aug 2014 21:32:03 +0000 (22:32 +0100)
youtube_dl/extractor/crunchyroll.py

index 026a9177e754de7d606961e6e4793af86da49fe2..7642b868e46ad520a1f417713c76697d9e9c5f35 100644 (file)
@@ -17,6 +17,7 @@ from ..utils import (
     intlist_to_bytes,
     unified_strdate,
     clean_html,
+    urlencode_postdata,
 )
 from ..aes import (
     aes_cbc_decrypt,
@@ -51,6 +52,24 @@ class CrunchyrollIE(InfoExtractor):
         '1080': ('80', '108'),
     }
 
+    def _login(self):
+        (username, password) = self._get_login_info()
+        if username is None:
+            return
+        self.report_login()
+        login_url = 'https://www.crunchyroll.com/?a=formhandler'
+        data = urlencode_postdata({
+            'formname': 'RpcApiUser_Login',
+            'name': username,
+            'password': password,
+        })
+        login_request = compat_urllib_request.Request(login_url, data)
+        login_request.add_header('Content-Type', 'application/x-www-form-urlencoded')
+        self._download_webpage(login_request, None, False, 'Wrong login info')
+
+    def _real_initialize(self):
+        self._login()
+
     def _decrypt_subtitles(self, data, iv, id):
         data = bytes_to_intlist(data)
         iv = bytes_to_intlist(iv)