]> jfr.im git - yt-dlp.git/commitdiff
[zoomus] Added support for password protected videos
authorRoman Sebastian Karwacik <redacted>
Mon, 20 Apr 2020 14:20:54 +0000 (16:20 +0200)
committerinsaneracist <redacted>
Tue, 3 Nov 2020 00:09:20 +0000 (16:09 -0800)
youtube_dlc/extractor/zoomus.py

index 75a1b637570f3c27b4760ed5804e1eee6ca3c0a9..eb8b0fd0cc1d60f64070203c6a4025e960e1f90a 100644 (file)
@@ -3,9 +3,11 @@
 
 from .common import InfoExtractor
 from ..utils import (
+    ExtractorError,
     int_or_none,
     url_or_none,
-    parse_filesize
+    parse_filesize,
+    urlencode_postdata
 )
 
 
@@ -26,6 +28,12 @@ class ZoomUSIE(InfoExtractor):
     def _real_extract(self, url):
         display_id = self._match_id(url)
         webpage = self._download_webpage(url, display_id)
+
+        password_protected = self._search_regex(r'<form[^>]+?id="(password_form)"', webpage, 'password field', fatal=False)
+        if password_protected is not None:
+            self._verify_video_password(url, display_id, webpage)
+            webpage = self._download_webpage(url, display_id)
+
         video_url = self._search_regex(r"viewMp4Url: \'(.*)\'", webpage, 'video url')
         title = self._html_search_regex([r"topic: \"(.*)\",", r"<title>(.*) - Zoom</title>"], webpage, 'title')
         viewResolvtionsWidth = self._search_regex(r"viewResolvtionsWidth: (\d*)", webpage, 'res width', fatal=False)
@@ -49,3 +57,24 @@ def _real_extract(self, url):
             'title': title,
             'formats': formats
         }
+
+    def _verify_video_password(self, url, video_id, webpage):
+        password = self._downloader.params.get('videopassword')
+        if password is None:
+            raise ExtractorError('This video is protected by a password, use the --video-password option', expected=True)
+        meetId = self._search_regex(r'<input[^>]+?id="meetId" value="([^\"]+)"', webpage, 'meetId')
+        data = urlencode_postdata({
+            'id': meetId,
+            'passwd': password,
+            'action': "viewdetailedpage",
+            'recaptcha': ""
+        })
+        validation_url = url.split("zoom.us")[0]+"zoom.us/rec/validate_meet_passwd"
+        validation_response = self._download_json(
+            validation_url, video_id,
+            note='Validating Password...',
+            errnote='Wrong password?',
+            data=data)
+
+        if validation_response['errorCode'] != 0:
+            raise ExtractorError('Login failed, %s said: %r' % (self.IE_NAME, validation_response['errorMessage']))